Skip to content

Latest commit

 

History

History
603 lines (473 loc) · 331 KB

2020-01-24.md

File metadata and controls

603 lines (473 loc) · 331 KB

< 2020-01-24 >

1,784,401 events, 923,496 push events, 1,481,184 commit messages, 121,421,003 characters

Friday 2020-01-24 00:12:48 by Francesco Lanciana

Fixed backspace bug

I think this might be the last major bug thank god. The problem here was that we expose both the highlighted value and the input value to ChipInput because we want ChipInput to control what the input is showing (i.e. a controlled component). We also expose onChange handlers for the list and input, as well as onSelect for the list so ChipInput has everything it needs. In this model we assumed that all selections of an option in the list were the user pressing enter and thereby wanting to create a new chip. This doesn't hold all the time though, mainly in the case of pressing backspace. Backspace indicates that the user does want to select this option but they want to further modify it before pressing enter. This information wasn't previously given to the parent so we couldn't make this work. Now the onSelect callback is given a second argument indicating whether enter was pressed.

I really don't love this system because the parent (ChipInput) is now having to do a lot of work itself to manage the Combobox, where a lot of that work will have to be repeated by any other component using the combobox. Especially when you consider the only reason I needed a control was to allow for the enter button to reset the input back to nothing.

It's probably possible to just build an uncontrolled version that accepts something like an array of keys for which it would reset the input if pressed. But I am not doing that in the forseeable future, this has cost way to much time


Friday 2020-01-24 02:54:34 by Ömer Sinan Ağacan

Fix chaining tagged and untagged ptrs in compacting GC

Currently compacting GC has the invariant that in a chain all fields are tagged the same. However this does not really hold: root pointers are not tagged, so when we thread a root we initialize a chain without a tag. When the pointed objects is evaluated and we have more pointers to it from the heap, we then add tagged fields to the chain (because pointers to it from the heap are tagged), ending up chaining fields with different tags (pointers from roots are NOT tagged, pointers from heap are). This breaks the invariant and as a result compacting GC turns tagged pointers into non-tagged.

This later causes problem in the generated code where we do reads assuming that the pointer is aligned, e.g.

0x7(%rax) -- assumes that pointer is tagged 1

which causes misaligned reads. This caused #17088.

We fix this using the "pointer tagging for large families" patch (#14373, !1742):

  • With the pointer tagging patch the GC can know what the tagged pointer to a CONSTR should be (previously we'd need to know the family size -- large families are always tagged 1, small families are tagged depending on the constructor).

  • Since we now know what the tags should be we no longer need to store the pointer tag in the info table pointers when forming chains in the compacting GC.

As a result we no longer need to tag pointers in chains with 1/2 depending on whether the field points to an info table pointer, or to another field: an info table pointer is always tagged 0, everything else in the chain is tagged 1. The lost tags in pointers can be retrieved by looking at the info table.

Finally, instead of using tag 1 for fields and tag 0 for info table pointers, we use two different tags for fields:

  • 1 for fields that have untagged pointers
  • 2 for fields that have tagged pointers

When unchaining we then look at the pointer to a field, and depending on its tag we either leave a tagged pointer or an untagged pointer in the field.

This allows chaining untagged and tagged fields together in compacting GC.

Fixes #17088

Nofib results

Binaries are smaller because of smaller Compact.c code.

make mode=fast EXTRA_RUNTEST_OPTS="-cachegrind" EXTRA_HC_OPTS="-with-rtsopts=-c" NoFibRuns=1

--------------------------------------------------------------------------------
        Program           Size    Allocs    Instrs     Reads    Writes
--------------------------------------------------------------------------------
             CS          -0.3%      0.0%     +0.0%     +0.0%     +0.0%
            CSD          -0.3%      0.0%     +0.0%     +0.0%     +0.0%
             FS          -0.3%      0.0%     +0.0%     -0.0%     -0.0%
              S          -0.3%      0.0%     +5.4%     +0.8%     +3.9%
             VS          -0.3%      0.0%     +0.0%     -0.0%     -0.0%
            VSD          -0.3%      0.0%     -0.0%     -0.0%     -0.2%
            VSM          -0.3%      0.0%     +0.0%     +0.0%     +0.0%
           anna          -0.1%      0.0%     +0.0%     +0.0%     +0.0%
           ansi          -0.3%      0.0%     +0.1%     +0.0%     +0.0%
           atom          -0.2%      0.0%     +0.0%     +0.0%     +0.0%
         awards          -0.2%      0.0%     +0.0%      0.0%     -0.0%
         banner          -0.3%      0.0%     +0.0%     +0.0%     +0.0%
     bernouilli          -0.3%      0.0%     +0.1%     +0.0%     +0.0%
   binary-trees          -0.2%      0.0%     +0.0%      0.0%     +0.0%
          boyer          -0.3%      0.0%     +0.2%     +0.0%     +0.0%
         boyer2          -0.2%      0.0%     +0.2%     +0.1%     +0.0%
           bspt          -0.2%      0.0%     +0.0%     +0.0%     +0.0%
      cacheprof          -0.2%      0.0%     +0.0%     +0.0%     +0.0%
       calendar          -0.3%      0.0%     +0.0%     +0.0%     +0.0%
       cichelli          -0.3%      0.0%     +1.1%     +0.2%     +0.5%
        circsim          -0.2%      0.0%     +0.0%     -0.0%     -0.0%
       clausify          -0.3%      0.0%     +0.0%     -0.0%     -0.0%
  comp_lab_zift          -0.2%      0.0%     +0.0%     +0.0%     +0.0%
       compress          -0.3%      0.0%     +0.0%     +0.0%     +0.0%
      compress2          -0.3%      0.0%     +0.0%     -0.0%     -0.0%
    constraints          -0.3%      0.0%     +0.2%     +0.1%     +0.1%
   cryptarithm1          -0.3%      0.0%     +0.0%     -0.0%      0.0%
   cryptarithm2          -0.3%      0.0%     +0.0%     +0.0%     +0.0%
            cse          -0.3%      0.0%     +0.0%     +0.0%     +0.0%
   digits-of-e1          -0.3%      0.0%     +0.0%     +0.0%     +0.0%
   digits-of-e2          -0.3%      0.0%     +0.0%     +0.0%     -0.0%
         dom-lt          -0.2%      0.0%     +0.0%     +0.0%     +0.0%
          eliza          -0.2%      0.0%     +0.0%     +0.0%     +0.0%
          event          -0.3%      0.0%     +0.1%     +0.0%     -0.0%
    exact-reals          -0.2%      0.0%     +0.0%     +0.0%     +0.0%
         exp3_8          -0.3%      0.0%     +0.0%     +0.0%     +0.0%
         expert          -0.2%      0.0%     +0.0%     +0.0%     +0.0%
 fannkuch-redux          -0.3%      0.0%     -0.0%     -0.0%     -0.0%
          fasta          -0.3%      0.0%     +0.0%     +0.0%     +0.0%
            fem          -0.2%      0.0%     +0.1%     +0.0%     +0.0%
            fft          -0.2%      0.0%     +0.0%     -0.0%     -0.0%
           fft2          -0.2%      0.0%     +0.0%     -0.0%     +0.0%
       fibheaps          -0.3%      0.0%     +0.0%     -0.0%     -0.0%
           fish          -0.3%      0.0%     +0.0%     +0.0%     +0.0%
          fluid          -0.2%      0.0%     +0.4%     +0.1%     +0.1%
         fulsom          -0.2%      0.0%     +0.0%     +0.0%     +0.0%
         gamteb          -0.2%      0.0%     +0.1%     +0.0%     +0.0%
            gcd          -0.3%      0.0%     +0.0%     +0.0%     +0.0%
    gen_regexps          -0.3%      0.0%     +0.0%     -0.0%     -0.0%
         genfft          -0.3%      0.0%     +0.0%     +0.0%     +0.0%
             gg          -0.2%      0.0%     +0.7%     +0.3%     +0.2%
           grep          -0.2%      0.0%     +0.0%     +0.0%     +0.0%
         hidden          -0.2%      0.0%     +0.0%     +0.0%     +0.0%
            hpg          -0.2%      0.0%     +0.1%     +0.0%     +0.0%
            ida          -0.3%      0.0%     +0.0%     +0.0%     +0.0%
          infer          -0.2%      0.0%     +0.0%     -0.0%     -0.0%
        integer          -0.3%      0.0%     +0.0%     +0.0%     +0.0%
      integrate          -0.2%      0.0%     +0.0%     +0.0%     +0.0%
   k-nucleotide          -0.2%      0.0%     +0.0%     +0.0%     -0.0%
          kahan          -0.3%      0.0%     -0.0%     -0.0%     -0.0%
        knights          -0.3%      0.0%     +0.0%     -0.0%     -0.0%
         lambda          -0.3%      0.0%     +0.0%     -0.0%     -0.0%
     last-piece          -0.3%      0.0%     +0.0%     +0.0%     +0.0%
           lcss          -0.3%      0.0%     +0.0%     +0.0%      0.0%
           life          -0.3%      0.0%     +0.0%     -0.0%     -0.0%
           lift          -0.2%      0.0%     +0.0%     +0.0%     +0.0%
         linear          -0.2%      0.0%     +0.0%     +0.0%     +0.0%
      listcompr          -0.3%      0.0%     +0.0%     +0.0%     +0.0%
       listcopy          -0.3%      0.0%     +0.0%     +0.0%     +0.0%
       maillist          -0.3%      0.0%     +0.0%     -0.0%     -0.0%
         mandel          -0.2%      0.0%     +0.0%     +0.0%     +0.0%
        mandel2          -0.3%      0.0%     +0.0%     +0.0%     +0.0%
           mate          -0.2%      0.0%     +0.0%     +0.0%     +0.0%
        minimax          -0.3%      0.0%     +0.0%     +0.0%     +0.0%
        mkhprog          -0.2%      0.0%     +0.0%     +0.0%     +0.0%
     multiplier          -0.3%      0.0%     +0.0%     -0.0%     -0.0%
         n-body          -0.2%      0.0%     -0.0%     -0.0%     -0.0%
       nucleic2          -0.2%      0.0%     +0.0%     +0.0%     +0.0%
           para          -0.2%      0.0%     +0.0%     -0.0%     -0.0%
      paraffins          -0.3%      0.0%     +0.0%     -0.0%     -0.0%
         parser          -0.2%      0.0%     +0.0%     +0.0%     +0.0%
        parstof          -0.2%      0.0%     +0.8%     +0.2%     +0.2%
            pic          -0.2%      0.0%     +0.1%     -0.1%     -0.1%
       pidigits          -0.3%      0.0%     +0.0%     +0.0%     +0.0%
          power          -0.2%      0.0%     +0.0%     -0.0%     -0.0%
         pretty          -0.3%      0.0%     -0.0%     -0.0%     -0.1%
         primes          -0.3%      0.0%     +0.0%     +0.0%     -0.0%
      primetest          -0.2%      0.0%     +0.0%     -0.0%     -0.0%
         prolog          -0.3%      0.0%     +0.0%     -0.0%     -0.0%
         puzzle          -0.3%      0.0%     +0.0%     +0.0%     +0.0%
         queens          -0.3%      0.0%     +0.0%     +0.0%     +0.0%
        reptile          -0.2%      0.0%     +0.2%     +0.1%     +0.0%
reverse-complem          -0.3%      0.0%     +0.0%     +0.0%     +0.0%
        rewrite          -0.3%      0.0%     +0.0%     -0.0%     -0.0%
           rfib          -0.2%      0.0%     +0.0%     +0.0%     -0.0%
            rsa          -0.2%      0.0%     +0.0%     +0.0%     +0.0%
            scc          -0.3%      0.0%     -0.0%     -0.0%     -0.1%
          sched          -0.3%      0.0%     +0.0%     +0.0%     +0.0%
            scs          -0.2%      0.0%     +0.1%     +0.0%     +0.0%
         simple          -0.2%      0.0%     +3.4%     +1.0%     +1.8%
          solid          -0.2%      0.0%     +0.0%     +0.0%     +0.0%
        sorting          -0.3%      0.0%     +0.0%     +0.0%     +0.0%
  spectral-norm          -0.2%      0.0%     -0.0%     -0.0%     -0.0%
         sphere          -0.2%      0.0%     +0.0%     +0.0%     +0.0%
         symalg          -0.2%      0.0%     +0.0%     +0.0%     +0.0%
            tak          -0.3%      0.0%     +0.0%     +0.0%     -0.0%
      transform          -0.2%      0.0%     +0.2%     +0.1%     +0.1%
       treejoin          -0.3%      0.0%     +0.2%     -0.0%     -0.1%
      typecheck          -0.3%      0.0%     +0.0%     +0.0%     +0.0%
        veritas          -0.1%      0.0%     +0.0%     +0.0%     +0.0%
           wang          -0.2%      0.0%     +0.0%     -0.0%     -0.0%
      wave4main          -0.3%      0.0%     +0.0%     -0.0%     -0.0%
   wheel-sieve1          -0.3%      0.0%     +0.0%     -0.0%     -0.0%
   wheel-sieve2          -0.3%      0.0%     +0.0%     -0.0%     -0.0%
           x2n1          -0.3%      0.0%     +0.0%     +0.0%     +0.0%
--------------------------------------------------------------------------------
            Min          -0.3%      0.0%     -0.0%     -0.1%     -0.2%
            Max          -0.1%      0.0%     +5.4%     +1.0%     +3.9%
 Geometric Mean          -0.3%     -0.0%     +0.1%     +0.0%     +0.1%

--------------------------------------------------------------------------------
        Program           Size    Allocs    Instrs     Reads    Writes
--------------------------------------------------------------------------------
        circsim          -0.2%      0.0%     +1.6%     +0.4%     +0.7%
    constraints          -0.3%      0.0%     +4.3%     +1.5%     +2.3%
       fibheaps          -0.3%      0.0%     +3.5%     +1.2%     +1.3%
         fulsom          -0.2%      0.0%     +3.6%     +1.2%     +1.8%
       gc_bench          -0.3%      0.0%     +4.1%     +1.3%     +2.3%
           hash          -0.3%      0.0%     +6.6%     +2.2%     +3.6%
           lcss          -0.3%      0.0%     +0.7%     +0.2%     +0.7%
      mutstore1          -0.3%      0.0%     +4.8%     +1.4%     +2.8%
      mutstore2          -0.3%      0.0%     +3.4%     +1.0%     +1.7%
          power          -0.2%      0.0%     +2.7%     +0.6%     +1.9%
     spellcheck          -0.3%      0.0%     +1.1%     +0.4%     +0.4%
--------------------------------------------------------------------------------
            Min          -0.3%      0.0%     +0.7%     +0.2%     +0.4%
            Max          -0.2%      0.0%     +6.6%     +2.2%     +3.6%
 Geometric Mean          -0.3%     +0.0%     +3.3%     +1.0%     +1.8%

Metric changes

While it sounds ridiculous, this change causes increased allocations in the following tests. We concluded that this change can't cause a difference in allocations and decided to land this patch. Fluctuations in "bytes allocated" metric is tracked in #17686.

Metric Increase: Naperian T10547 T12150 T12234 T12425 T13035 T5837 T6048


Friday 2020-01-24 04:22:17 by Luis Reyes Madrid

Adding my bot to a remote repository so I can try and host it online

I have been working on this bot for quite some weeks now as a backup to my friend's bot MechaSenku. It's main purpose right now is to use it in a way to test new features before implementing them into MechaSenku.

I was testing using this bot by running it locally in my machine, but as more time passed I realized that by now I should have automated the process a but and that is exactly what I'm trying to do right now. So instead of running it locally, I'll do what the cool kids do these days and host it online to make my life easier and learn new things as I go on.


Friday 2020-01-24 07:19:50 by Alex Cruz

Restart with change only on exit

This change allow the user to change everything they have to inside the homescreen activity and only restart on exit. Previously this was a pain in the fucking ass because you had to go in and set each option one by one with a restart inbetween. At least now is not that big of a pain.

  • Restart on destroy (hitting the back button, actionbar arrow)
  • Restart when a chance is made and the home button is pressed

** Thanks "Jack" for code to detect home button https://stackoverflow.com/a/27956263

  • Cleaned up restart code

@eyosen adapted to 10

Change-Id: I4962916ae0bd59d08247b59de585a97a2b9da3a1 Signed-off-by: DennySPB [email protected]


Friday 2020-01-24 09:17:34 by skyblockz

Database update Changes: Changed the lower bound price of growth_v to 12054.4, responsible user: Automated Price Update Changed the upper bound price of growth_v to 12054.4, responsible user: Automated Price Update Changed the lower bound price of fish_bait to 63.2953125, responsible user: Automated Price Update Changed the upper bound price of fish_bait to 63.2953125, responsible user: Automated Price Update Changed the lower bound price of lapis_armor_chestplate to 1318.5, responsible user: Automated Price Update Changed the upper bound price of lapis_armor_chestplate to 1318.5, responsible user: Automated Price Update Changed the lower bound price of prismarine_shard to 163.66875, responsible user: Automated Price Update Changed the upper bound price of prismarine_shard to 163.66875, responsible user: Automated Price Update Changed the lower bound price of wolf_talisman to 77885.9, responsible user: Automated Price Update Changed the upper bound price of wolf_talisman to 77885.9, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 537814.4, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 537814.4, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 536033.0, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 536033.0, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 541079.7, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 541079.7, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 453514.6, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 453514.6, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 101375.9, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 101375.9, responsible user: Automated Price Update Changed the lower bound price of wolf_talisman to 76215.4, responsible user: Automated Price Update Changed the upper bound price of wolf_talisman to 76215.4, responsible user: Automated Price Update Changed the lower bound price of teleport_pad to 3060.95, responsible user: Automated Price Update Changed the upper bound price of teleport_pad to 3060.95, responsible user: Automated Price Update Changed the lower bound price of wise_dragon_fragment to 2412.05, responsible user: Automated Price Update Changed the upper bound price of wise_dragon_fragment to 2412.05, responsible user: Automated Price Update Changed the lower bound price of farmer_boots to 208219.1, responsible user: Automated Price Update Changed the upper bound price of farmer_boots to 208219.1, responsible user: Automated Price Update Changed the lower bound price of prismarine_shard to 165.26875, responsible user: Automated Price Update Changed the upper bound price of prismarine_shard to 165.26875, responsible user: Automated Price Update Changed the lower bound price of fish_bait to 59.6953125, responsible user: Automated Price Update Changed the upper bound price of fish_bait to 59.6953125, responsible user: Automated Price Update Changed the lower bound price of lapis_armor_chestplate to 1187.6, responsible user: Automated Price Update Changed the upper bound price of lapis_armor_chestplate to 1187.6, responsible user: Automated Price Update Changed the lower bound price of enchanted_cobblestone to 193.0, responsible user: Automated Price Update Changed the upper bound price of enchanted_cobblestone to 193.0, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone_block to 107346.2, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone_block to 107346.2, responsible user: Automated Price Update Changed the lower bound price of silver_fang to 2655.0, responsible user: Automated Price Update Changed the upper bound price of silver_fang to 2655.0, responsible user: Automated Price Update Changed the lower bound price of prismarine_shard to 166.66875, responsible user: Automated Price Update Changed the upper bound price of prismarine_shard to 166.66875, responsible user: Automated Price Update Changed the lower bound price of prismarine_shard to 167.96875, responsible user: Automated Price Update Changed the upper bound price of prismarine_shard to 167.96875, responsible user: Automated Price Update Changed the lower bound price of wolf_talisman to 72757.4, responsible user: Automated Price Update Changed the upper bound price of wolf_talisman to 72757.4, responsible user: Automated Price Update Changed the lower bound price of prismarine_shard to 169.16875, responsible user: Automated Price Update Changed the upper bound price of prismarine_shard to 169.16875, responsible user: Automated Price Update Changed the lower bound price of prismarine_shard to 170.26875, responsible user: Automated Price Update Changed the upper bound price of prismarine_shard to 170.26875, responsible user: Automated Price Update Changed the lower bound price of feather_ring to 18729.7, responsible user: Automated Price Update Changed the upper bound price of feather_ring to 18729.7, responsible user: Automated Price Update Changed the lower bound price of crystal_fragment to 13522.6, responsible user: Automated Price Update Changed the upper bound price of crystal_fragment to 13522.6, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 538971.7, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 538971.7, responsible user: Automated Price Update Changed the lower bound price of wolf_talisman to 70832.2, responsible user: Automated Price Update Changed the upper bound price of wolf_talisman to 70832.2, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 537074.5, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 537074.5, responsible user: Automated Price Update Changed the lower bound price of ender_leggings to 24247.8, responsible user: Automated Price Update Changed the upper bound price of ender_leggings to 24247.8, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 101238.3, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 101238.3, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 535367.0, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 535367.0, responsible user: Automated Price Update Changed the lower bound price of enchanted_glowstone_dust to 1965.1375, responsible user: Automated Price Update Changed the upper bound price of enchanted_glowstone_dust to 1965.1375, responsible user: Automated Price Update Changed the lower bound price of ender_helmet to 22892.9, responsible user: Automated Price Update Changed the upper bound price of ender_helmet to 22892.9, responsible user: Automated Price Update Changed the lower bound price of wise_dragon_fragment to 2183.4666666666667, responsible user: Automated Price Update Changed the upper bound price of wise_dragon_fragment to 2183.4666666666667, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone_block to 107105.7, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone_block to 107105.7, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 454450.6, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 454450.6, responsible user: Automated Price Update Changed the lower bound price of growth_v to 11849.0, responsible user: Automated Price Update Changed the upper bound price of growth_v to 11849.0, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 455005.5, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 455005.5, responsible user: Automated Price Update Changed the lower bound price of crystal_fragment to 14670.3, responsible user: Automated Price Update Changed the upper bound price of crystal_fragment to 14670.3, responsible user: Automated Price Update Changed the lower bound price of unstable_dragon_helmet to 558668.8, responsible user: Automated Price Update Changed the upper bound price of unstable_dragon_helmet to 558668.8, responsible user: Automated Price Update Changed the lower bound price of ender_boots to 24242.7, responsible user: Automated Price Update Changed the upper bound price of ender_boots to 24242.7, responsible user: Automated Price Update Changed the lower bound price of unstable_dragon_chestplate to 881606.6, responsible user: Automated Price Update Changed the upper bound price of unstable_dragon_chestplate to 881606.6, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone_block to 106745.1, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone_block to 106745.1, responsible user: Automated Price Update Changed the lower bound price of protector_dragon_helmet to 108325.1, responsible user: Automated Price Update Changed the upper bound price of protector_dragon_helmet to 108325.1, responsible user: Automated Price Update Changed the lower bound price of teleport_pad to 3254.9, responsible user: Automated Price Update Changed the upper bound price of teleport_pad to 3254.9, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 541630.3, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 541630.3, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 462405.0, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 462405.0, responsible user: Automated Price Update Changed the lower bound price of lapis_armor_chestplate to 1122.3, responsible user: Automated Price Update Changed the upper bound price of lapis_armor_chestplate to 1122.3, responsible user: Automated Price Update Changed the lower bound price of enchanted_baked_potato to 86356.9, responsible user: Automated Price Update Changed the upper bound price of enchanted_baked_potato to 86356.9, responsible user: Automated Price Update Changed the lower bound price of young_dragon_fragment to 3378.7599999999998, responsible user: Automated Price Update Changed the upper bound price of young_dragon_fragment to 3378.7599999999998, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_fragment to 25368.533333333333, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_fragment to 25368.533333333333, responsible user: Automated Price Update Changed the lower bound price of enchanted_pumpkin to 721.259375, responsible user: Automated Price Update Changed the upper bound price of enchanted_pumpkin to 721.259375, responsible user: Automated Price Update Changed the lower bound price of ender_leggings to 24882.1, responsible user: Automated Price Update Changed the upper bound price of ender_leggings to 24882.1, responsible user: Automated Price Update Changed the lower bound price of young_dragon_fragment to 3874.2333333333336, responsible user: Automated Price Update Changed the upper bound price of young_dragon_fragment to 3874.2333333333336, responsible user: Automated Price Update Changed the lower bound price of enchanted_glowstone_dust to 2007.5875, responsible user: Automated Price Update Changed the upper bound price of enchanted_glowstone_dust to 2007.5875, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 101114.5, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 101114.5, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 539467.3, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 539467.3, responsible user: Automated Price Update Changed the lower bound price of enchanted_lava_bucket to 315123.7, responsible user: Automated Price Update Changed the upper bound price of enchanted_lava_bucket to 315123.7, responsible user: Automated Price Update Changed the lower bound price of ender_helmet to 24053.6, responsible user: Automated Price Update Changed the upper bound price of ender_helmet to 24053.6, responsible user: Automated Price Update Changed the lower bound price of enchanted_grilled_pork to 181923.5, responsible user: Automated Price Update Changed the upper bound price of enchanted_grilled_pork to 181923.5, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 537520.6, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 537520.6, responsible user: Automated Price Update Changed the lower bound price of enchanted_pumpkin to 727.225, responsible user: Automated Price Update Changed the upper bound price of enchanted_pumpkin to 727.225, responsible user: Automated Price Update Changed the lower bound price of green_candy to 989.084375, responsible user: Automated Price Update Changed the upper bound price of green_candy to 989.084375, responsible user: Automated Price Update Changed the lower bound price of crystal_fragment to 14420.0, responsible user: Automated Price Update Changed the upper bound price of crystal_fragment to 14420.0, responsible user: Automated Price Update Changed the lower bound price of enchanted_lava_bucket to 318611.3, responsible user: Automated Price Update Changed the upper bound price of enchanted_lava_bucket to 318611.3, responsible user: Automated Price Update Changed the lower bound price of grand_experience_bottle to 4362.6203125, responsible user: Automated Price Update Changed the upper bound price of grand_experience_bottle to 4362.6203125, responsible user: Automated Price Update Changed the lower bound price of green_candy to 905.4, responsible user: Automated Price Update Changed the upper bound price of green_candy to 905.4, responsible user: Automated Price Update Changed the lower bound price of enchanted_lava_bucket to 319812.7, responsible user: Automated Price Update Changed the upper bound price of enchanted_lava_bucket to 319812.7, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone_block to 102070.6, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone_block to 102070.6, responsible user: Automated Price Update Changed the lower bound price of young_dragon_helmet to 415478.0, responsible user: Automated Price Update Changed the upper bound price of young_dragon_helmet to 415478.0, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 535768.5, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 535768.5, responsible user: Automated Price Update Changed the lower bound price of ender_bow to 12216.0, responsible user: Automated Price Update Changed the upper bound price of ender_bow to 12216.0, responsible user: Automated Price Update Changed the lower bound price of rogue_sword to 1037.0, responsible user: Automated Price Update Changed the upper bound price of rogue_sword to 1037.0, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 535191.6, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 535191.6, responsible user: Automated Price Update Changed the lower bound price of spooky_shard to 74141.7, responsible user: Automated Price Update Changed the upper bound price of spooky_shard to 74141.7, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone to 585.1, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone to 585.1, responsible user: Automated Price Update Changed the lower bound price of ender_leggings to 23543.9, responsible user: Automated Price Update Changed the upper bound price of ender_leggings to 23543.9, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 539172.4, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 539172.4, responsible user: Automated Price Update Changed the lower bound price of superior_dragon_fragment to 159386.9, responsible user: Automated Price Update Changed the upper bound price of superior_dragon_fragment to 159386.9, responsible user: Automated Price Update Changed the lower bound price of young_dragon_boots to 252613.9, responsible user: Automated Price Update Changed the upper bound price of young_dragon_boots to 252613.9, responsible user: Automated Price Update Changed the lower bound price of enchanted_lava_bucket to 322811.5, responsible user: Automated Price Update Changed the upper bound price of enchanted_lava_bucket to 322811.5, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 537255.2, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 537255.2, responsible user: Automated Price Update Changed the lower bound price of wise_dragon_leggings to 293568.8, responsible user: Automated Price Update Changed the upper bound price of wise_dragon_leggings to 293568.8, responsible user: Automated Price Update Changed the lower bound price of unstable_dragon_leggings to 872674.9, responsible user: Automated Price Update Changed the upper bound price of unstable_dragon_leggings to 872674.9, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 535529.7, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 535529.7, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 540626.7, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 540626.7, responsible user: Automated Price Update Changed the lower bound price of old_dragon_fragment to 799.05, responsible user: Automated Price Update Changed the upper bound price of old_dragon_fragment to 799.05, responsible user: Automated Price Update Changed the lower bound price of clay to 11.8859375, responsible user: Automated Price Update Changed the upper bound price of clay to 11.8859375, responsible user: Automated Price Update Changed the lower bound price of enchanted_lava_bucket to 325530.4, responsible user: Automated Price Update Changed the upper bound price of enchanted_lava_bucket to 325530.4, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 100203.0, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 100203.0, responsible user: Automated Price Update Changed the lower bound price of green_candy to 939.9, responsible user: Automated Price Update Changed the upper bound price of green_candy to 939.9, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 537564.0, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 537564.0, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 462164.5, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 462164.5, responsible user: Automated Price Update Changed the lower bound price of ender_leggings to 22339.5, responsible user: Automated Price Update Changed the upper bound price of ender_leggings to 22339.5, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone to 542.6, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone to 542.6, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_boots to 1056279.7, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_boots to 1056279.7, responsible user: Automated Price Update Changed the lower bound price of clay to 12.0796875, responsible user: Automated Price Update Changed the upper bound price of clay to 12.0796875, responsible user: Automated Price Update Changed the lower bound price of enchanted_sponge to 13551.1, responsible user: Automated Price Update Changed the upper bound price of enchanted_sponge to 13551.1, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 461948.0, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 461948.0, responsible user: Automated Price Update Changed the lower bound price of clay to 12.4859375, responsible user: Automated Price Update Changed the upper bound price of clay to 12.4859375, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone to 504.3, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone to 504.3, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 468653.2, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 468653.2, responsible user: Automated Price Update Changed the lower bound price of unstable_dragon_helmet to 572193.7, responsible user: Automated Price Update Changed the upper bound price of unstable_dragon_helmet to 572193.7, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 536807.6, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 536807.6, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone to 475.0666666666667, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone to 475.0666666666667, responsible user: Automated Price Update Changed the lower bound price of critical_vi to 241656.0, responsible user: Automated Price Update Changed the upper bound price of critical_vi to 241656.0, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone_block to 102421.5, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone_block to 102421.5, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 533126.8, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 533126.8, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_fragment to 25131.7, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_fragment to 25131.7, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_boots to 1050651.7, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_boots to 1050651.7, responsible user: Automated Price Update Changed the lower bound price of unstable_dragon_boots to 538229.5, responsible user: Automated Price Update Changed the upper bound price of unstable_dragon_boots to 538229.5, responsible user: Automated Price Update Changed the lower bound price of unstable_dragon_fragment to 10943.2, responsible user: Automated Price Update Changed the upper bound price of unstable_dragon_fragment to 10943.2, responsible user: Automated Price Update Changed the lower bound price of ender_boots to 26147.2, responsible user: Automated Price Update Changed the upper bound price of ender_boots to 26147.2, responsible user: Automated Price Update Changed the lower bound price of superior_dragon_fragment to 157448.2, responsible user: Automated Price Update Changed the upper bound price of superior_dragon_fragment to 157448.2, responsible user: Automated Price Update Changed the lower bound price of desert_island to 818.1, responsible user: Automated Price Update Changed the upper bound price of desert_island to 818.1, responsible user: Automated Price Update Changed the lower bound price of snow_suit_boots to 11055.5, responsible user: Automated Price Update Changed the upper bound price of snow_suit_boots to 11055.5, responsible user: Automated Price Update Changed the lower bound price of snow_suit_chestplate to 10590.3, responsible user: Automated Price Update Changed the upper bound price of snow_suit_chestplate to 10590.3, responsible user: Automated Price Update Changed the lower bound price of enchanted_bookshelf to 7487.2, responsible user: Automated Price Update Changed the upper bound price of enchanted_bookshelf to 7487.2, responsible user: Automated Price Update Changed the lower bound price of glowstone to 10.5828125, responsible user: Automated Price Update Changed the upper bound price of glowstone to 10.5828125, responsible user: Automated Price Update Changed the lower bound price of enchanted_raw_salmon to 1372.2, responsible user: Automated Price Update Changed the upper bound price of enchanted_raw_salmon to 1372.2, responsible user: Automated Price Update Changed the lower bound price of frail_vi to 84614.8, responsible user: Automated Price Update Changed the upper bound price of frail_vi to 84614.8, responsible user: Automated Price Update Changed the lower bound price of aspect_of_the_dragons to 5794077.5, responsible user: Automated Price Update Changed the upper bound price of aspect_of_the_dragons to 5794077.5, responsible user: Automated Price Update Changed the lower bound price of ender_helmet to 24148.2, responsible user: Automated Price Update Changed the upper bound price of ender_helmet to 24148.2, responsible user: Automated Price Update Changed the lower bound price of old_dragon_fragment to 851.35, responsible user: Automated Price Update Changed the upper bound price of old_dragon_fragment to 851.35, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 531814.1, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 531814.1, responsible user: Automated Price Update Changed the lower bound price of wise_dragon_fragment to 2393.671428571429, responsible user: Automated Price Update Changed the upper bound price of wise_dragon_fragment to 2393.671428571429, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone to 459.8, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone to 459.8, responsible user: Automated Price Update Changed the lower bound price of stonk to 493999.1, responsible user: Automated Price Update Changed the upper bound price of stonk to 493999.1, responsible user: Automated Price Update Changed the lower bound price of green_candy to 895.9, responsible user: Automated Price Update Changed the upper bound price of green_candy to 895.9, responsible user: Automated Price Update Changed the lower bound price of green_candy to 931.3, responsible user: Automated Price Update Changed the upper bound price of green_candy to 931.3, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 529632.7, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 529632.7, responsible user: Automated Price Update Changed the lower bound price of green_candy to 1034.278431372549, responsible user: Automated Price Update Changed the upper bound price of green_candy to 1034.278431372549, responsible user: Automated Price Update Changed the lower bound price of old_dragon_helmet to 127125.3, responsible user: Automated Price Update Changed the upper bound price of old_dragon_helmet to 127125.3, responsible user: Automated Price Update Changed the lower bound price of enchanted_baked_potato to 85263.7875, responsible user: Automated Price Update Changed the upper bound price of enchanted_baked_potato to 85263.7875, responsible user: Automated Price Update Changed the lower bound price of unstable_dragon_fragment to 11018.066666666668, responsible user: Automated Price Update Changed the upper bound price of unstable_dragon_fragment to 11018.066666666668, responsible user: Automated Price Update Changed the lower bound price of superboom_tnt to 2028.3, responsible user: Automated Price Update Changed the upper bound price of superboom_tnt to 2028.3, responsible user: Automated Price Update Changed the lower bound price of wise_dragon_fragment to 2345.9666666666667, responsible user: Automated Price Update Changed the upper bound price of wise_dragon_fragment to 2345.9666666666667, responsible user: Automated Price Update Changed the lower bound price of ender_chestplate to 20818.1, responsible user: Automated Price Update Changed the upper bound price of ender_chestplate to 20818.1, responsible user: Automated Price Update Changed the lower bound price of raider_axe to 149278.0, responsible user: Automated Price Update Changed the upper bound price of raider_axe to 149278.0, responsible user: Automated Price Update Changed the lower bound price of growth_v to 10779.1, responsible user: Automated Price Update Changed the upper bound price of growth_v to 10779.1, responsible user: Automated Price Update Changed the lower bound price of enchanted_lapis_lazuli to 295.7, responsible user: Automated Price Update Changed the upper bound price of enchanted_lapis_lazuli to 295.7, responsible user: Automated Price Update Changed the lower bound price of young_dragon_fragment to 4009.6, responsible user: Automated Price Update Changed the upper bound price of young_dragon_fragment to 4009.6, responsible user: Automated Price Update Changed the lower bound price of ender_leggings to 22089.4, responsible user: Automated Price Update Changed the upper bound price of ender_leggings to 22089.4, responsible user: Automated Price Update Changed the lower bound price of enchanted_sugar_cane to 104428.4, responsible user: Automated Price Update Changed the upper bound price of enchanted_sugar_cane to 104428.4, responsible user: Automated Price Update Changed the lower bound price of enchanted_lava_bucket to 327957.5, responsible user: Automated Price Update Changed the upper bound price of enchanted_lava_bucket to 327957.5, responsible user: Automated Price Update Changed the lower bound price of enchanted_string to 2101.6046875, responsible user: Automated Price Update Changed the upper bound price of enchanted_string to 2101.6046875, responsible user: Automated Price Update Changed the lower bound price of growth_v to 9767.3, responsible user: Automated Price Update Changed the upper bound price of growth_v to 9767.3, responsible user: Automated Price Update Changed the lower bound price of enchanted_sugar_cane to 105485.6, responsible user: Automated Price Update Changed the upper bound price of enchanted_sugar_cane to 105485.6, responsible user: Automated Price Update Changed the lower bound price of enchanted_lava_bucket to 325579.3, responsible user: Automated Price Update Changed the upper bound price of enchanted_lava_bucket to 325579.3, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 474687.9, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 474687.9, responsible user: Automated Price Update Changed the lower bound price of growth_v to 9369.3, responsible user: Automated Price Update Changed the upper bound price of growth_v to 9369.3, responsible user: Automated Price Update Changed the lower bound price of wise_dragon_fragment to 2539.9714285714285, responsible user: Automated Price Update Changed the upper bound price of wise_dragon_fragment to 2539.9714285714285, responsible user: Automated Price Update Changed the lower bound price of green_candy to 980.9, responsible user: Automated Price Update Changed the upper bound price of green_candy to 980.9, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 526669.4, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 526669.4, responsible user: Automated Price Update Changed the lower bound price of compactor to 2286.6, responsible user: Automated Price Update Changed the upper bound price of compactor to 2286.6, responsible user: Automated Price Update Changed the lower bound price of golden_apple to 42.1, responsible user: Automated Price Update Changed the upper bound price of golden_apple to 42.1, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 526002.5, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 526002.5, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 528602.2, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 528602.2, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_fragment to 24659.75, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_fragment to 24659.75, responsible user: Automated Price Update Changed the lower bound price of old_dragon_helmet to 125912.8, responsible user: Automated Price Update Changed the upper bound price of old_dragon_helmet to 125912.8, responsible user: Automated Price Update Changed the lower bound price of unstable_dragon_fragment to 10916.3, responsible user: Automated Price Update Changed the upper bound price of unstable_dragon_fragment to 10916.3, responsible user: Automated Price Update Changed the lower bound price of unstable_dragon_fragment to 10993.866666666667, responsible user: Automated Price Update Changed the upper bound price of unstable_dragon_fragment to 10993.866666666667, responsible user: Automated Price Update Changed the lower bound price of creeper_pants to 321280.5, responsible user: Automated Price Update Changed the upper bound price of creeper_pants to 321280.5, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 526247.0, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 526247.0, responsible user: Automated Price Update Changed the lower bound price of jungle_axe to 737.4, responsible user: Automated Price Update Changed the upper bound price of jungle_axe to 737.4, responsible user: Automated Price Update Changed the lower bound price of enchanted_string to 2160.93125, responsible user: Automated Price Update Changed the upper bound price of enchanted_string to 2160.93125, responsible user: Automated Price Update Changed the lower bound price of wise_dragon_chestplate to 321250.0, responsible user: Automated Price Update Changed the upper bound price of wise_dragon_chestplate to 321250.0, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 480119.1, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 480119.1, responsible user: Automated Price Update Changed the lower bound price of magical_mushroom_soup to 9.5, responsible user: Automated Price Update Changed the upper bound price of magical_mushroom_soup to 9.5, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 524622.3, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 524622.3, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 523160.1, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 523160.1, responsible user: Automated Price Update Changed the lower bound price of enchanted_lapis_lazuli to 330.825, responsible user: Automated Price Update Changed the upper bound price of enchanted_lapis_lazuli to 330.825, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone_block to 102673.5, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone_block to 102673.5, responsible user: Automated Price Update Changed the lower bound price of enchanted_magma_cream to 2707.95, responsible user: Automated Price Update Changed the upper bound price of enchanted_magma_cream to 2707.95, responsible user: Automated Price Update Changed the lower bound price of enchanted_oak_wood to 834.8203125, responsible user: Automated Price Update Changed the upper bound price of enchanted_oak_wood to 834.8203125, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 479116.4, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 479116.4, responsible user: Automated Price Update Changed the lower bound price of unstable_dragon_leggings to 925327.9, responsible user: Automated Price Update Changed the upper bound price of unstable_dragon_leggings to 925327.9, responsible user: Automated Price Update Changed the lower bound price of purple_candy to 8840.833333333332, responsible user: Automated Price Update Changed the upper bound price of purple_candy to 8840.833333333332, responsible user: Automated Price Update Changed the lower bound price of enchanted_lapis_block to 71806.7, responsible user: Automated Price Update Changed the upper bound price of enchanted_lapis_block to 71806.7, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 520844.1, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 520844.1, responsible user: Automated Price Update Changed the lower bound price of grappling_hook to 2062.2, responsible user: Automated Price Update Changed the upper bound price of grappling_hook to 2062.2, responsible user: Automated Price Update Changed the lower bound price of wise_dragon_fragment to 2381.833333333333, responsible user: Automated Price Update Changed the upper bound price of wise_dragon_fragment to 2381.833333333333, responsible user: Automated Price Update Changed the lower bound price of medium_backpack to 26259.0, responsible user: Automated Price Update Changed the upper bound price of medium_backpack to 26259.0, responsible user: Automated Price Update Changed the lower bound price of enchanted_magma_cream to 2593.45, responsible user: Automated Price Update Changed the upper bound price of enchanted_magma_cream to 2593.45, responsible user: Automated Price Update Changed the lower bound price of magical_mushroom_soup to 9.0, responsible user: Automated Price Update Changed the upper bound price of magical_mushroom_soup to 9.0, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 484104.8, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 484104.8, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 518759.7, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 518759.7, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 516883.7, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 516883.7, responsible user: Automated Price Update Changed the lower bound price of enchanted_magma_cream to 2481.3, responsible user: Automated Price Update Changed the upper bound price of enchanted_magma_cream to 2481.3, responsible user: Automated Price Update Changed the lower bound price of superior_dragon_fragment to 159689.4, responsible user: Automated Price Update Changed the upper bound price of superior_dragon_fragment to 159689.4, responsible user: Automated Price Update


Friday 2020-01-24 10:15:03 by Sabine

I want FUCKING DIE PLS

Taken & Modified from Bay12, taken a few accessories from Aurora, I want fucking die, makes security weapons (I CRY MORE), a few coats made and modified, and a bunch of pain. :)


Friday 2020-01-24 11:35:17 by skyblockz

Database update Changes: Changed the lower bound price of tarantula_web to 91.68125, responsible user: Automated Price Update Changed the upper bound price of tarantula_web to 91.68125, responsible user: Automated Price Update Changed the lower bound price of enchanted_lava_bucket to 260621.4, responsible user: Automated Price Update Changed the upper bound price of enchanted_lava_bucket to 260621.4, responsible user: Automated Price Update Changed the lower bound price of unstable_dragon_fragment to 11582.0, responsible user: Automated Price Update Changed the upper bound price of unstable_dragon_fragment to 11582.0, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 110035.7, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 110035.7, responsible user: Automated Price Update Changed the lower bound price of enchanted_red_mushroom_block to 52593.6, responsible user: Automated Price Update Changed the upper bound price of enchanted_red_mushroom_block to 52593.6, responsible user: Automated Price Update Changed the lower bound price of farmer_boots to 186926.6, responsible user: Automated Price Update Changed the upper bound price of farmer_boots to 186926.6, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone_block to 89001.7, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone_block to 89001.7, responsible user: Automated Price Update Changed the lower bound price of grand_experience_bottle to 6824.5015625, responsible user: Automated Price Update Changed the upper bound price of grand_experience_bottle to 6824.5015625, responsible user: Automated Price Update Changed the lower bound price of compactor to 1826.3, responsible user: Automated Price Update Changed the upper bound price of compactor to 1826.3, responsible user: Automated Price Update Changed the lower bound price of tarantula_web to 83.3984375, responsible user: Automated Price Update Changed the upper bound price of tarantula_web to 83.3984375, responsible user: Automated Price Update Changed the lower bound price of green_candy to 551.10625, responsible user: Automated Price Update Changed the upper bound price of green_candy to 551.10625, responsible user: Automated Price Update Changed the lower bound price of enchanted_lava_bucket to 262059.3, responsible user: Automated Price Update Changed the upper bound price of enchanted_lava_bucket to 262059.3, responsible user: Automated Price Update Changed the lower bound price of enchanted_lava_bucket to 262303.4, responsible user: Automated Price Update Changed the upper bound price of enchanted_lava_bucket to 262303.4, responsible user: Automated Price Update Changed the lower bound price of enchanted_baked_potato to 90715.6, responsible user: Automated Price Update Changed the upper bound price of enchanted_baked_potato to 90715.6, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 450973.7, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 450973.7, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone_block to 88726.5, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone_block to 88726.5, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 574968.6, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 574968.6, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 112149.7, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 112149.7, responsible user: Automated Price Update Changed the lower bound price of enchanted_sugar_cane to 104068.2, responsible user: Automated Price Update Changed the upper bound price of enchanted_sugar_cane to 104068.2, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 577271.7, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 577271.7, responsible user: Automated Price Update Changed the lower bound price of golden_tooth to 103553.7, responsible user: Automated Price Update Changed the upper bound price of golden_tooth to 103553.7, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 452106.3, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 452106.3, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_boots to 1030598.7, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_boots to 1030598.7, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 577625.3, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 577625.3, responsible user: Automated Price Update Changed the lower bound price of bat_talisman to 57406.0, responsible user: Automated Price Update Changed the upper bound price of bat_talisman to 57406.0, responsible user: Automated Price Update Changed the lower bound price of bat_talisman to 66960.6, responsible user: Automated Price Update Changed the upper bound price of bat_talisman to 66960.6, responsible user: Automated Price Update Changed the lower bound price of wolf_tooth to 912.5421875, responsible user: Automated Price Update Changed the upper bound price of wolf_tooth to 912.5421875, responsible user: Automated Price Update Changed the lower bound price of young_dragon_fragment to 2874.666666666667, responsible user: Automated Price Update Changed the upper bound price of young_dragon_fragment to 2874.666666666667, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 450979.0, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 450979.0, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone_block to 86753.8, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone_block to 86753.8, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 579662.8, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 579662.8, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 447281.1, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 447281.1, responsible user: Automated Price Update Changed the lower bound price of old_dragon_helmet to 138067.5, responsible user: Automated Price Update Changed the upper bound price of old_dragon_helmet to 138067.5, responsible user: Automated Price Update Changed the lower bound price of lapis_armor_boots to 1136.2, responsible user: Automated Price Update Changed the upper bound price of lapis_armor_boots to 1136.2, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 114926.8, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 114926.8, responsible user: Automated Price Update Changed the lower bound price of revenant_flesh to 97.315625, responsible user: Automated Price Update Changed the upper bound price of revenant_flesh to 97.315625, responsible user: Automated Price Update Changed the lower bound price of flaming_sword to 147.3, responsible user: Automated Price Update Changed the upper bound price of flaming_sword to 147.3, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone_block to 88078.4, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone_block to 88078.4, responsible user: Automated Price Update Changed the lower bound price of tarantula_helmet to 713994.9, responsible user: Automated Price Update Changed the upper bound price of tarantula_helmet to 713994.9, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 463388.0, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 463388.0, responsible user: Automated Price Update Changed the lower bound price of blessing_v to 17952.7, responsible user: Automated Price Update Changed the upper bound price of blessing_v to 17952.7, responsible user: Automated Price Update Changed the lower bound price of growth_v to 4292.4, responsible user: Automated Price Update Changed the upper bound price of growth_v to 4292.4, responsible user: Automated Price Update Changed the lower bound price of farmer_boots to 185233.9, responsible user: Automated Price Update Changed the upper bound price of farmer_boots to 185233.9, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 114080.2, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 114080.2, responsible user: Automated Price Update Changed the lower bound price of enchanted_snow_block to 690.35, responsible user: Automated Price Update Changed the upper bound price of enchanted_snow_block to 690.35, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 579777.3, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 579777.3, responsible user: Automated Price Update Changed the lower bound price of tarantula_chestplate to 900013.2, responsible user: Automated Price Update Changed the upper bound price of tarantula_chestplate to 900013.2, responsible user: Automated Price Update Changed the lower bound price of bat_talisman to 70183.3, responsible user: Automated Price Update Changed the upper bound price of bat_talisman to 70183.3, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 115789.8, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 115789.8, responsible user: Automated Price Update Changed the lower bound price of stereo_pants to 5517.3, responsible user: Automated Price Update Changed the upper bound price of stereo_pants to 5517.3, responsible user: Automated Price Update Changed the lower bound price of aspect_of_the_end to 170280.2, responsible user: Automated Price Update Changed the upper bound price of aspect_of_the_end to 170280.2, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 116377.8, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 116377.8, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 458449.2, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 458449.2, responsible user: Automated Price Update Changed the lower bound price of critical_vi to 266186.7, responsible user: Automated Price Update Changed the upper bound price of critical_vi to 266186.7, responsible user: Automated Price Update Changed the lower bound price of day_saver to 96.2, responsible user: Automated Price Update Changed the upper bound price of day_saver to 96.2, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 115090.0, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 115090.0, responsible user: Automated Price Update Changed the lower bound price of enchanted_raw_beef to 1835.45, responsible user: Automated Price Update Changed the upper bound price of enchanted_raw_beef to 1835.45, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 111631.0, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 111631.0, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 580577.4, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 580577.4, responsible user: Automated Price Update Changed the lower bound price of enchanted_lava_bucket to 266073.1, responsible user: Automated Price Update Changed the upper bound price of enchanted_lava_bucket to 266073.1, responsible user: Automated Price Update Changed the lower bound price of wise_dragon_fragment to 930.1666666666666, responsible user: Automated Price Update Changed the upper bound price of wise_dragon_fragment to 930.1666666666666, responsible user: Automated Price Update Changed the lower bound price of enchanted_clay to 780.025, responsible user: Automated Price Update Changed the upper bound price of enchanted_clay to 780.025, responsible user: Automated Price Update Changed the lower bound price of first_strike_iv to 16949.6, responsible user: Automated Price Update Changed the upper bound price of first_strike_iv to 16949.6, responsible user: Automated Price Update Changed the lower bound price of enchanted_snow_block to 700.65, responsible user: Automated Price Update Changed the upper bound price of enchanted_snow_block to 700.65, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 574519.7, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 574519.7, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 575717.7, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 575717.7, responsible user: Automated Price Update Changed the lower bound price of tarantula_chestplate to 910011.9, responsible user: Automated Price Update Changed the upper bound price of tarantula_chestplate to 910011.9, responsible user: Automated Price Update Changed the lower bound price of budget_hopper to 1504.7, responsible user: Automated Price Update Changed the upper bound price of budget_hopper to 1504.7, responsible user: Automated Price Update Changed the lower bound price of wolf_tooth to 822.3, responsible user: Automated Price Update Changed the upper bound price of wolf_tooth to 822.3, responsible user: Automated Price Update Changed the lower bound price of magnet_vi to 10936.2, responsible user: Automated Price Update Changed the upper bound price of magnet_vi to 10936.2, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 111114.0, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 111114.0, responsible user: Automated Price Update Changed the lower bound price of enchanted_red_mushroom_block to 50334.2, responsible user: Automated Price Update Changed the upper bound price of enchanted_red_mushroom_block to 50334.2, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 570145.9, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 570145.9, responsible user: Automated Price Update Changed the lower bound price of green_candy to 567.29375, responsible user: Automated Price Update Changed the upper bound price of green_candy to 567.29375, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 114082.1, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 114082.1, responsible user: Automated Price Update Changed the lower bound price of fancy_sword to 101.6, responsible user: Automated Price Update Changed the upper bound price of fancy_sword to 101.6, responsible user: Automated Price Update Changed the lower bound price of enchanted_clay to 772.3125, responsible user: Automated Price Update Changed the upper bound price of enchanted_clay to 772.3125, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 570631.3, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 570631.3, responsible user: Automated Price Update Changed the lower bound price of wise_dragon_fragment to 859.3666666666666, responsible user: Automated Price Update Changed the upper bound price of wise_dragon_fragment to 859.3666666666666, responsible user: Automated Price Update Changed the lower bound price of medium_storage to 6523.9, responsible user: Automated Price Update Changed the upper bound price of medium_storage to 6523.9, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_fragment to 24780.2, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_fragment to 24780.2, responsible user: Automated Price Update Changed the lower bound price of wolf_tooth to 843.4203125, responsible user: Automated Price Update Changed the upper bound price of wolf_tooth to 843.4203125, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 465504.3, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 465504.3, responsible user: Automated Price Update Changed the lower bound price of purple_candy to 12186.240625, responsible user: Automated Price Update Changed the upper bound price of purple_candy to 12186.240625, responsible user: Automated Price Update Changed the lower bound price of green_candy to 600.44375, responsible user: Automated Price Update Changed the upper bound price of green_candy to 600.44375, responsible user: Automated Price Update Changed the lower bound price of enchanted_baked_potato to 92755.1, responsible user: Automated Price Update Changed the upper bound price of enchanted_baked_potato to 92755.1, responsible user: Automated Price Update Changed the lower bound price of protector_dragon_boots to 102880.9, responsible user: Automated Price Update Changed the upper bound price of protector_dragon_boots to 102880.9, responsible user: Automated Price Update Changed the lower bound price of wolf_tooth to 760.1, responsible user: Automated Price Update Changed the upper bound price of wolf_tooth to 760.1, responsible user: Automated Price Update Changed the lower bound price of unstable_dragon_boots to 550507.5, responsible user: Automated Price Update Changed the upper bound price of unstable_dragon_boots to 550507.5, responsible user: Automated Price Update Changed the lower bound price of green_candy to 623.528125, responsible user: Automated Price Update Changed the upper bound price of green_candy to 623.528125, responsible user: Automated Price Update Changed the lower bound price of wolf_talisman to 55140.8, responsible user: Automated Price Update Changed the upper bound price of wolf_talisman to 55140.8, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 466563.9, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 466563.9, responsible user: Automated Price Update Changed the lower bound price of bat_ring to 335427.1, responsible user: Automated Price Update Changed the upper bound price of bat_ring to 335427.1, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 565568.2, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 565568.2, responsible user: Automated Price Update Changed the lower bound price of green_candy to 592.45, responsible user: Automated Price Update Changed the upper bound price of green_candy to 592.45, responsible user: Automated Price Update Changed the lower bound price of enchanted_rotten_flesh to 1436.0566666666666, responsible user: Automated Price Update Changed the upper bound price of enchanted_rotten_flesh to 1436.0566666666666, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_fragment to 24302.2, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_fragment to 24302.2, responsible user: Automated Price Update Changed the lower bound price of enchanted_baked_potato to 91529.6, responsible user: Automated Price Update Changed the upper bound price of enchanted_baked_potato to 91529.6, responsible user: Automated Price Update Changed the lower bound price of protector_dragon_boots to 102592.8, responsible user: Automated Price Update Changed the upper bound price of protector_dragon_boots to 102592.8, responsible user: Automated Price Update Changed the lower bound price of golden_tooth to 105365.3, responsible user: Automated Price Update Changed the upper bound price of golden_tooth to 105365.3, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 114916.9, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 114916.9, responsible user: Automated Price Update Changed the lower bound price of budget_hopper to 1699.2, responsible user: Automated Price Update Changed the upper bound price of budget_hopper to 1699.2, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 567789.2, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 567789.2, responsible user: Automated Price Update Changed the lower bound price of wolf_tooth to 773.94375, responsible user: Automated Price Update Changed the upper bound price of wolf_tooth to 773.94375, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 465907.5, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 465907.5, responsible user: Automated Price Update Changed the lower bound price of enchanted_raw_beef to 1755.2203125, responsible user: Automated Price Update Changed the upper bound price of enchanted_raw_beef to 1755.2203125, responsible user: Automated Price Update Changed the lower bound price of enchanted_snow_block to 690.6, responsible user: Automated Price Update Changed the upper bound price of enchanted_snow_block to 690.6, responsible user: Automated Price Update Changed the lower bound price of bat_talisman to 73083.8, responsible user: Automated Price Update Changed the upper bound price of bat_talisman to 73083.8, responsible user: Automated Price Update Changed the lower bound price of enchanted_leather to 10917.263888888889, responsible user: Automated Price Update Changed the upper bound price of enchanted_leather to 10917.263888888889, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 459316.8, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 459316.8, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 568510.3, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 568510.3, responsible user: Automated Price Update Changed the lower bound price of wolf_tooth to 786.34375, responsible user: Automated Price Update Changed the upper bound price of wolf_tooth to 786.34375, responsible user: Automated Price Update Changed the lower bound price of enchanted_diamond to 1465.3090909090909, responsible user: Automated Price Update Changed the upper bound price of enchanted_diamond to 1465.3090909090909, responsible user: Automated Price Update Changed the lower bound price of enchanted_raw_beef to 1664.340625, responsible user: Automated Price Update Changed the upper bound price of enchanted_raw_beef to 1664.340625, responsible user: Automated Price Update Changed the lower bound price of hamster_wheel to 20433.6, responsible user: Automated Price Update Changed the upper bound price of hamster_wheel to 20433.6, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 569159.3, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 569159.3, responsible user: Automated Price Update Changed the lower bound price of hamster_wheel to 20690.2, responsible user: Automated Price Update Changed the upper bound price of hamster_wheel to 20690.2, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_fragment to 23872.0, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_fragment to 23872.0, responsible user: Automated Price Update Changed the lower bound price of enchanted_baked_potato to 90426.6, responsible user: Automated Price Update Changed the upper bound price of enchanted_baked_potato to 90426.6, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 564243.4, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 564243.4, responsible user: Automated Price Update Changed the lower bound price of budget_hopper to 1879.3, responsible user: Automated Price Update Changed the upper bound price of budget_hopper to 1879.3, responsible user: Automated Price Update Changed the lower bound price of village_affinity_talisman to 2270.0, responsible user: Automated Price Update Changed the upper bound price of village_affinity_talisman to 2270.0, responsible user: Automated Price Update Changed the lower bound price of enchanted_iron to 1112.9546875, responsible user: Automated Price Update Changed the upper bound price of enchanted_iron to 1112.9546875, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 559819.1, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 559819.1, responsible user: Automated Price Update Changed the lower bound price of cobblestone to 2.415625, responsible user: Automated Price Update Changed the upper bound price of cobblestone to 2.415625, responsible user: Automated Price Update Changed the lower bound price of enchanted_glowstone_dust to 1675.7203125, responsible user: Automated Price Update Changed the upper bound price of enchanted_glowstone_dust to 1675.7203125, responsible user: Automated Price Update Changed the lower bound price of enchanted_dark_oak_wood to 1574.109375, responsible user: Automated Price Update Changed the upper bound price of enchanted_dark_oak_wood to 1574.109375, responsible user: Automated Price Update Changed the lower bound price of unstable_dragon_fragment to 11423.8, responsible user: Automated Price Update Changed the upper bound price of unstable_dragon_fragment to 11423.8, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 117242.5, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 117242.5, responsible user: Automated Price Update Changed the lower bound price of smite_vi to 88729.4, responsible user: Automated Price Update Changed the upper bound price of smite_vi to 88729.4, responsible user: Automated Price Update Changed the lower bound price of budget_hopper to 2088.2, responsible user: Automated Price Update Changed the upper bound price of budget_hopper to 2088.2, responsible user: Automated Price Update Changed the lower bound price of enchanted_obsidian to 2371.3571428571427, responsible user: Automated Price Update Changed the upper bound price of enchanted_obsidian to 2371.3571428571427, responsible user: Automated Price Update Changed the lower bound price of compactor to 1791.7, responsible user: Automated Price Update Changed the upper bound price of compactor to 1791.7, responsible user: Automated Price Update Changed the lower bound price of enchanted_iron to 1137.4625, responsible user: Automated Price Update Changed the upper bound price of enchanted_iron to 1137.4625, responsible user: Automated Price Update Changed the lower bound price of enchanted_red_mushroom_block to 49268.3, responsible user: Automated Price Update Changed the upper bound price of enchanted_red_mushroom_block to 49268.3, responsible user: Automated Price Update Changed the lower bound price of wise_dragon_boots to 212074.2, responsible user: Automated Price Update Changed the upper bound price of wise_dragon_boots to 212074.2, responsible user: Automated Price Update Changed the lower bound price of magical_water_bucket to 48.9, responsible user: Automated Price Update Changed the upper bound price of magical_water_bucket to 48.9, responsible user: Automated Price Update Changed the lower bound price of unstable_dragon_fragment to 11603.9, responsible user: Automated Price Update Changed the upper bound price of unstable_dragon_fragment to 11603.9, responsible user: Automated Price Update Changed the lower bound price of enchanted_diamond to 1374.3555555555554, responsible user: Automated Price Update Changed the upper bound price of enchanted_diamond to 1374.3555555555554, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 562615.0, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 562615.0, responsible user: Automated Price Update Changed the lower bound price of hardened_diamond_leggings to 8580.8, responsible user: Automated Price Update Changed the upper bound price of hardened_diamond_leggings to 8580.8, responsible user: Automated Price Update Changed the lower bound price of enchanted_clay to 778.2734375, responsible user: Automated Price Update Changed the upper bound price of enchanted_clay to 778.2734375, responsible user: Automated Price Update Changed the lower bound price of protector_dragon_helmet to 114011.9, responsible user: Automated Price Update Changed the upper bound price of protector_dragon_helmet to 114011.9, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 558353.5, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 558353.5, responsible user: Automated Price Update Changed the lower bound price of emerald_blade to 500912.9, responsible user: Automated Price Update Changed the upper bound price of emerald_blade to 500912.9, responsible user: Automated Price Update Changed the lower bound price of spooky_shard to 57164.4, responsible user: Automated Price Update Changed the upper bound price of spooky_shard to 57164.4, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 554518.2, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 554518.2, responsible user: Automated Price Update Changed the lower bound price of revenant_flesh to 99.4828125, responsible user: Automated Price Update Changed the upper bound price of revenant_flesh to 99.4828125, responsible user: Automated Price Update Changed the lower bound price of budget_hopper to 2379.4, responsible user: Automated Price Update Changed the upper bound price of budget_hopper to 2379.4, responsible user: Automated Price Update Changed the lower bound price of titanic_experience_bottle to 440152.5, responsible user: Automated Price Update Changed the upper bound price of titanic_experience_bottle to 440152.5, responsible user: Automated Price Update Changed the lower bound price of budget_hopper to 2491.5, responsible user: Automated Price Update Changed the upper bound price of budget_hopper to 2491.5, responsible user: Automated Price Update Changed the lower bound price of village_affinity_talisman to 2063.0, responsible user: Automated Price Update Changed the upper bound price of village_affinity_talisman to 2063.0, responsible user: Automated Price Update Changed the lower bound price of enchanted_red_mushroom_block to 44571.5, responsible user: Automated Price Update Changed the upper bound price of enchanted_red_mushroom_block to 44571.5, responsible user: Automated Price Update Changed the lower bound price of old_dragon_fragment to 1872.25, responsible user: Automated Price Update Changed the upper bound price of old_dragon_fragment to 1872.25, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 453385.1, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 453385.1, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 550177.5, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 550177.5, responsible user: Automated Price Update Changed the lower bound price of hurricane_bow to 147313.2, responsible user: Automated Price Update Changed the upper bound price of hurricane_bow to 147313.2, responsible user: Automated Price Update Changed the lower bound price of tarantula_chestplate to 949010.7, responsible user: Automated Price Update Changed the upper bound price of tarantula_chestplate to 949010.7, responsible user: Automated Price Update Changed the lower bound price of green_candy to 689.45, responsible user: Automated Price Update Changed the upper bound price of green_candy to 689.45, responsible user: Automated Price Update Changed the lower bound price of enchanted_diamond to 1364.9, responsible user: Automated Price Update Changed the upper bound price of enchanted_diamond to 1364.9, responsible user: Automated Price Update Changed the lower bound price of old_dragon_boots to 142558.0, responsible user: Automated Price Update Changed the upper bound price of old_dragon_boots to 142558.0, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 548159.8, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 548159.8, responsible user: Automated Price Update


Friday 2020-01-24 13:13:37 by Sabine

Adds all those military things again

God I hate my life.


Friday 2020-01-24 14:12:52 by Simon

fixed webgl bug

note to self; OpenGL's forgiveness is a curse


Friday 2020-01-24 16:00:16 by skyblockz

Database update Changes: Changed the lower bound price of summoning_eye to 568985.5, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 568985.5, responsible user: Automated Price Update Changed the lower bound price of ember_rod to 33043.4, responsible user: Automated Price Update Changed the upper bound price of ember_rod to 33043.4, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 569587.0, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 569587.0, responsible user: Automated Price Update Changed the lower bound price of glowstone to 18.94375, responsible user: Automated Price Update Changed the upper bound price of glowstone to 18.94375, responsible user: Automated Price Update Changed the lower bound price of enchanted_oak_wood to 1174.1615384615384, responsible user: Automated Price Update Changed the upper bound price of enchanted_oak_wood to 1174.1615384615384, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 400753.1, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 400753.1, responsible user: Automated Price Update Changed the lower bound price of unstable_dragon_chestplate to 893034.6, responsible user: Automated Price Update Changed the upper bound price of unstable_dragon_chestplate to 893034.6, responsible user: Automated Price Update Changed the lower bound price of jungle_axe to 1808.1, responsible user: Automated Price Update Changed the upper bound price of jungle_axe to 1808.1, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 100949.9, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 100949.9, responsible user: Automated Price Update Changed the lower bound price of spider_catalyst to 170153.7, responsible user: Automated Price Update Changed the upper bound price of spider_catalyst to 170153.7, responsible user: Automated Price Update Changed the lower bound price of revenant_flesh to 10.28125, responsible user: Automated Price Update Changed the upper bound price of revenant_flesh to 10.28125, responsible user: Automated Price Update Changed the lower bound price of golden_tooth to 127337.78571428571, responsible user: Automated Price Update Changed the upper bound price of golden_tooth to 127337.78571428571, responsible user: Automated Price Update Changed the lower bound price of enchanted_ender_pearl to 212.9, responsible user: Automated Price Update Changed the upper bound price of enchanted_ender_pearl to 212.9, responsible user: Automated Price Update Changed the lower bound price of old_dragon_fragment to 1471.53, responsible user: Automated Price Update Changed the upper bound price of old_dragon_fragment to 1471.53, responsible user: Automated Price Update Changed the lower bound price of critical_vi to 348201.5, responsible user: Automated Price Update Changed the upper bound price of critical_vi to 348201.5, responsible user: Automated Price Update Changed the lower bound price of enchanted_lava_bucket to 341928.7, responsible user: Automated Price Update Changed the upper bound price of enchanted_lava_bucket to 341928.7, responsible user: Automated Price Update Changed the lower bound price of wolf_talisman to 73823.7, responsible user: Automated Price Update Changed the upper bound price of wolf_talisman to 73823.7, responsible user: Automated Price Update Changed the lower bound price of enchanted_diamond to 1724.5375, responsible user: Automated Price Update Changed the upper bound price of enchanted_diamond to 1724.5375, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 406677.8, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 406677.8, responsible user: Automated Price Update Changed the lower bound price of mastiff_crown to 1129311.8, responsible user: Automated Price Update Changed the upper bound price of mastiff_crown to 1129311.8, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 570128.3, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 570128.3, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 406010.0, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 406010.0, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 566115.5, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 566115.5, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 407959.0, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 407959.0, responsible user: Automated Price Update Changed the lower bound price of young_dragon_fragment to 3250.7, responsible user: Automated Price Update Changed the upper bound price of young_dragon_fragment to 3250.7, responsible user: Automated Price Update Changed the lower bound price of bat_talisman to 27662.5, responsible user: Automated Price Update Changed the upper bound price of bat_talisman to 27662.5, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 560615.1, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 560615.1, responsible user: Automated Price Update Changed the lower bound price of crystal_fragment to 14683.866666666665, responsible user: Automated Price Update Changed the upper bound price of crystal_fragment to 14683.866666666665, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone_block to 85944.0, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone_block to 85944.0, responsible user: Automated Price Update Changed the lower bound price of enchanted_cobblestone to 535.5734375, responsible user: Automated Price Update Changed the upper bound price of enchanted_cobblestone to 535.5734375, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 100854.9, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 100854.9, responsible user: Automated Price Update Changed the lower bound price of silver_fang to 3324.7, responsible user: Automated Price Update Changed the upper bound price of silver_fang to 3324.7, responsible user: Automated Price Update Changed the lower bound price of wood_singularity to 3702790.0, responsible user: Automated Price Update Changed the upper bound price of wood_singularity to 3702790.0, responsible user: Automated Price Update Changed the lower bound price of young_dragon_fragment to 3092.266666666667, responsible user: Automated Price Update Changed the upper bound price of young_dragon_fragment to 3092.266666666667, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 562053.6, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 562053.6, responsible user: Automated Price Update Changed the lower bound price of golden_tooth to 130474.0, responsible user: Automated Price Update Changed the upper bound price of golden_tooth to 130474.0, responsible user: Automated Price Update Changed the lower bound price of enchanted_diamond to 1680.225, responsible user: Automated Price Update Changed the upper bound price of enchanted_diamond to 1680.225, responsible user: Automated Price Update Changed the lower bound price of enchanted_clay to 567.6875, responsible user: Automated Price Update Changed the upper bound price of enchanted_clay to 567.6875, responsible user: Automated Price Update Changed the lower bound price of ember_boots to 9097.1, responsible user: Automated Price Update Changed the upper bound price of ember_boots to 9097.1, responsible user: Automated Price Update Changed the lower bound price of ember_rod to 32739.1, responsible user: Automated Price Update Changed the upper bound price of ember_rod to 32739.1, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 98819.4, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 98819.4, responsible user: Automated Price Update Changed the lower bound price of enchanted_cobblestone to 505.9015625, responsible user: Automated Price Update Changed the upper bound price of enchanted_cobblestone to 505.9015625, responsible user: Automated Price Update Changed the lower bound price of enchanted_oak_wood to 1095.1615384615384, responsible user: Automated Price Update Changed the upper bound price of enchanted_oak_wood to 1095.1615384615384, responsible user: Automated Price Update Changed the lower bound price of wise_dragon_fragment to 2070.6285714285714, responsible user: Automated Price Update Changed the upper bound price of wise_dragon_fragment to 2070.6285714285714, responsible user: Automated Price Update Changed the lower bound price of enchanted_lava_bucket to 337735.8, responsible user: Automated Price Update Changed the upper bound price of enchanted_lava_bucket to 337735.8, responsible user: Automated Price Update Changed the lower bound price of enchanted_lapis_lazuli to 1277.3546875, responsible user: Automated Price Update Changed the upper bound price of enchanted_lapis_lazuli to 1277.3546875, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_fragment to 26979.0, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_fragment to 26979.0, responsible user: Automated Price Update Changed the lower bound price of unstable_dragon_fragment to 13379.4, responsible user: Automated Price Update Changed the upper bound price of unstable_dragon_fragment to 13379.4, responsible user: Automated Price Update Changed the lower bound price of enchanted_lava_bucket to 363962.2, responsible user: Automated Price Update Changed the upper bound price of enchanted_lava_bucket to 363962.2, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_fragment to 26926.1, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_fragment to 26926.1, responsible user: Automated Price Update Changed the lower bound price of enchanted_lapis_block to 129628.65, responsible user: Automated Price Update Changed the upper bound price of enchanted_lapis_block to 129628.65, responsible user: Automated Price Update Changed the lower bound price of bane_of_arthropods_vi to 4641.4, responsible user: Automated Price Update Changed the upper bound price of bane_of_arthropods_vi to 4641.4, responsible user: Automated Price Update Changed the lower bound price of protector_dragon_fragment to 1184.9777777777776, responsible user: Automated Price Update Changed the upper bound price of protector_dragon_fragment to 1184.9777777777776, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 95837.5, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 95837.5, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 555848.2, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 555848.2, responsible user: Automated Price Update Changed the lower bound price of rod_of_champions to 1460701.3, responsible user: Automated Price Update Changed the upper bound price of rod_of_champions to 1460701.3, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 407163.1, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 407163.1, responsible user: Automated Price Update Changed the lower bound price of enchanted_lava_bucket to 357566.0, responsible user: Automated Price Update Changed the upper bound price of enchanted_lava_bucket to 357566.0, responsible user: Automated Price Update Changed the lower bound price of spider_catalyst to 183728.5, responsible user: Automated Price Update Changed the upper bound price of spider_catalyst to 183728.5, responsible user: Automated Price Update Changed the lower bound price of enchanted_blaze_rod to 548000.8, responsible user: Automated Price Update Changed the upper bound price of enchanted_blaze_rod to 548000.8, responsible user: Automated Price Update Changed the lower bound price of tarantula_web to 542.021875, responsible user: Automated Price Update Changed the upper bound price of tarantula_web to 542.021875, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 96253.8, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 96253.8, responsible user: Automated Price Update Changed the lower bound price of superior_dragon_fragment to 155837.8, responsible user: Automated Price Update Changed the upper bound price of superior_dragon_fragment to 155837.8, responsible user: Automated Price Update Changed the lower bound price of wise_dragon_helmet to 278311.6, responsible user: Automated Price Update Changed the upper bound price of wise_dragon_helmet to 278311.6, responsible user: Automated Price Update Changed the lower bound price of enchanted_emerald to 2015.259375, responsible user: Automated Price Update Changed the upper bound price of enchanted_emerald to 2015.259375, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 553263.4, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 553263.4, responsible user: Automated Price Update Changed the lower bound price of enchanted_cobblestone to 523.971875, responsible user: Automated Price Update Changed the upper bound price of enchanted_cobblestone to 523.971875, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 547937.1, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 547937.1, responsible user: Automated Price Update Changed the lower bound price of feather_artifact to 236235.8, responsible user: Automated Price Update Changed the upper bound price of feather_artifact to 236235.8, responsible user: Automated Price Update Changed the lower bound price of enchanted_baked_potato to 81150.1, responsible user: Automated Price Update Changed the upper bound price of enchanted_baked_potato to 81150.1, responsible user: Automated Price Update Changed the lower bound price of magical_water_bucket to 46.5, responsible user: Automated Price Update Changed the upper bound price of magical_water_bucket to 46.5, responsible user: Automated Price Update Changed the lower bound price of old_dragon_leggings to 275209.0, responsible user: Automated Price Update Changed the upper bound price of old_dragon_leggings to 275209.0, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone to 749.0421875, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone to 749.0421875, responsible user: Automated Price Update Changed the lower bound price of tarantula_web to 519.05, responsible user: Automated Price Update Changed the upper bound price of tarantula_web to 519.05, responsible user: Automated Price Update Changed the lower bound price of tarantula_web to 506.1625, responsible user: Automated Price Update Changed the upper bound price of tarantula_web to 506.1625, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 408996.8, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 408996.8, responsible user: Automated Price Update Changed the lower bound price of unstable_dragon_fragment to 13232.57142857143, responsible user: Automated Price Update Changed the upper bound price of unstable_dragon_fragment to 13232.57142857143, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 543143.4, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 543143.4, responsible user: Automated Price Update Changed the lower bound price of glowstone to 18.171875, responsible user: Automated Price Update Changed the upper bound price of glowstone to 18.171875, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 538829.1, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 538829.1, responsible user: Automated Price Update Changed the lower bound price of enchanted_diamond to 1640.325, responsible user: Automated Price Update Changed the upper bound price of enchanted_diamond to 1640.325, responsible user: Automated Price Update Changed the lower bound price of lapis_armor_leggings to 1324.8, responsible user: Automated Price Update Changed the upper bound price of lapis_armor_leggings to 1324.8, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 94678.4, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 94678.4, responsible user: Automated Price Update Changed the lower bound price of enchanted_ender_pearl to 226.58125, responsible user: Automated Price Update Changed the upper bound price of enchanted_ender_pearl to 226.58125, responsible user: Automated Price Update Changed the lower bound price of enchanted_acacia_wood to 1149.05, responsible user: Automated Price Update Changed the upper bound price of enchanted_acacia_wood to 1149.05, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 536461.3, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 536461.3, responsible user: Automated Price Update Changed the lower bound price of enchanted_ghast_tear to 127.8, responsible user: Automated Price Update Changed the upper bound price of enchanted_ghast_tear to 127.8, responsible user: Automated Price Update Changed the lower bound price of jungle_axe to 1675.3, responsible user: Automated Price Update Changed the upper bound price of jungle_axe to 1675.3, responsible user: Automated Price Update Changed the lower bound price of enchanted_lava_bucket to 353434.4, responsible user: Automated Price Update Changed the upper bound price of enchanted_lava_bucket to 353434.4, responsible user: Automated Price Update Changed the lower bound price of farmer_boots to 163937.4, responsible user: Automated Price Update Changed the upper bound price of farmer_boots to 163937.4, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 532815.2, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 532815.2, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone_block to 84249.6, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone_block to 84249.6, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_fragment to 26878.5, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_fragment to 26878.5, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 531048.8, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 531048.8, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 531443.9, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 531443.9, responsible user: Automated Price Update Changed the lower bound price of tarantula_web to 494.5625, responsible user: Automated Price Update Changed the upper bound price of tarantula_web to 494.5625, responsible user: Automated Price Update Changed the lower bound price of mana_flux_power_orb to 4727960.4, responsible user: Automated Price Update Changed the upper bound price of mana_flux_power_orb to 4727960.4, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 408347.1, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 408347.1, responsible user: Automated Price Update Changed the lower bound price of enchanted_lily_pad to 94516.99047619048, responsible user: Automated Price Update Changed the upper bound price of enchanted_lily_pad to 94516.99047619048, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 528299.5, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 528299.5, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 525469.6, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 525469.6, responsible user: Automated Price Update Changed the lower bound price of spider_talisman to 66718.3, responsible user: Automated Price Update Changed the upper bound price of spider_talisman to 66718.3, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 410062.4, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 410062.4, responsible user: Automated Price Update Changed the lower bound price of lapis_armor_chestplate to 1806.5, responsible user: Automated Price Update Changed the upper bound price of lapis_armor_chestplate to 1806.5, responsible user: Automated Price Update Changed the lower bound price of enchanted_clay to 667.15, responsible user: Automated Price Update Changed the upper bound price of enchanted_clay to 667.15, responsible user: Automated Price Update Changed the lower bound price of critical_v to 33354.5, responsible user: Automated Price Update Changed the upper bound price of critical_v to 33354.5, responsible user: Automated Price Update Changed the lower bound price of fire_talisman to 29258.4, responsible user: Automated Price Update Changed the upper bound price of fire_talisman to 29258.4, responsible user: Automated Price Update Changed the lower bound price of enchanted_gold to 1185.196875, responsible user: Automated Price Update Changed the upper bound price of enchanted_gold to 1185.196875, responsible user: Automated Price Update Changed the lower bound price of tarantula_helmet to 709047.4, responsible user: Automated Price Update Changed the upper bound price of tarantula_helmet to 709047.4, responsible user: Automated Price Update Changed the lower bound price of enchanted_ghast_tear to 123.0, responsible user: Automated Price Update Changed the upper bound price of enchanted_ghast_tear to 123.0, responsible user: Automated Price Update Changed the lower bound price of tarantula_helmet to 709442.7, responsible user: Automated Price Update Changed the upper bound price of tarantula_helmet to 709442.7, responsible user: Automated Price Update Changed the lower bound price of enchanted_lava_bucket to 352591.0, responsible user: Automated Price Update Changed the upper bound price of enchanted_lava_bucket to 352591.0, responsible user: Automated Price Update Changed the lower bound price of lily_pad to 696.4421875, responsible user: Automated Price Update Changed the upper bound price of lily_pad to 696.4421875, responsible user: Automated Price Update Changed the lower bound price of fire_talisman to 27853.5, responsible user: Automated Price Update Changed the upper bound price of fire_talisman to 27853.5, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 525922.6, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 525922.6, responsible user: Automated Price Update Changed the lower bound price of sunflower to 1.5, responsible user: Automated Price Update Changed the upper bound price of sunflower to 1.5, responsible user: Automated Price Update Changed the lower bound price of ender_leggings to 31618.1, responsible user: Automated Price Update Changed the upper bound price of ender_leggings to 31618.1, responsible user: Automated Price Update Changed the lower bound price of enchanted_emerald to 2404.34, responsible user: Automated Price Update Changed the upper bound price of enchanted_emerald to 2404.34, responsible user: Automated Price Update Changed the lower bound price of unstable_dragon_fragment to 13009.3, responsible user: Automated Price Update Changed the upper bound price of unstable_dragon_fragment to 13009.3, responsible user: Automated Price Update Changed the lower bound price of young_dragon_fragment to 2840.5, responsible user: Automated Price Update Changed the upper bound price of young_dragon_fragment to 2840.5, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 421956.2, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 421956.2, responsible user: Automated Price Update Changed the lower bound price of lapis_armor_leggings to 1367.3, responsible user: Automated Price Update Changed the upper bound price of lapis_armor_leggings to 1367.3, responsible user: Automated Price Update Changed the lower bound price of tarantula_web to 460.725, responsible user: Automated Price Update Changed the upper bound price of tarantula_web to 460.725, responsible user: Automated Price Update Changed the lower bound price of enchanted_sugar_cane to 110297.8, responsible user: Automated Price Update Changed the upper bound price of enchanted_sugar_cane to 110297.8, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_helmet to 957673.4, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_helmet to 957673.4, responsible user: Automated Price Update Changed the lower bound price of enchanted_acacia_wood to 1127.85, responsible user: Automated Price Update Changed the upper bound price of enchanted_acacia_wood to 1127.85, responsible user: Automated Price Update Changed the lower bound price of enchanted_snow_block to 1018.2529411764706, responsible user: Automated Price Update Changed the upper bound price of enchanted_snow_block to 1018.2529411764706, responsible user: Automated Price Update Changed the lower bound price of enchanted_sugar_cane to 110768.0, responsible user: Automated Price Update Changed the upper bound price of enchanted_sugar_cane to 110768.0, responsible user: Automated Price Update Changed the lower bound price of medium_backpack to 34402.9, responsible user: Automated Price Update Changed the upper bound price of medium_backpack to 34402.9, responsible user: Automated Price Update Changed the lower bound price of fish_affinity_talisman to 189896.9, responsible user: Automated Price Update Changed the upper bound price of fish_affinity_talisman to 189896.9, responsible user: Automated Price Update Changed the lower bound price of enchanted_lapis_block to 127867.5, responsible user: Automated Price Update Changed the upper bound price of enchanted_lapis_block to 127867.5, responsible user: Automated Price Update Changed the lower bound price of ender_chestplate to 16952.8, responsible user: Automated Price Update Changed the upper bound price of ender_chestplate to 16952.8, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 422310.6, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 422310.6, responsible user: Automated Price Update Changed the lower bound price of enchanted_leather to 10641.859375, responsible user: Automated Price Update Changed the upper bound price of enchanted_leather to 10641.859375, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 525330.3, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 525330.3, responsible user: Automated Price Update Changed the lower bound price of wolf_tooth to 151.57142857142858, responsible user: Automated Price Update Changed the upper bound price of wolf_tooth to 151.57142857142858, responsible user: Automated Price Update Changed the lower bound price of enchanted_flint to 1773.375, responsible user: Automated Price Update Changed the upper bound price of enchanted_flint to 1773.375, responsible user: Automated Price Update Changed the lower bound price of miner_helmet to 1557.0, responsible user: Automated Price Update Changed the upper bound price of miner_helmet to 1557.0, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 421479.5, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 421479.5, responsible user: Automated Price Update Changed the lower bound price of giant_killer_v to 4020.1, responsible user: Automated Price Update Changed the upper bound price of giant_killer_v to 4020.1, responsible user: Automated Price Update Changed the lower bound price of grand_experience_bottle to 4626.48125, responsible user: Automated Price Update Changed the upper bound price of grand_experience_bottle to 4626.48125, responsible user: Automated Price Update Changed the lower bound price of tarantula_helmet to 703498.4, responsible user: Automated Price Update Changed the upper bound price of tarantula_helmet to 703498.4, responsible user: Automated Price Update Changed the lower bound price of tarantula_web to 430.325, responsible user: Automated Price Update Changed the upper bound price of tarantula_web to 430.325, responsible user: Automated Price Update Changed the lower bound price of enchanted_lava_bucket to 347331.9, responsible user: Automated Price Update Changed the upper bound price of enchanted_lava_bucket to 347331.9, responsible user: Automated Price Update Changed the lower bound price of unstable_dragon_helmet to 606655.2, responsible user: Automated Price Update Changed the upper bound price of unstable_dragon_helmet to 606655.2, responsible user: Automated Price Update Changed the lower bound price of enchanted_rotten_flesh to 1357.85, responsible user: Automated Price Update Changed the upper bound price of enchanted_rotten_flesh to 1357.85, responsible user: Automated Price Update Changed the lower bound price of tarantula_web to 402.925, responsible user: Automated Price Update Changed the upper bound price of tarantula_web to 402.925, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 92110.6, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 92110.6, responsible user: Automated Price Update Changed the lower bound price of enchanted_dark_oak_wood to 1082.1, responsible user: Automated Price Update Changed the upper bound price of enchanted_dark_oak_wood to 1082.1, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 419581.6, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 419581.6, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 417873.4, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 417873.4, responsible user: Automated Price Update Changed the lower bound price of aspect_of_the_end to 195786.5, responsible user: Automated Price Update Changed the upper bound price of aspect_of_the_end to 195786.5, responsible user: Automated Price Update Changed the lower bound price of tarantula_web to 401.6625, responsible user: Automated Price Update Changed the upper bound price of tarantula_web to 401.6625, responsible user: Automated Price Update Changed the lower bound price of protector_dragon_chestplate to 132202.0, responsible user: Automated Price Update Changed the upper bound price of protector_dragon_chestplate to 132202.0, responsible user: Automated Price Update Changed the lower bound price of lapis_armor_leggings to 1232.4, responsible user: Automated Price Update Changed the upper bound price of lapis_armor_leggings to 1232.4, responsible user: Automated Price Update Changed the lower bound price of protection_vi to 1485990.2, responsible user: Automated Price Update Changed the upper bound price of protection_vi to 1485990.2, responsible user: Automated Price Update Changed the lower bound price of enchanted_pork to 1444.2, responsible user: Automated Price Update Changed the upper bound price of enchanted_pork to 1444.2, responsible user: Automated Price Update Changed the lower bound price of enchanted_lapis_block to 119558.2, responsible user: Automated Price Update Changed the upper bound price of enchanted_lapis_block to 119558.2, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 522797.3, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 522797.3, responsible user: Automated Price Update Changed the lower bound price of wise_dragon_boots to 227547.5, responsible user: Automated Price Update Changed the upper bound price of wise_dragon_boots to 227547.5, responsible user: Automated Price Update Changed the lower bound price of young_dragon_fragment to 2613.9, responsible user: Automated Price Update Changed the upper bound price of young_dragon_fragment to 2613.9, responsible user: Automated Price Update Changed the lower bound price of enchanted_sugar_cane to 112191.2, responsible user: Automated Price Update Changed the upper bound price of enchanted_sugar_cane to 112191.2, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_helmet to 961906.1, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_helmet to 961906.1, responsible user: Automated Price Update Changed the lower bound price of tarantula_web to 400.5625, responsible user: Automated Price Update Changed the upper bound price of tarantula_web to 400.5625, responsible user: Automated Price Update Changed the lower bound price of farmer_boots to 161943.7, responsible user: Automated Price Update Changed the upper bound price of farmer_boots to 161943.7, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone_block to 85824.6, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone_block to 85824.6, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 90834.5, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 90834.5, responsible user: Automated Price Update Changed the lower bound price of piggy_bank to 112423.5, responsible user: Automated Price Update Changed the upper bound price of piggy_bank to 112423.5, responsible user: Automated Price Update Changed the lower bound price of enchanted_cactus_green to 2134.05, responsible user: Automated Price Update Changed the upper bound price of enchanted_cactus_green to 2134.05, responsible user: Automated Price Update Changed the lower bound price of enchanted_flint to 1767.875, responsible user: Automated Price Update Changed the upper bound price of enchanted_flint to 1767.875, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_leggings to 2163093.7, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_leggings to 2163093.7, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 88651.0, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 88651.0, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 81085.9, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 81085.9, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_fragment to 26835.6, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_fragment to 26835.6, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_helmet to 930937.7, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_helmet to 930937.7, responsible user: Automated Price Update Changed the lower bound price of enchanted_flint to 1762.975, responsible user: Automated Price Update Changed the upper bound price of enchanted_flint to 1762.975, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 416336.1, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 416336.1, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 417252.5, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 417252.5, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 80912.3, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 80912.3, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 418077.2, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 418077.2, responsible user: Automated Price Update Changed the lower bound price of unstable_dragon_boots to 566640.5, responsible user: Automated Price Update Changed the upper bound price of unstable_dragon_boots to 566640.5, responsible user: Automated Price Update Changed the lower bound price of boots_of_growth to 391020.3, responsible user: Automated Price Update Changed the upper bound price of boots_of_growth to 391020.3, responsible user: Automated Price Update Changed the lower bound price of aspect_of_the_dragons to 5984524.0, responsible user: Automated Price Update Changed the upper bound price of aspect_of_the_dragons to 5984524.0, responsible user: Automated Price Update Changed the lower bound price of ember_rod to 32328.6, responsible user: Automated Price Update Changed the upper bound price of ember_rod to 32328.6, responsible user: Automated Price Update Changed the lower bound price of purple_candy to 6619.2, responsible user: Automated Price Update Changed the upper bound price of purple_candy to 6619.2, responsible user: Automated Price Update Changed the lower bound price of enchanted_rabbit_foot to 3690.075, responsible user: Automated Price Update Changed the upper bound price of enchanted_rabbit_foot to 3690.075, responsible user: Automated Price Update Changed the lower bound price of tarantula_web to 361.6875, responsible user: Automated Price Update Changed the upper bound price of tarantula_web to 361.6875, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 79721.1, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 79721.1, responsible user: Automated Price Update Changed the lower bound price of enchanted_raw_chicken to 1516.8, responsible user: Automated Price Update Changed the upper bound price of enchanted_raw_chicken to 1516.8, responsible user: Automated Price Update Changed the lower bound price of enchanted_cobblestone to 503.7796875, responsible user: Automated Price Update Changed the upper bound price of enchanted_cobblestone to 503.7796875, responsible user: Automated Price Update Changed the lower bound price of tarantula_web to 341.125, responsible user: Automated Price Update Changed the upper bound price of tarantula_web to 341.125, responsible user: Automated Price Update Changed the lower bound price of enchanted_rabbit_foot to 3680.475, responsible user: Automated Price Update Changed the upper bound price of enchanted_rabbit_foot to 3680.475, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 77749.0, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 77749.0, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 522517.6, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 522517.6, responsible user: Automated Price Update Changed the lower bound price of tarantula_web to 322.625, responsible user: Automated Price Update Changed the upper bound price of tarantula_web to 322.625, responsible user: Automated Price Update Changed the lower bound price of tarantula_web to 306.025, responsible user: Automated Price Update Changed the upper bound price of tarantula_web to 306.025, responsible user: Automated Price Update Changed the lower bound price of enchanted_rabbit_foot to 3671.775, responsible user: Automated Price Update Changed the upper bound price of enchanted_rabbit_foot to 3671.775, responsible user: Automated Price Update Changed the lower bound price of looting_iii to 1415.9, responsible user: Automated Price Update Changed the upper bound price of looting_iii to 1415.9, responsible user: Automated Price Update Changed the lower bound price of grappling_hook to 3429.5, responsible user: Automated Price Update Changed the upper bound price of grappling_hook to 3429.5, responsible user: Automated Price Update Changed the lower bound price of green_gift to 5982.3, responsible user: Automated Price Update Changed the upper bound price of green_gift to 5982.3, responsible user: Automated Price Update Changed the lower bound price of farmer_boots to 160149.3, responsible user: Automated Price Update Changed the upper bound price of farmer_boots to 160149.3, responsible user: Automated Price Update Changed the lower bound price of enchanted_cobblestone to 508.0875, responsible user: Automated Price Update Changed the upper bound price of enchanted_cobblestone to 508.0875, responsible user: Automated Price Update Changed the lower bound price of enchanted_snow_block to 985.4, responsible user: Automated Price Update Changed the upper bound price of enchanted_snow_block to 985.4, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 76874.1, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 76874.1, responsible user: Automated Price Update Changed the lower bound price of crystal_fragment to 13281.6, responsible user: Automated Price Update Changed the upper bound price of crystal_fragment to 13281.6, responsible user: Automated Price Update Changed the lower bound price of enchanted_rabbit_foot to 3663.975, responsible user: Automated Price Update Changed the upper bound price of enchanted_rabbit_foot to 3663.975, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 417669.5, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 417669.5, responsible user: Automated Price Update Changed the lower bound price of piggy_bank to 111416.2, responsible user: Automated Price Update Changed the upper bound price of piggy_bank to 111416.2, responsible user: Automated Price Update Changed the lower bound price of enchanted_cobblestone to 535.425, responsible user: Automated Price Update Changed the upper bound price of enchanted_cobblestone to 535.425, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 412902.6, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 412902.6, responsible user: Automated Price Update Changed the lower bound price of enchanted_cobblestone to 552.2125, responsible user: Automated Price Update Changed the upper bound price of enchanted_cobblestone to 552.2125, responsible user: Automated Price Update Changed the lower bound price of growth_vi to 3483274.5, responsible user: Automated Price Update Changed the upper bound price of growth_vi to 3483274.5, responsible user: Automated Price Update Changed the lower bound price of enchanted_raw_chicken to 1677.6, responsible user: Automated Price Update Changed the upper bound price of enchanted_raw_chicken to 1677.6, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 76086.7, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 76086.7, responsible user: Automated Price Update Changed the lower bound price of enchanted_raw_chicken to 1822.3, responsible user: Automated Price Update Changed the upper bound price of enchanted_raw_chicken to 1822.3, responsible user: Automated Price Update Changed the lower bound price of enchanted_iron to 845.24375, responsible user: Automated Price Update Changed the upper bound price of enchanted_iron to 845.24375, responsible user: Automated Price Update Changed the lower bound price of grappling_hook to 4086.6, responsible user: Automated Price Update Changed the upper bound price of grappling_hook to 4086.6, responsible user: Automated Price Update Changed the lower bound price of enchanted_raw_chicken to 1952.6, responsible user: Automated Price Update Changed the upper bound price of enchanted_raw_chicken to 1952.6, responsible user: Automated Price Update Changed the lower bound price of ender_chestplate to 15832.5, responsible user: Automated Price Update Changed the upper bound price of ender_chestplate to 15832.5, responsible user: Automated Price Update Changed the lower bound price of enchanted_raw_chicken to 2069.8, responsible user: Automated Price Update Changed the upper bound price of enchanted_raw_chicken to 2069.8, responsible user: Automated Price Update Changed the lower bound price of young_dragon_helmet to 363888.8, responsible user: Automated Price Update Changed the upper bound price of young_dragon_helmet to 363888.8, responsible user: Automated Price Update Changed the lower bound price of grappling_hook to 4884.7, responsible user: Automated Price Update Changed the upper bound price of grappling_hook to 4884.7, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone to 752.225, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone to 752.225, responsible user: Automated Price Update Changed the lower bound price of enchanted_raw_chicken to 2175.3, responsible user: Automated Price Update Changed the upper bound price of enchanted_raw_chicken to 2175.3, responsible user: Automated Price Update Changed the lower bound price of wolf_tooth to 141.19166666666666, responsible user: Automated Price Update Changed the upper bound price of wolf_tooth to 141.19166666666666, responsible user: Automated Price Update Changed the lower bound price of enchanted_nether_wart to 805.9, responsible user: Automated Price Update Changed the upper bound price of enchanted_nether_wart to 805.9, responsible user: Automated Price Update Changed the lower bound price of enchanted_cobblestone to 561.2359375, responsible user: Automated Price Update Changed the upper bound price of enchanted_cobblestone to 561.2359375, responsible user: Automated Price Update Changed the lower bound price of sharpness_vi to 7060106.1, responsible user: Automated Price Update Changed the upper bound price of sharpness_vi to 7060106.1, responsible user: Automated Price Update Changed the lower bound price of grand_experience_bottle to 4639.0734375, responsible user: Automated Price Update Changed the upper bound price of grand_experience_bottle to 4639.0734375, responsible user: Automated Price Update Changed the lower bound price of enchanted_cobblestone to 568.3140625, responsible user: Automated Price Update Changed the upper bound price of enchanted_cobblestone to 568.3140625, responsible user: Automated Price Update Changed the lower bound price of ender_leggings to 34574.4, responsible user: Automated Price Update Changed the upper bound price of ender_leggings to 34574.4, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 71485.1, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 71485.1, responsible user: Automated Price Update Changed the lower bound price of enchanted_ice to 229.225, responsible user: Automated Price Update Changed the upper bound price of enchanted_ice to 229.225, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 69836.6, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 69836.6, responsible user: Automated Price Update Changed the lower bound price of old_dragon_boots to 161104.8, responsible user: Automated Price Update Changed the upper bound price of old_dragon_boots to 161104.8, responsible user: Automated Price Update Changed the lower bound price of magical_water_bucket to 54.8, responsible user: Automated Price Update Changed the upper bound price of magical_water_bucket to 54.8, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 520265.8, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 520265.8, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 69177.9, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 69177.9, responsible user: Automated Price Update Changed the lower bound price of enchanted_ice to 221.925, responsible user: Automated Price Update Changed the upper bound price of enchanted_ice to 221.925, responsible user: Automated Price Update Changed the lower bound price of protector_dragon_fragment to 1224.3947368421054, responsible user: Automated Price Update Changed the upper bound price of protector_dragon_fragment to 1224.3947368421054, responsible user: Automated Price Update Changed the lower bound price of protector_dragon_leggings to 190908.9, responsible user: Automated Price Update Changed the upper bound price of protector_dragon_leggings to 190908.9, responsible user: Automated Price Update Changed the lower bound price of enchanted_diamond to 1792.0894736842106, responsible user: Automated Price Update Changed the upper bound price of enchanted_diamond to 1792.0894736842106, responsible user: Automated Price Update Changed the lower bound price of jungle_axe to 1580.8, responsible user: Automated Price Update Changed the upper bound price of jungle_axe to 1580.8, responsible user: Automated Price Update Changed the lower bound price of enchanted_diamond to 1782.1796875, responsible user: Automated Price Update Changed the upper bound price of enchanted_diamond to 1782.1796875, responsible user: Automated Price Update Changed the lower bound price of enchanted_eye_of_ender to 6250.65, responsible user: Automated Price Update Changed the upper bound price of enchanted_eye_of_ender to 6250.65, responsible user: Automated Price Update


Friday 2020-01-24 16:15:16 by skyblockz

Database update Changes: Changed the lower bound price of white_gift to 2627.4, responsible user: Automated Price Update Changed the upper bound price of white_gift to 2627.4, responsible user: Automated Price Update Changed the lower bound price of crystal_fragment to 16871.7, responsible user: Automated Price Update Changed the upper bound price of crystal_fragment to 16871.7, responsible user: Automated Price Update Changed the lower bound price of enchanted_cobblestone to 528.8625, responsible user: Automated Price Update Changed the upper bound price of enchanted_cobblestone to 528.8625, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 64658.4, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 64658.4, responsible user: Automated Price Update Changed the lower bound price of giant_killer_v to 3652.1, responsible user: Automated Price Update Changed the upper bound price of giant_killer_v to 3652.1, responsible user: Automated Price Update Changed the lower bound price of enchanted_spider_eye to 1444.15, responsible user: Automated Price Update Changed the upper bound price of enchanted_spider_eye to 1444.15, responsible user: Automated Price Update Changed the lower bound price of superior_dragon_helmet to 8280294.8, responsible user: Automated Price Update Changed the upper bound price of superior_dragon_helmet to 8280294.8, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 414195.8, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 414195.8, responsible user: Automated Price Update Changed the lower bound price of enchanted_clay to 645.790625, responsible user: Automated Price Update Changed the upper bound price of enchanted_clay to 645.790625, responsible user: Automated Price Update Changed the lower bound price of enchanted_diamond to 1880.771875, responsible user: Automated Price Update Changed the upper bound price of enchanted_diamond to 1880.771875, responsible user: Automated Price Update Changed the lower bound price of superior_dragon_leggings to 11383325.0, responsible user: Automated Price Update Changed the upper bound price of superior_dragon_leggings to 11383325.0, responsible user: Automated Price Update Changed the lower bound price of critical_vi to 343381.4, responsible user: Automated Price Update Changed the upper bound price of critical_vi to 343381.4, responsible user: Automated Price Update Changed the lower bound price of farmer_boots to 161084.4, responsible user: Automated Price Update Changed the upper bound price of farmer_boots to 161084.4, responsible user: Automated Price Update Changed the lower bound price of enchanted_blaze_powder to 3447.75, responsible user: Automated Price Update Changed the upper bound price of enchanted_blaze_powder to 3447.75, responsible user: Automated Price Update Changed the lower bound price of medium_storage to 7026.3, responsible user: Automated Price Update Changed the upper bound price of medium_storage to 7026.3, responsible user: Automated Price Update Changed the lower bound price of critical_vi to 349270.4, responsible user: Automated Price Update Changed the upper bound price of critical_vi to 349270.4, responsible user: Automated Price Update Changed the lower bound price of bat_talisman to 24555.3, responsible user: Automated Price Update Changed the upper bound price of bat_talisman to 24555.3, responsible user: Automated Price Update Changed the lower bound price of jungle_axe to 1240.5, responsible user: Automated Price Update Changed the upper bound price of jungle_axe to 1240.5, responsible user: Automated Price Update Changed the lower bound price of enchanted_jungle_wood to 1130.40625, responsible user: Automated Price Update Changed the upper bound price of enchanted_jungle_wood to 1130.40625, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 562903.6, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 562903.6, responsible user: Automated Price Update Changed the lower bound price of end_stone_bow to 8982.7, responsible user: Automated Price Update Changed the upper bound price of end_stone_bow to 8982.7, responsible user: Automated Price Update Changed the lower bound price of enchanted_clay to 649.3921875, responsible user: Automated Price Update Changed the upper bound price of enchanted_clay to 649.3921875, responsible user: Automated Price Update Changed the lower bound price of jungle_axe to 1164.4, responsible user: Automated Price Update Changed the upper bound price of jungle_axe to 1164.4, responsible user: Automated Price Update Changed the lower bound price of golden_tooth to 130556.6, responsible user: Automated Price Update Changed the upper bound price of golden_tooth to 130556.6, responsible user: Automated Price Update Changed the lower bound price of bat_talisman to 24775.4, responsible user: Automated Price Update Changed the upper bound price of bat_talisman to 24775.4, responsible user: Automated Price Update Changed the lower bound price of budget_hopper to 13564.9, responsible user: Automated Price Update Changed the upper bound price of budget_hopper to 13564.9, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_fragment to 26654.9, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_fragment to 26654.9, responsible user: Automated Price Update Changed the lower bound price of wise_dragon_fragment to 3107.92, responsible user: Automated Price Update Changed the upper bound price of wise_dragon_fragment to 3107.92, responsible user: Automated Price Update Changed the lower bound price of life_steal_iii to 6427.2, responsible user: Automated Price Update Changed the upper bound price of life_steal_iii to 6427.2, responsible user: Automated Price Update Changed the lower bound price of enchanted_spider_eye to 1465.0125, responsible user: Automated Price Update Changed the upper bound price of enchanted_spider_eye to 1465.0125, responsible user: Automated Price Update Changed the lower bound price of caster_vi to 711246.6, responsible user: Automated Price Update Changed the upper bound price of caster_vi to 711246.6, responsible user: Automated Price Update Changed the lower bound price of enchanted_spider_eye to 1483.8125, responsible user: Automated Price Update Changed the upper bound price of enchanted_spider_eye to 1483.8125, responsible user: Automated Price Update Changed the lower bound price of young_dragon_fragment to 1765.0714285714287, responsible user: Automated Price Update Changed the upper bound price of young_dragon_fragment to 1765.0714285714287, responsible user: Automated Price Update Changed the lower bound price of first_strike_iv to 9779.8, responsible user: Automated Price Update Changed the upper bound price of first_strike_iv to 9779.8, responsible user: Automated Price Update Changed the lower bound price of fish_affinity_talisman to 176933.4, responsible user: Automated Price Update Changed the upper bound price of fish_affinity_talisman to 176933.4, responsible user: Automated Price Update Changed the lower bound price of budget_hopper to 13119.7, responsible user: Automated Price Update Changed the upper bound price of budget_hopper to 13119.7, responsible user: Automated Price Update Changed the lower bound price of spider_ring to 106639.1, responsible user: Automated Price Update Changed the upper bound price of spider_ring to 106639.1, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_fragment to 26634.4, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_fragment to 26634.4, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 65797.0, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 65797.0, responsible user: Automated Price Update Changed the lower bound price of crystal_chestplate to 95182.8, responsible user: Automated Price Update Changed the upper bound price of crystal_chestplate to 95182.8, responsible user: Automated Price Update Changed the lower bound price of explosive_bow to 434227.6, responsible user: Automated Price Update Changed the upper bound price of explosive_bow to 434227.6, responsible user: Automated Price Update Changed the lower bound price of fish_affinity_talisman to 166240.1, responsible user: Automated Price Update Changed the upper bound price of fish_affinity_talisman to 166240.1, responsible user: Automated Price Update Changed the lower bound price of enchanted_jungle_wood to 1143.18125, responsible user: Automated Price Update Changed the upper bound price of enchanted_jungle_wood to 1143.18125, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 417776.2, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 417776.2, responsible user: Automated Price Update Changed the lower bound price of enchanted_cobblestone to 555.9609375, responsible user: Automated Price Update Changed the upper bound price of enchanted_cobblestone to 555.9609375, responsible user: Automated Price Update Changed the lower bound price of wise_dragon_chestplate to 321286.1, responsible user: Automated Price Update Changed the upper bound price of wise_dragon_chestplate to 321286.1, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 556613.2, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 556613.2, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 67582.2, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 67582.2, responsible user: Automated Price Update Changed the lower bound price of enchanted_spider_eye to 1479.15, responsible user: Automated Price Update Changed the upper bound price of enchanted_spider_eye to 1479.15, responsible user: Automated Price Update Changed the lower bound price of golden_tooth to 130000.9, responsible user: Automated Price Update Changed the upper bound price of golden_tooth to 130000.9, responsible user: Automated Price Update Changed the lower bound price of aspect_of_the_end to 275668.1, responsible user: Automated Price Update Changed the upper bound price of aspect_of_the_end to 275668.1, responsible user: Automated Price Update Changed the lower bound price of protector_dragon_fragment to 1313.5666666666666, responsible user: Automated Price Update Changed the upper bound price of protector_dragon_fragment to 1313.5666666666666, responsible user: Automated Price Update Changed the lower bound price of enchanted_ender_pearl to 244.2, responsible user: Automated Price Update Changed the upper bound price of enchanted_ender_pearl to 244.2, responsible user: Automated Price Update Changed the lower bound price of wise_dragon_fragment to 2841.2, responsible user: Automated Price Update Changed the upper bound price of wise_dragon_fragment to 2841.2, responsible user: Automated Price Update Changed the lower bound price of enchanted_flint to 1546.88125, responsible user: Automated Price Update Changed the upper bound price of enchanted_flint to 1546.88125, responsible user: Automated Price Update Changed the lower bound price of grappling_hook to 6443.0, responsible user: Automated Price Update Changed the upper bound price of grappling_hook to 6443.0, responsible user: Automated Price Update Changed the lower bound price of enchanted_clay to 638.40625, responsible user: Automated Price Update Changed the upper bound price of enchanted_clay to 638.40625, responsible user: Automated Price Update Changed the lower bound price of enchanted_spider_eye to 1475.4727272727273, responsible user: Automated Price Update Changed the upper bound price of enchanted_spider_eye to 1475.4727272727273, responsible user: Automated Price Update Changed the lower bound price of aspect_of_the_end to 307613.8, responsible user: Automated Price Update Changed the upper bound price of aspect_of_the_end to 307613.8, responsible user: Automated Price Update Changed the lower bound price of enchanted_lava_bucket to 369243.4, responsible user: Automated Price Update Changed the upper bound price of enchanted_lava_bucket to 369243.4, responsible user: Automated Price Update Changed the lower bound price of enchanted_lava_bucket to 365381.6, responsible user: Automated Price Update Changed the upper bound price of enchanted_lava_bucket to 365381.6, responsible user: Automated Price Update Changed the lower bound price of young_dragon_fragment to 1856.8333333333333, responsible user: Automated Price Update Changed the upper bound price of young_dragon_fragment to 1856.8333333333333, responsible user: Automated Price Update Changed the lower bound price of enchanted_dark_oak_wood to 1167.3703125, responsible user: Automated Price Update Changed the upper bound price of enchanted_dark_oak_wood to 1167.3703125, responsible user: Automated Price Update Changed the lower bound price of remnant_of_the_eye to 534.5, responsible user: Automated Price Update Changed the upper bound price of remnant_of_the_eye to 534.5, responsible user: Automated Price Update Changed the lower bound price of revenant_viscera to 90809.18571428572, responsible user: Automated Price Update Changed the upper bound price of revenant_viscera to 90809.18571428572, responsible user: Automated Price Update Changed the lower bound price of golden_tooth to 130225.8, responsible user: Automated Price Update Changed the upper bound price of golden_tooth to 130225.8, responsible user: Automated Price Update Changed the lower bound price of enchanted_clay to 629.8, responsible user: Automated Price Update Changed the upper bound price of enchanted_clay to 629.8, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 414696.1, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 414696.1, responsible user: Automated Price Update Changed the lower bound price of golden_tooth to 131003.2, responsible user: Automated Price Update Changed the upper bound price of golden_tooth to 131003.2, responsible user: Automated Price Update Changed the lower bound price of unstable_dragon_chestplate to 868136.3, responsible user: Automated Price Update Changed the upper bound price of unstable_dragon_chestplate to 868136.3, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 555951.9, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 555951.9, responsible user: Automated Price Update Changed the lower bound price of crystal_fragment to 16639.3, responsible user: Automated Price Update Changed the upper bound price of crystal_fragment to 16639.3, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 557856.7, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 557856.7, responsible user: Automated Price Update Changed the lower bound price of grappling_hook to 6647.7, responsible user: Automated Price Update Changed the upper bound price of grappling_hook to 6647.7, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 556071.0, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 556071.0, responsible user: Automated Price Update Changed the lower bound price of blessing_v to 18802.4, responsible user: Automated Price Update Changed the upper bound price of blessing_v to 18802.4, responsible user: Automated Price Update Changed the lower bound price of snow_block to 5.4, responsible user: Automated Price Update Changed the upper bound price of snow_block to 5.4, responsible user: Automated Price Update Changed the lower bound price of enchanted_string to 1915.140625, responsible user: Automated Price Update Changed the upper bound price of enchanted_string to 1915.140625, responsible user: Automated Price Update Changed the lower bound price of compactor to 1632.4, responsible user: Automated Price Update Changed the upper bound price of compactor to 1632.4, responsible user: Automated Price Update Changed the lower bound price of old_dragon_fragment to 2050.3375, responsible user: Automated Price Update Changed the upper bound price of old_dragon_fragment to 2050.3375, responsible user: Automated Price Update Changed the lower bound price of young_dragon_chestplate to 564687.6, responsible user: Automated Price Update Changed the upper bound price of young_dragon_chestplate to 564687.6, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 68824.0, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 68824.0, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone_block to 101792.26666666666, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone_block to 101792.26666666666, responsible user: Automated Price Update Changed the lower bound price of medium_backpack to 31523.8, responsible user: Automated Price Update Changed the upper bound price of medium_backpack to 31523.8, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 421226.5, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 421226.5, responsible user: Automated Price Update Changed the lower bound price of tarantula_silk to 104739.2, responsible user: Automated Price Update Changed the upper bound price of tarantula_silk to 104739.2, responsible user: Automated Price Update Changed the lower bound price of enchanted_dark_oak_wood to 1174.584375, responsible user: Automated Price Update Changed the upper bound price of enchanted_dark_oak_wood to 1174.584375, responsible user: Automated Price Update Changed the lower bound price of enchanted_jungle_wood to 1128.9, responsible user: Automated Price Update Changed the upper bound price of enchanted_jungle_wood to 1128.9, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_leggings to 2127006.5, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_leggings to 2127006.5, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone_block to 103681.2, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone_block to 103681.2, responsible user: Automated Price Update Changed the lower bound price of enchanted_red_mushroom_block to 23237.4, responsible user: Automated Price Update Changed the upper bound price of enchanted_red_mushroom_block to 23237.4, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_fragment to 26616.0, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_fragment to 26616.0, responsible user: Automated Price Update Changed the lower bound price of unstable_dragon_fragment to 12015.310256410256, responsible user: Automated Price Update Changed the upper bound price of unstable_dragon_fragment to 12015.310256410256, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 419353.8, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 419353.8, responsible user: Automated Price Update Changed the lower bound price of remnant_of_the_eye to 494.2, responsible user: Automated Price Update Changed the upper bound price of remnant_of_the_eye to 494.2, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone_block to 108398.2875, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone_block to 108398.2875, responsible user: Automated Price Update Changed the lower bound price of enchanted_jungle_wood to 1141.78125, responsible user: Automated Price Update Changed the upper bound price of enchanted_jungle_wood to 1141.78125, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 423418.4, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 423418.4, responsible user: Automated Price Update Changed the lower bound price of enchanted_diamond to 1887.371875, responsible user: Automated Price Update Changed the upper bound price of enchanted_diamond to 1887.371875, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 70306.5, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 70306.5, responsible user: Automated Price Update Changed the lower bound price of enchanted_flint to 1536.8484375, responsible user: Automated Price Update Changed the upper bound price of enchanted_flint to 1536.8484375, responsible user: Automated Price Update Changed the lower bound price of enchanted_bone to 1698.7875, responsible user: Automated Price Update Changed the upper bound price of enchanted_bone to 1698.7875, responsible user: Automated Price Update Changed the lower bound price of crystal_helmet to 43279.6, responsible user: Automated Price Update Changed the upper bound price of crystal_helmet to 43279.6, responsible user: Automated Price Update Changed the lower bound price of enchanted_raw_beef to 1003.6375, responsible user: Automated Price Update Changed the upper bound price of enchanted_raw_beef to 1003.6375, responsible user: Automated Price Update Changed the lower bound price of cubism_v to 5085.6, responsible user: Automated Price Update Changed the upper bound price of cubism_v to 5085.6, responsible user: Automated Price Update Changed the lower bound price of dirt to 1.5, responsible user: Automated Price Update Changed the upper bound price of dirt to 1.5, responsible user: Automated Price Update Changed the lower bound price of enchanted_dark_oak_wood to 1181.084375, responsible user: Automated Price Update Changed the upper bound price of enchanted_dark_oak_wood to 1181.084375, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 71210.8, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 71210.8, responsible user: Automated Price Update Changed the lower bound price of wise_dragon_helmet to 303232.4, responsible user: Automated Price Update Changed the upper bound price of wise_dragon_helmet to 303232.4, responsible user: Automated Price Update Changed the lower bound price of enchanted_spruce_wood to 1107.6625, responsible user: Automated Price Update Changed the upper bound price of enchanted_spruce_wood to 1107.6625, responsible user: Automated Price Update Changed the lower bound price of rotten_flesh to 6.4, responsible user: Automated Price Update Changed the upper bound price of rotten_flesh to 6.4, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 72089.7, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 72089.7, responsible user: Automated Price Update Changed the lower bound price of protector_dragon_fragment to 1348.8666666666666, responsible user: Automated Price Update Changed the upper bound price of protector_dragon_fragment to 1348.8666666666666, responsible user: Automated Price Update Changed the lower bound price of enchanted_diamond_block to 210425.0, responsible user: Automated Price Update Changed the upper bound price of enchanted_diamond_block to 210425.0, responsible user: Automated Price Update Changed the lower bound price of enchanted_ender_pearl to 269.8, responsible user: Automated Price Update Changed the upper bound price of enchanted_ender_pearl to 269.8, responsible user: Automated Price Update Changed the lower bound price of wise_dragon_fragment to 2601.2, responsible user: Automated Price Update Changed the upper bound price of wise_dragon_fragment to 2601.2, responsible user: Automated Price Update Changed the lower bound price of enchanted_flint to 1508.98125, responsible user: Automated Price Update Changed the upper bound price of enchanted_flint to 1508.98125, responsible user: Automated Price Update Changed the lower bound price of enchanted_acacia_wood to 1140.88125, responsible user: Automated Price Update Changed the upper bound price of enchanted_acacia_wood to 1140.88125, responsible user: Automated Price Update Changed the lower bound price of enchanted_string to 1930.240625, responsible user: Automated Price Update Changed the upper bound price of enchanted_string to 1930.240625, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 72860.8, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 72860.8, responsible user: Automated Price Update Changed the lower bound price of enchanted_lapis_block to 110834.4142857143, responsible user: Automated Price Update Changed the upper bound price of enchanted_lapis_block to 110834.4142857143, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone to 689.275, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone to 689.275, responsible user: Automated Price Update Changed the lower bound price of spider_talisman to 70131.0, responsible user: Automated Price Update Changed the upper bound price of spider_talisman to 70131.0, responsible user: Automated Price Update Changed the lower bound price of enchanted_snow_block to 963.4, responsible user: Automated Price Update Changed the upper bound price of enchanted_snow_block to 963.4, responsible user: Automated Price Update Changed the lower bound price of ghast_tear to 23.6, responsible user: Automated Price Update Changed the upper bound price of ghast_tear to 23.6, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_fragment to 26599.4, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_fragment to 26599.4, responsible user: Automated Price Update Changed the lower bound price of golden_tooth to 131702.9, responsible user: Automated Price Update Changed the upper bound price of golden_tooth to 131702.9, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 421326.6, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 421326.6, responsible user: Automated Price Update Changed the lower bound price of titanic_experience_bottle to 355566.8, responsible user: Automated Price Update Changed the upper bound price of titanic_experience_bottle to 355566.8, responsible user: Automated Price Update Changed the lower bound price of foul_flesh to 29765.8, responsible user: Automated Price Update Changed the upper bound price of foul_flesh to 29765.8, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 550463.9, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 550463.9, responsible user: Automated Price Update Changed the lower bound price of unstable_dragon_fragment to 12013.8, responsible user: Automated Price Update Changed the upper bound price of unstable_dragon_fragment to 12013.8, responsible user: Automated Price Update Changed the lower bound price of wise_dragon_boots to 197457.2, responsible user: Automated Price Update Changed the upper bound price of wise_dragon_boots to 197457.2, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 545417.5, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 545417.5, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 73574.7, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 73574.7, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 74217.2, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 74217.2, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 73695.5, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 73695.5, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 74326.0, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 74326.0, responsible user: Automated Price Update Changed the lower bound price of enchanted_iron_block to 121392.9, responsible user: Automated Price Update Changed the upper bound price of enchanted_iron_block to 121392.9, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 540875.8, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 540875.8, responsible user: Automated Price Update Changed the lower bound price of enchanted_cobblestone to 619.21875, responsible user: Automated Price Update Changed the upper bound price of enchanted_cobblestone to 619.21875, responsible user: Automated Price Update Changed the lower bound price of wise_dragon_fragment to 2370.233333333333, responsible user: Automated Price Update Changed the upper bound price of wise_dragon_fragment to 2370.233333333333, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 74893.4, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 74893.4, responsible user: Automated Price Update Changed the lower bound price of wise_dragon_boots to 190936.5, responsible user: Automated Price Update Changed the upper bound price of wise_dragon_boots to 190936.5, responsible user: Automated Price Update Changed the lower bound price of unstable_dragon_chestplate to 873322.7, responsible user: Automated Price Update Changed the upper bound price of unstable_dragon_chestplate to 873322.7, responsible user: Automated Price Update Changed the lower bound price of enchanted_snow_block to 927.1, responsible user: Automated Price Update Changed the upper bound price of enchanted_snow_block to 927.1, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 536788.2, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 536788.2, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 75404.1, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 75404.1, responsible user: Automated Price Update Changed the lower bound price of lapis_armor_helmet to 970.5, responsible user: Automated Price Update Changed the upper bound price of lapis_armor_helmet to 970.5, responsible user: Automated Price Update Changed the lower bound price of end_stone_bow to 8745.7, responsible user: Automated Price Update Changed the upper bound price of end_stone_bow to 8745.7, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 77063.7, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 77063.7, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 77357.3, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 77357.3, responsible user: Automated Price Update Changed the lower bound price of wise_dragon_fragment to 2152.2, responsible user: Automated Price Update Changed the upper bound price of wise_dragon_fragment to 2152.2, responsible user: Automated Price Update Changed the lower bound price of enchanted_ender_pearl to 265.8, responsible user: Automated Price Update Changed the upper bound price of enchanted_ender_pearl to 265.8, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 77621.6, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 77621.6, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_chestplate to 2478085.6, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_chestplate to 2478085.6, responsible user: Automated Price Update Changed the lower bound price of enchanted_clay to 630.2796875, responsible user: Automated Price Update Changed the upper bound price of enchanted_clay to 630.2796875, responsible user: Automated Price Update Changed the lower bound price of dirt to 1.5, responsible user: Automated Price Update Changed the upper bound price of dirt to 1.5, responsible user: Automated Price Update Changed the lower bound price of greater_backpack to 498559.5, responsible user: Automated Price Update Changed the upper bound price of greater_backpack to 498559.5, responsible user: Automated Price Update Changed the lower bound price of young_dragon_fragment to 2112.0333333333333, responsible user: Automated Price Update Changed the upper bound price of young_dragon_fragment to 2112.0333333333333, responsible user: Automated Price Update Changed the lower bound price of wise_dragon_helmet to 312909.2, responsible user: Automated Price Update Changed the upper bound price of wise_dragon_helmet to 312909.2, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 77859.4, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 77859.4, responsible user: Automated Price Update Changed the lower bound price of unstable_dragon_helmet to 592513.5, responsible user: Automated Price Update Changed the upper bound price of unstable_dragon_helmet to 592513.5, responsible user: Automated Price Update Changed the lower bound price of enchanted_gunpowder to 1599.6921875, responsible user: Automated Price Update Changed the upper bound price of enchanted_gunpowder to 1599.6921875, responsible user: Automated Price Update Changed the lower bound price of young_dragon_fragment to 2016.4, responsible user: Automated Price Update Changed the upper bound price of young_dragon_fragment to 2016.4, responsible user: Automated Price Update Changed the lower bound price of aspect_of_the_end to 301852.4, responsible user: Automated Price Update Changed the upper bound price of aspect_of_the_end to 301852.4, responsible user: Automated Price Update Changed the lower bound price of emerald_blade to 464137.1, responsible user: Automated Price Update Changed the upper bound price of emerald_blade to 464137.1, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 78073.5, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 78073.5, responsible user: Automated Price Update Changed the lower bound price of enchanted_iron_block to 120753.6, responsible user: Automated Price Update Changed the upper bound price of enchanted_iron_block to 120753.6, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 540609.4, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 540609.4, responsible user: Automated Price Update Changed the lower bound price of enchanted_spider_eye to 1471.65, responsible user: Automated Price Update Changed the upper bound price of enchanted_spider_eye to 1471.65, responsible user: Automated Price Update Changed the lower bound price of enchanted_string to 2049.7, responsible user: Automated Price Update Changed the upper bound price of enchanted_string to 2049.7, responsible user: Automated Price Update Changed the lower bound price of enchanted_spider_eye to 1468.25, responsible user: Automated Price Update Changed the upper bound price of enchanted_spider_eye to 1468.25, responsible user: Automated Price Update Changed the lower bound price of enchanted_iron to 951.1296875, responsible user: Automated Price Update Changed the upper bound price of enchanted_iron to 951.1296875, responsible user: Automated Price Update Changed the lower bound price of grappling_hook to 6776.4, responsible user: Automated Price Update Changed the upper bound price of grappling_hook to 6776.4, responsible user: Automated Price Update Changed the lower bound price of experience_artifact to 580781.9, responsible user: Automated Price Update Changed the upper bound price of experience_artifact to 580781.9, responsible user: Automated Price Update Changed the lower bound price of enchanted_acacia_wood to 1148.71875, responsible user: Automated Price Update Changed the upper bound price of enchanted_acacia_wood to 1148.71875, responsible user: Automated Price Update Changed the lower bound price of enchanted_gold to 1192.98125, responsible user: Automated Price Update Changed the upper bound price of enchanted_gold to 1192.98125, responsible user: Automated Price Update Changed the lower bound price of old_dragon_helmet to 235374.1, responsible user: Automated Price Update Changed the upper bound price of old_dragon_helmet to 235374.1, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_leggings to 2121561.3, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_leggings to 2121561.3, responsible user: Automated Price Update Changed the lower bound price of enchanted_spider_eye to 1487.3145454545454, responsible user: Automated Price Update Changed the upper bound price of enchanted_spider_eye to 1487.3145454545454, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 536548.5, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 536548.5, responsible user: Automated Price Update Changed the lower bound price of enchanted_acacia_wood to 1197.7703125, responsible user: Automated Price Update Changed the upper bound price of enchanted_acacia_wood to 1197.7703125, responsible user: Automated Price Update Changed the lower bound price of enchanted_lapis_block to 106560.6, responsible user: Automated Price Update Changed the upper bound price of enchanted_lapis_block to 106560.6, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 540968.6, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 540968.6, responsible user: Automated Price Update Changed the lower bound price of young_dragon_chestplate to 548218.8, responsible user: Automated Price Update Changed the upper bound price of young_dragon_chestplate to 548218.8, responsible user: Automated Price Update Changed the lower bound price of enchanted_sugar_cane to 112093.4, responsible user: Automated Price Update Changed the upper bound price of enchanted_sugar_cane to 112093.4, responsible user: Automated Price Update Changed the lower bound price of enchanted_lapis_block to 99290.1, responsible user: Automated Price Update Changed the upper bound price of enchanted_lapis_block to 99290.1, responsible user: Automated Price Update Changed the lower bound price of old_dragon_boots to 162308.0, responsible user: Automated Price Update Changed the upper bound price of old_dragon_boots to 162308.0, responsible user: Automated Price Update Changed the lower bound price of wolf_tooth to 152.3375, responsible user: Automated Price Update Changed the upper bound price of wolf_tooth to 152.3375, responsible user: Automated Price Update Changed the lower bound price of enchanted_blaze_powder to 3392.6375, responsible user: Automated Price Update Changed the upper bound price of enchanted_blaze_powder to 3392.6375, responsible user: Automated Price Update Changed the lower bound price of farmer_boots to 162829.8, responsible user: Automated Price Update Changed the upper bound price of farmer_boots to 162829.8, responsible user: Automated Price Update Changed the lower bound price of crystal_fragment to 16131.285714285714, responsible user: Automated Price Update Changed the upper bound price of crystal_fragment to 16131.285714285714, responsible user: Automated Price Update Changed the lower bound price of jungle_axe to 1388.3, responsible user: Automated Price Update Changed the upper bound price of jungle_axe to 1388.3, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 425481.4, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 425481.4, responsible user: Automated Price Update Changed the lower bound price of crystal_fragment to 14750.85, responsible user: Automated Price Update Changed the upper bound price of crystal_fragment to 14750.85, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 544371.7, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 544371.7, responsible user: Automated Price Update Changed the lower bound price of enchanted_lava_bucket to 358843.4, responsible user: Automated Price Update Changed the upper bound price of enchanted_lava_bucket to 358843.4, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone_block to 104458.5, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone_block to 104458.5, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_chestplate to 2489552.6, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_chestplate to 2489552.6, responsible user: Automated Price Update Changed the lower bound price of unstable_dragon_fragment to 11812.4, responsible user: Automated Price Update Changed the upper bound price of unstable_dragon_fragment to 11812.4, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 428933.3, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 428933.3, responsible user: Automated Price Update Changed the lower bound price of young_dragon_helmet to 358999.9, responsible user: Automated Price Update Changed the upper bound price of young_dragon_helmet to 358999.9, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_chestplate to 2458897.3, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_chestplate to 2458897.3, responsible user: Automated Price Update Changed the lower bound price of enchanted_blaze_powder to 3397.15, responsible user: Automated Price Update Changed the upper bound price of enchanted_blaze_powder to 3397.15, responsible user: Automated Price Update Changed the lower bound price of protector_dragon_fragment to 1321.3333333333335, responsible user: Automated Price Update Changed the upper bound price of protector_dragon_fragment to 1321.3333333333335, responsible user: Automated Price Update Changed the lower bound price of old_dragon_fragment to 2076.6, responsible user: Automated Price Update Changed the upper bound price of old_dragon_fragment to 2076.6, responsible user: Automated Price Update Changed the lower bound price of compactor to 1533.2, responsible user: Automated Price Update Changed the upper bound price of compactor to 1533.2, responsible user: Automated Price Update Changed the lower bound price of enchanted_lapis_block to 100381.93333333333, responsible user: Automated Price Update Changed the upper bound price of enchanted_lapis_block to 100381.93333333333, responsible user: Automated Price Update Changed the lower bound price of enchanted_clay to 638.590625, responsible user: Automated Price Update Changed the upper bound price of enchanted_clay to 638.590625, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 542934.5, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 542934.5, responsible user: Automated Price Update Changed the lower bound price of young_dragon_helmet to 357599.9, responsible user: Automated Price Update Changed the upper bound price of young_dragon_helmet to 357599.9, responsible user: Automated Price Update Changed the lower bound price of unstable_dragon_leggings to 1102790.2, responsible user: Automated Price Update Changed the upper bound price of unstable_dragon_leggings to 1102790.2, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_leggings to 2122155.2, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_leggings to 2122155.2, responsible user: Automated Price Update Changed the lower bound price of titanic_experience_bottle to 361834.2, responsible user: Automated Price Update Changed the upper bound price of titanic_experience_bottle to 361834.2, responsible user: Automated Price Update Changed the lower bound price of enchanted_blaze_powder to 3201.4, responsible user: Automated Price Update Changed the upper bound price of enchanted_blaze_powder to 3201.4, responsible user: Automated Price Update Changed the lower bound price of emerald_blade to 458421.8, responsible user: Automated Price Update Changed the upper bound price of emerald_blade to 458421.8, responsible user: Automated Price Update Changed the lower bound price of grappling_hook to 6537.0, responsible user: Automated Price Update Changed the upper bound price of grappling_hook to 6537.0, responsible user: Automated Price Update Changed the lower bound price of enchanted_gold to 1206.66875, responsible user: Automated Price Update Changed the upper bound price of enchanted_gold to 1206.66875, responsible user: Automated Price Update Changed the lower bound price of silver_fang to 3508.8666666666663, responsible user: Automated Price Update Changed the upper bound price of silver_fang to 3508.8666666666663, responsible user: Automated Price Update Changed the lower bound price of unstable_dragon_chestplate to 891790.4, responsible user: Automated Price Update Changed the upper bound price of unstable_dragon_chestplate to 891790.4, responsible user: Automated Price Update Changed the lower bound price of unstable_dragon_fragment to 11631.2, responsible user: Automated Price Update Changed the upper bound price of unstable_dragon_fragment to 11631.2, responsible user: Automated Price Update Changed the lower bound price of tarantula_web to 308.025, responsible user: Automated Price Update Changed the upper bound price of tarantula_web to 308.025, responsible user: Automated Price Update Changed the lower bound price of enchanted_lapis_block to 100385.7, responsible user: Automated Price Update Changed the upper bound price of enchanted_lapis_block to 100385.7, responsible user: Automated Price Update Changed the lower bound price of ember_boots to 9337.4, responsible user: Automated Price Update Changed the upper bound price of ember_boots to 9337.4, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 549591.0, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 549591.0, responsible user: Automated Price Update Changed the lower bound price of unstable_dragon_fragment to 11468.1, responsible user: Automated Price Update Changed the upper bound price of unstable_dragon_fragment to 11468.1, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 435040.0, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 435040.0, responsible user: Automated Price Update Changed the lower bound price of superior_dragon_fragment to 151228.9, responsible user: Automated Price Update Changed the upper bound price of superior_dragon_fragment to 151228.9, responsible user: Automated Price Update Changed the lower bound price of crystal_fragment to 14540.8, responsible user: Automated Price Update Changed the upper bound price of crystal_fragment to 14540.8, responsible user: Automated Price Update Changed the lower bound price of enchanted_diamond to 1904.85, responsible user: Automated Price Update Changed the upper bound price of enchanted_diamond to 1904.85, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 552131.9, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 552131.9, responsible user: Automated Price Update Changed the lower bound price of old_dragon_helmet to 241836.7, responsible user: Automated Price Update Changed the upper bound price of old_dragon_helmet to 241836.7, responsible user: Automated Price Update Changed the lower bound price of young_dragon_boots to 370025.4, responsible user: Automated Price Update Changed the upper bound price of young_dragon_boots to 370025.4, responsible user: Automated Price Update Changed the lower bound price of cubism_v to 5077.0, responsible user: Automated Price Update Changed the upper bound price of cubism_v to 5077.0, responsible user: Automated Price Update Changed the lower bound price of enchanted_iron to 1022.25, responsible user: Automated Price Update Changed the upper bound price of enchanted_iron to 1022.25, responsible user: Automated Price Update Changed the lower bound price of magical_mushroom_soup to 10.1625, responsible user: Automated Price Update Changed the upper bound price of magical_mushroom_soup to 10.1625, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 80616.2, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 80616.2, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 437823.5, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 437823.5, responsible user: Automated Price Update Changed the lower bound price of remnant_of_the_eye to 471.4, responsible user: Automated Price Update Changed the upper bound price of remnant_of_the_eye to 471.4, responsible user: Automated Price Update Changed the lower bound price of ender_boots to 24629.6, responsible user: Automated Price Update Changed the upper bound price of ender_boots to 24629.6, responsible user: Automated Price Update Changed the lower bound price of grappling_hook to 6683.3, responsible user: Automated Price Update Changed the upper bound price of grappling_hook to 6683.3, responsible user: Automated Price Update Changed the lower bound price of end_stone_bow to 8745.7, responsible user: Automated Price Update Changed the upper bound price of end_stone_bow to 8745.7, responsible user: Automated Price Update Changed the lower bound price of enchanted_clay to 647.025, responsible user: Automated Price Update Changed the upper bound price of enchanted_clay to 647.025, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 555696.5, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 555696.5, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 437741.2, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 437741.2, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 85281.2, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 85281.2, responsible user: Automated Price Update Changed the lower bound price of wise_dragon_helmet to 296827.1, responsible user: Automated Price Update Changed the upper bound price of wise_dragon_helmet to 296827.1, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 437667.1, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 437667.1, responsible user: Automated Price Update Changed the lower bound price of revenant_falchion to 350600.0, responsible user: Automated Price Update Changed the upper bound price of revenant_falchion to 350600.0, responsible user: Automated Price Update


Friday 2020-01-24 17:09:10 by Marko Grdinić

"``` Unhandled Exception: System.IndexOutOfRangeException: Index was outside the bounds of the array. at Spiral.Show.show_position'(StringBuilder strb, SpiralModule _arg1, Int32 line, Int32 col) in C:\Users\Marko\Source\Repos\The Spiral Language\The Spiral Language\SpiralShow.fs:line 0


This is what I get now when I try to run the tests.

I did not make the above adjustment.

Test test40 has passed. Timings: {parse = 00:00:00.0001624; prepass = 00:00:00.0000208; peval = 00:00:00.0000994; codegen = 00:00:00.0000402;} Test test41 has passed. Timings: {parse = 00:00:00.0001692; prepass = 00:00:00.0000281; peval = 00:00:00.0000553; codegen = 00:00:00.0000234;}

Unhandled Exception: System.IndexOutOfRangeException: Index was outside the bounds of the array. at Spiral.Show.show_position'(StringBuilder strb, SpiralModule _arg1, Int32 line, Int32 col) in C:\Users\Marko\Source\Repos\The Spiral Language\The Spiral Language\SpiralShow.fs:line 0


Agh, let me turn on debugging.

let er_code =
    code
    |> memoize' code_dict (fun file_code -> file_code.Split([|Environment.NewLine|],StringSplitOptions.None))
    |> fun x -> x.[int line - 1]

Ok, for some reason this is not spliting the string along newlines. What the hell?

"\ninl a = dyn 1\ninl b = dyn 2\ninl c = dyn 3\n4 + type 0\n    "

"\ninl a = dyn 1\ninl b = dyn 2\ninl c = dyn 3\n4 + type 0\n ".Split([|System.Environment.NewLine;"\n"|],System.StringSplitOptions.None)


Ah, maybe something changed in FParsec. I am not sure. Just why is this happening?

How am I reading the files?

|> memoize' code_dict (fun file_code -> file_code.Split([|"\n"|],StringSplitOptions.None))


I have absolutely no idea why `System.Environment.NewLine` is all of a sudden not working. Forget this.

Test list6 has passed. Timings: {parse = 00:00:00.0002255; prepass = 00:00:00.0000221; peval = 00:00:00.0014484; codegen = 00:00:00.0007286;}

Process is terminated due to StackOverflowException.


Holy shit, how could this be happening?

I changed literally nothing and everything is broken all of a sudden.

4:05pm. Nevermind this. I wanted to fix a TyWhile peval bug that I spotted while working on v0.2, but for some reason everything is broken despite me not changing things from 11 months ago.

I do not feel like debugging this.

...

The above is what I used as the message, but I decided to stash the changes. First time using that feature. Quite nice.

...At any rate the bug does not matter. I got massively distracted.

Let me get back on track.

So, my conclusion is that `let d = {d with seq=ResizeArray(); i=ref !d.i}` is right.

Literally every use of `ev_seq` ammended the cse on its own. Come to think of it...I need to make sure to ammend...

4:10pm. Actually, no, even if I leave the tags like this in join points it would be an interesting depth measure.

But if at some point I want to compare if/case branches for equality in order to optimize them during codegen, this will also work.

I do not have to worry about it.

4:15pm. Now that this has been decided let me move on.

...The nan guards are fine as they are.

let inline list_test all_or_n (stack_size,bind,on_succ,on_fail) =
    let inline on_fail() = ev d on_fail
    match v bind with
    | TyList l ->
        if all_or_n then // all
            let rec loop d = function
                | 0, [] -> ev d on_succ
                | _, [] -> on_fail()
                | i, x :: x' -> loop (push_var x d) (i-1,x')
            loop d (stack_size,l)
        else // n
            let rec loop d = function
                | 1, l -> ev (push_var (TyList l) d) on_succ
                | i, x :: x' -> loop (push_var x d) (i-1,x')
                | _, [] -> on_fail()
            loop d (stack_size,l)
    | _ -> on_fail()

Since I no longer have tuples, I do not need this anymore. This is going out. I'll have to reimplement the test from scratch, but it should be easy.

let rec apply d = function
    | TyFunction(body,stack_size,env), b ->
        let d = {d with env_global=env; env_stack=Array.zeroCreate stack_size; env_stack_ptr=0}
        ev (push_var b d) body
    | TyRecFunction(body,stack_size,env) & a, b ->
        let d = {d with env_global=env; env_stack=Array.zeroCreate stack_size; env_stack_ptr=0}
        ev (push_var b d |> push_var a) body
    | TyMap l, TyKeyword(keyword,_) ->
        match Map.tryFind keyword l with
        | Some a -> a
        | None -> raise_type_error d <| sprintf "The record does not have the field %s." (keyword_to_string keyword)
    | TyMap _, b -> raise_type_error d <| sprintf "The second argument to a record application is not a keyword.\nGot: %s" (show_typed_data b)
    | TyObject(dict,env) & a, TyKeyword(keyword,_) & b ->
        match dict.TryGetValue keyword with
        | true, (body, stack_size) ->
            let d = {d with env_global=env; env_stack=Array.zeroCreate stack_size; env_stack_ptr=0}
            ev (push_var a d |> push_var b) body
        | false, _ -> raise_type_error d <| sprintf "The object does not have the receiver for `%s`." (keyword_to_string keyword)
    | TyObject(dict,env) & a, b ->
        match dict.TryGetValue keyword_apply with
        | true, (body, stack_size) ->
            let d = {d with env_global=env; env_stack=Array.zeroCreate stack_size; env_stack_ptr=0}
            ev (push_var a d |> push_var (TyKeyword(keyword_apply,[|b|]))) body
        | false, _ -> raise_type_error d <| sprintf "The second argument to an object application is not a keyword nor is there a receiver for `apply:`.\nGot: %s" (show_typed_data b)
    | (TyV(T(_,LayoutT _)) | TyT(LayoutT _)) & a, b -> apply d (layout_to_none d a, b)
    | (TyV(T(_,TermCastedFunctionT(clo_arg_ty,clo_ret_ty))) | TyT(TermCastedFunctionT(clo_arg_ty,clo_ret_ty))) & a, b ->
        let b_ty = type_get b
        if clo_arg_ty <> b_ty then raise_type_error d <| sprintf "Cannot apply an argument of type %s to closure (%s => %s)." (show_ty b_ty) (show_ty clo_arg_ty) (show_ty clo_ret_ty)
        else push_op_no_rewrite d Apply (TyList [a;b]) clo_ret_ty
    | a, _ -> raise_type_error d <| sprintf "The first argument provided cannot be applied.\nGot: %s" (show_typed_data a)

Here is apply.

4:40pm. Had to take a break. I'll leave apply for later as it won't be too challenging.

| (TyV(T(_,LayoutT _)) | TyT(LayoutT _)) & a, b -> apply d (layout_to_none d a, b)


So this is why I had that CSE check in `layout_to_none`. Now I remember.

This time I think I will play it straightforwardly instead.

5pm.

match x with
| V x -> v x
| Value x -> TyValue x
| Inline(on_succ,data) ->
    let d =
        {d with
            env_global_type=Array.map vt data.type'.free_vars
            env_global_value=Array.map v data.value.free_vars
            env_stack_type=Array.zeroCreate data.type'.stack_size
            env_stack_type_ptr=0
            env_stack_value=Array.zeroCreate data.value.stack_size
            env_stack_value_ptr=0
            }
    ev d on_succ
| Inl(on_succ,data) -> TyFunction(on_succ,data.type'.stack_size,Array.map vt data.type'.free_vars,data.value.stack_size,Array.map v data.value.free_vars,false)
| Forall(on_succ,data) -> TyFunction(on_succ,data.type'.stack_size,Array.map vt data.type'.free_vars,data.value.stack_size,Array.map v data.value.free_vars,true)
| Glob(e) -> ev d !e
| Let(bind,on_succ) -> ev (push_value_var (ev d bind) d) on_succ
| RecBlock(l,on_succ) ->

Lot of stuff in here this time.

What I am going to do now is try and see whether I can get the rec block done.

| Inl(on_succ,data) -> TyFunction(on_succ,data.type'.stack_size,Array.map vt data.type'.free_vars,data.value.stack_size,Array.map v data.value.free_vars,false)
| Forall(on_succ,data) -> TyFunction(on_succ,data.type'.stack_size,Array.map vt data.type'.free_vars,data.value.stack_size,Array.map v data.value.free_vars,true)

Ouf, I might have made a mistake by making `Inl` and `Forall` separate.

5:10pm.

| RecBlock(l,on_succ) ->
    let l =
        Array.fold (fun s -> function
            | Inl(on_succ,data) -> TyFunction(on_succ,data.type'.stack_size,Array.zeroCreate<_> data.type'.fre,data.value.stack_size,Array.map v data.value.free_vars,false)
            | Forall(on_succ,data) -> TyFunction(on_succ,data.type'.stack_size,Array.map vt data.type'.free_vars,data.value.stack_size,Array.map v data.value.free_vars,true)
            )

5:40pm.

| RecBlock(l,on_succ) ->
    let l,d =
        let function' is_forall on_succ (data : ExprData) =
            TyFunction(on_succ,
                data.type'.stack_size,Array.zeroCreate<_> data.type'.free_vars.Length,
                data.value.stack_size,Array.zeroCreate<_> data.value.free_vars.Length,
                is_forall)
        Array.mapFold (fun d x ->
            let data,x =
                match x with
                | Inl(on_succ,data) -> data,function' false on_succ data
                | Forall(on_succ,data) -> data,function' true on_succ data
                | _ -> raise_type_error d "Compiler error: Expected a inl or a forall in the recursive block."
            (data,x), push_value_var x d
            ) d l
    l |> Array.iter (function
        | data,TyFunction(_,_,c,_,e,_) ->
            data.type'.free_vars |> Array.iteri (fun i x -> c.[i] <- vt x) // Don't mind the lack of d being passed to vt and v.
            data.value.free_vars |> Array.iteri (fun i x -> e.[i] <- v x)
        | _ -> failwith "impossible"
        )
    ev d on_succ

Finally done with the recursive block. I had to think about this one for a bit.

5:45pm. One of the greatest masterpieces of the new Spiral is right here.

5:50pm. I do not feel like doing anything else for the day.

At the rate I am going I should be done with the partial evaluator by the end of the month with a bit time to spare."

---
## [Xeb3rnium/DevRan](https://github.com/Xeb3rnium/DevRan)@[5d12f823fb...](https://github.com/Xeb3rnium/DevRan/commit/5d12f823fbae7c4ff049534c6a1f03e1d358382e)
#### Friday 2020-01-24 17:40:00 by Xeb3rnium

Upload first attempt at malware

Rest in peace Jetro, love you my furry friend 🐰 (2012-2016)

---
## [skyblockz/pricecheckbot](https://github.com/skyblockz/pricecheckbot)@[1db39ccdd1...](https://github.com/skyblockz/pricecheckbot/commit/1db39ccdd11dc54b02752ca44068f8077cba1320)
#### Friday 2020-01-24 18:00:16 by skyblockz

Database update                     Changes: Changed the lower bound price of luck_v to 5089.3, responsible user: Automated Price Update Changed the upper bound price of luck_v to 5089.3, responsible user: Automated Price Update Changed the lower bound price of fire_talisman to 28830.6, responsible user: Automated Price Update Changed the upper bound price of fire_talisman to 28830.6, responsible user: Automated Price Update Changed the lower bound price of grappling_hook to 9582.9, responsible user: Automated Price Update Changed the upper bound price of grappling_hook to 9582.9, responsible user: Automated Price Update Changed the lower bound price of grappling_hook to 11488.0, responsible user: Automated Price Update Changed the upper bound price of grappling_hook to 11488.0, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 532148.6, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 532148.6, responsible user: Automated Price Update Changed the lower bound price of unstable_dragon_leggings to 983671.9, responsible user: Automated Price Update Changed the upper bound price of unstable_dragon_leggings to 983671.9, responsible user: Automated Price Update Changed the lower bound price of young_dragon_fragment to 3634.0666666666666, responsible user: Automated Price Update Changed the upper bound price of young_dragon_fragment to 3634.0666666666666, responsible user: Automated Price Update Changed the lower bound price of tarantula_web to 136.3234375, responsible user: Automated Price Update Changed the upper bound price of tarantula_web to 136.3234375, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 477458.1, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 477458.1, responsible user: Automated Price Update Changed the lower bound price of magical_water_bucket to 45.9, responsible user: Automated Price Update Changed the upper bound price of magical_water_bucket to 45.9, responsible user: Automated Price Update Changed the lower bound price of enchanted_lava_bucket to 258241.8, responsible user: Automated Price Update Changed the upper bound price of enchanted_lava_bucket to 258241.8, responsible user: Automated Price Update Changed the lower bound price of tarantula_web to 123.5984375, responsible user: Automated Price Update Changed the upper bound price of tarantula_web to 123.5984375, responsible user: Automated Price Update Changed the lower bound price of enchanted_jungle_wood to 1274.7125, responsible user: Automated Price Update Changed the upper bound price of enchanted_jungle_wood to 1274.7125, responsible user: Automated Price Update Changed the lower bound price of enchanted_sponge to 12633.425, responsible user: Automated Price Update Changed the upper bound price of enchanted_sponge to 12633.425, responsible user: Automated Price Update Changed the lower bound price of tarantula_web to 112.0984375, responsible user: Automated Price Update Changed the upper bound price of tarantula_web to 112.0984375, responsible user: Automated Price Update Changed the lower bound price of enchanted_pork to 2337.3875, responsible user: Automated Price Update Changed the upper bound price of enchanted_pork to 2337.3875, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone_block to 75322.6, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone_block to 75322.6, responsible user: Automated Price Update Changed the lower bound price of tarantula_web to 101.7984375, responsible user: Automated Price Update Changed the upper bound price of tarantula_web to 101.7984375, responsible user: Automated Price Update Changed the lower bound price of grappling_hook to 10868.2, responsible user: Automated Price Update Changed the upper bound price of grappling_hook to 10868.2, responsible user: Automated Price Update Changed the lower bound price of ender_chestplate to 18988.7, responsible user: Automated Price Update Changed the upper bound price of ender_chestplate to 18988.7, responsible user: Automated Price Update Changed the lower bound price of wood_singularity to 3769511.0, responsible user: Automated Price Update Changed the upper bound price of wood_singularity to 3769511.0, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 87106.0, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 87106.0, responsible user: Automated Price Update Changed the lower bound price of enchanted_cobblestone to 873.0125, responsible user: Automated Price Update Changed the upper bound price of enchanted_cobblestone to 873.0125, responsible user: Automated Price Update Changed the lower bound price of protector_dragon_fragment to 531.5666666666667, responsible user: Automated Price Update Changed the upper bound price of protector_dragon_fragment to 531.5666666666667, responsible user: Automated Price Update Changed the lower bound price of old_dragon_chestplate to 212036.4, responsible user: Automated Price Update Changed the upper bound price of old_dragon_chestplate to 212036.4, responsible user: Automated Price Update Changed the lower bound price of enchanted_bone to 1404.5875, responsible user: Automated Price Update Changed the upper bound price of enchanted_bone to 1404.5875, responsible user: Automated Price Update Changed the lower bound price of tarantula_web to 92.4984375, responsible user: Automated Price Update Changed the upper bound price of tarantula_web to 92.4984375, responsible user: Automated Price Update Changed the lower bound price of wolf_talisman to 35426.4, responsible user: Automated Price Update Changed the upper bound price of wolf_talisman to 35426.4, responsible user: Automated Price Update Changed the lower bound price of tarantula_web to 94.1375, responsible user: Automated Price Update Changed the upper bound price of tarantula_web to 94.1375, responsible user: Automated Price Update Changed the lower bound price of enchanted_bone to 1429.4125, responsible user: Automated Price Update Changed the upper bound price of enchanted_bone to 1429.4125, responsible user: Automated Price Update Changed the lower bound price of enchanted_ender_pearl to 230.8, responsible user: Automated Price Update Changed the upper bound price of enchanted_ender_pearl to 230.8, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_fragment to 19771.0, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_fragment to 19771.0, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_chestplate to 2252074.4, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_chestplate to 2252074.4, responsible user: Automated Price Update Changed the lower bound price of unstable_dragon_leggings to 962804.7, responsible user: Automated Price Update Changed the upper bound price of unstable_dragon_leggings to 962804.7, responsible user: Automated Price Update Changed the lower bound price of crystal_fragment to 14580.4, responsible user: Automated Price Update Changed the upper bound price of crystal_fragment to 14580.4, responsible user: Automated Price Update Changed the lower bound price of old_dragon_leggings to 212673.3, responsible user: Automated Price Update Changed the upper bound price of old_dragon_leggings to 212673.3, responsible user: Automated Price Update Changed the lower bound price of magical_water_bucket to 45.3, responsible user: Automated Price Update Changed the upper bound price of magical_water_bucket to 45.3, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 91620.4, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 91620.4, responsible user: Automated Price Update Changed the lower bound price of enchanted_string to 1464.91875, responsible user: Automated Price Update Changed the upper bound price of enchanted_string to 1464.91875, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 535155.8, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 535155.8, responsible user: Automated Price Update Changed the lower bound price of unstable_dragon_fragment to 10488.5, responsible user: Automated Price Update Changed the upper bound price of unstable_dragon_fragment to 10488.5, responsible user: Automated Price Update Changed the lower bound price of golden_tooth to 134679.1, responsible user: Automated Price Update Changed the upper bound price of golden_tooth to 134679.1, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone_block to 79196.9, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone_block to 79196.9, responsible user: Automated Price Update Changed the lower bound price of tarantula_web to 91.8875, responsible user: Automated Price Update Changed the upper bound price of tarantula_web to 91.8875, responsible user: Automated Price Update Changed the lower bound price of lily_pad to 594.61875, responsible user: Automated Price Update Changed the upper bound price of lily_pad to 594.61875, responsible user: Automated Price Update Changed the lower bound price of enchanted_pork to 2373.13125, responsible user: Automated Price Update Changed the upper bound price of enchanted_pork to 2373.13125, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_fragment to 17827.4, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_fragment to 17827.4, responsible user: Automated Price Update Changed the lower bound price of protector_dragon_fragment to 526.8666666666667, responsible user: Automated Price Update Changed the upper bound price of protector_dragon_fragment to 526.8666666666667, responsible user: Automated Price Update Changed the lower bound price of hunk_of_ice to 445.678125, responsible user: Automated Price Update Changed the upper bound price of hunk_of_ice to 445.678125, responsible user: Automated Price Update Changed the lower bound price of tarantula_web to 83.48125, responsible user: Automated Price Update Changed the upper bound price of tarantula_web to 83.48125, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 533862.4, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 533862.4, responsible user: Automated Price Update Changed the lower bound price of revenant_flesh to 9.771153846153847, responsible user: Automated Price Update Changed the upper bound price of revenant_flesh to 9.771153846153847, responsible user: Automated Price Update Changed the lower bound price of enchanted_baked_potato to 85484.3, responsible user: Automated Price Update Changed the upper bound price of enchanted_baked_potato to 85484.3, responsible user: Automated Price Update Changed the lower bound price of hunk_of_blue_ice to 21408.3, responsible user: Automated Price Update Changed the upper bound price of hunk_of_blue_ice to 21408.3, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_chestplate to 2239617.0, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_chestplate to 2239617.0, responsible user: Automated Price Update Changed the lower bound price of grappling_hook to 10846.1, responsible user: Automated Price Update Changed the upper bound price of grappling_hook to 10846.1, responsible user: Automated Price Update Changed the lower bound price of spider_talisman to 91024.9, responsible user: Automated Price Update Changed the upper bound price of spider_talisman to 91024.9, responsible user: Automated Price Update Changed the lower bound price of protector_dragon_chestplate to 108155.8, responsible user: Automated Price Update Changed the upper bound price of protector_dragon_chestplate to 108155.8, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone_block to 80402.45, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone_block to 80402.45, responsible user: Automated Price Update Changed the lower bound price of unstable_dragon_fragment to 10882.327272727274, responsible user: Automated Price Update Changed the upper bound price of unstable_dragon_fragment to 10882.327272727274, responsible user: Automated Price Update Changed the lower bound price of tarantula_web to 75.9984375, responsible user: Automated Price Update Changed the upper bound price of tarantula_web to 75.9984375, responsible user: Automated Price Update Changed the lower bound price of remnant_of_the_eye to 569.6, responsible user: Automated Price Update Changed the upper bound price of remnant_of_the_eye to 569.6, responsible user: Automated Price Update Changed the lower bound price of red_gift to 46803.1, responsible user: Automated Price Update Changed the upper bound price of red_gift to 46803.1, responsible user: Automated Price Update Changed the lower bound price of enchanted_sponge to 13310.725, responsible user: Automated Price Update Changed the upper bound price of enchanted_sponge to 13310.725, responsible user: Automated Price Update Changed the lower bound price of white_gift to 2563.853125, responsible user: Automated Price Update Changed the upper bound price of white_gift to 2563.853125, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 89933.4, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 89933.4, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 533476.2, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 533476.2, responsible user: Automated Price Update Changed the lower bound price of tarantula_web to 69.18125, responsible user: Automated Price Update Changed the upper bound price of tarantula_web to 69.18125, responsible user: Automated Price Update Changed the lower bound price of wise_dragon_fragment to 1391.5333333333333, responsible user: Automated Price Update Changed the upper bound price of wise_dragon_fragment to 1391.5333333333333, responsible user: Automated Price Update Changed the lower bound price of enchanted_ender_pearl to 227.7, responsible user: Automated Price Update Changed the upper bound price of enchanted_ender_pearl to 227.7, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 536478.6, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 536478.6, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 532880.7, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 532880.7, responsible user: Automated Price Update Changed the lower bound price of enchanted_eye_of_ender to 6756.4671875, responsible user: Automated Price Update Changed the upper bound price of enchanted_eye_of_ender to 6756.4671875, responsible user: Automated Price Update Changed the lower bound price of young_dragon_chestplate to 545776.0, responsible user: Automated Price Update Changed the upper bound price of young_dragon_chestplate to 545776.0, responsible user: Automated Price Update Changed the lower bound price of ender_pearl to 10.1, responsible user: Automated Price Update Changed the upper bound price of ender_pearl to 10.1, responsible user: Automated Price Update Changed the lower bound price of enchanted_ender_pearl to 224.9, responsible user: Automated Price Update Changed the upper bound price of enchanted_ender_pearl to 224.9, responsible user: Automated Price Update Changed the lower bound price of remnant_of_the_eye to 562.6, responsible user: Automated Price Update Changed the upper bound price of remnant_of_the_eye to 562.6, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone_block to 81487.5, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone_block to 81487.5, responsible user: Automated Price Update Changed the lower bound price of enchanted_cobblestone to 851.825, responsible user: Automated Price Update Changed the upper bound price of enchanted_cobblestone to 851.825, responsible user: Automated Price Update Changed the lower bound price of wise_dragon_leggings to 421050.3, responsible user: Automated Price Update Changed the upper bound price of wise_dragon_leggings to 421050.3, responsible user: Automated Price Update Changed the lower bound price of superior_dragon_fragment to 160657.0, responsible user: Automated Price Update Changed the upper bound price of superior_dragon_fragment to 160657.0, responsible user: Automated Price Update Changed the lower bound price of enchanted_clay to 557.0796875, responsible user: Automated Price Update Changed the upper bound price of enchanted_clay to 557.0796875, responsible user: Automated Price Update Changed the lower bound price of enchanted_flint to 1299.535, responsible user: Automated Price Update Changed the upper bound price of enchanted_flint to 1299.535, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 480408.1, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 480408.1, responsible user: Automated Price Update Changed the lower bound price of enchanted_ender_pearl to 222.4, responsible user: Automated Price Update Changed the upper bound price of enchanted_ender_pearl to 222.4, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 530592.6, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 530592.6, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 89440.1, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 89440.1, responsible user: Automated Price Update Changed the lower bound price of old_dragon_fragment to 1160.1666666666665, responsible user: Automated Price Update Changed the upper bound price of old_dragon_fragment to 1160.1666666666665, responsible user: Automated Price Update Changed the lower bound price of lapis_armor_chestplate to 1673.0, responsible user: Automated Price Update Changed the upper bound price of lapis_armor_chestplate to 1673.0, responsible user: Automated Price Update Changed the lower bound price of clay to 59.5796875, responsible user: Automated Price Update Changed the upper bound price of clay to 59.5796875, responsible user: Automated Price Update Changed the lower bound price of superior_dragon_leggings to 11523282.6, responsible user: Automated Price Update Changed the upper bound price of superior_dragon_leggings to 11523282.6, responsible user: Automated Price Update Changed the lower bound price of tarantula_silk to 106049.71666666667, responsible user: Automated Price Update Changed the upper bound price of tarantula_silk to 106049.71666666667, responsible user: Automated Price Update Changed the lower bound price of feather_artifact to 317263.2, responsible user: Automated Price Update Changed the upper bound price of feather_artifact to 317263.2, responsible user: Automated Price Update Changed the lower bound price of enchanted_dark_oak_wood to 970.6, responsible user: Automated Price Update Changed the upper bound price of enchanted_dark_oak_wood to 970.6, responsible user: Automated Price Update Changed the lower bound price of hunk_of_ice to 496.6953125, responsible user: Automated Price Update Changed the upper bound price of hunk_of_ice to 496.6953125, responsible user: Automated Price Update Changed the lower bound price of giant_killer_v to 4415.9, responsible user: Automated Price Update Changed the upper bound price of giant_killer_v to 4415.9, responsible user: Automated Price Update Changed the lower bound price of growth_v to 26787.4, responsible user: Automated Price Update Changed the upper bound price of growth_v to 26787.4, responsible user: Automated Price Update Changed the lower bound price of miner_chestplate to 2114.5, responsible user: Automated Price Update Changed the upper bound price of miner_chestplate to 2114.5, responsible user: Automated Price Update Changed the lower bound price of young_dragon_boots to 285034.7, responsible user: Automated Price Update Changed the upper bound price of young_dragon_boots to 285034.7, responsible user: Automated Price Update Changed the lower bound price of tarantula_helmet to 546639.9, responsible user: Automated Price Update Changed the upper bound price of tarantula_helmet to 546639.9, responsible user: Automated Price Update Changed the lower bound price of ender_pearl to 10.1, responsible user: Automated Price Update Changed the upper bound price of ender_pearl to 10.1, responsible user: Automated Price Update Changed the lower bound price of grand_experience_bottle to 4470.85, responsible user: Automated Price Update Changed the upper bound price of grand_experience_bottle to 4470.85, responsible user: Automated Price Update Changed the lower bound price of farmer_boots to 187661.4, responsible user: Automated Price Update Changed the upper bound price of farmer_boots to 187661.4, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 529533.3, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 529533.3, responsible user: Automated Price Update Changed the lower bound price of tarantula_web to 73.2375, responsible user: Automated Price Update Changed the upper bound price of tarantula_web to 73.2375, responsible user: Automated Price Update Changed the lower bound price of enchanted_diamond to 1365.8, responsible user: Automated Price Update Changed the upper bound price of enchanted_diamond to 1365.8, responsible user: Automated Price Update Changed the lower bound price of young_dragon_helmet to 484976.5, responsible user: Automated Price Update Changed the upper bound price of young_dragon_helmet to 484976.5, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 534080.0, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 534080.0, responsible user: Automated Price Update Changed the lower bound price of aspect_of_the_end to 209558.2, responsible user: Automated Price Update Changed the upper bound price of aspect_of_the_end to 209558.2, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 531672.0, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 531672.0, responsible user: Automated Price Update Changed the lower bound price of spooky_chestplate to 737598.4, responsible user: Automated Price Update Changed the upper bound price of spooky_chestplate to 737598.4, responsible user: Automated Price Update Changed the lower bound price of old_dragon_fragment to 1060.7666666666667, responsible user: Automated Price Update Changed the upper bound price of old_dragon_fragment to 1060.7666666666667, responsible user: Automated Price Update Changed the lower bound price of old_dragon_boots to 154612.5, responsible user: Automated Price Update Changed the upper bound price of old_dragon_boots to 154612.5, responsible user: Automated Price Update Changed the lower bound price of enchanted_emerald_block to 178398.8, responsible user: Automated Price Update Changed the upper bound price of enchanted_emerald_block to 178398.8, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 530504.8, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 530504.8, responsible user: Automated Price Update Changed the lower bound price of young_dragon_fragment to 3289.8666666666663, responsible user: Automated Price Update Changed the upper bound price of young_dragon_fragment to 3289.8666666666663, responsible user: Automated Price Update Changed the lower bound price of enchanted_gold to 1112.0625, responsible user: Automated Price Update Changed the upper bound price of enchanted_gold to 1112.0625, responsible user: Automated Price Update Changed the lower bound price of hunk_of_blue_ice to 21267.5, responsible user: Automated Price Update Changed the upper bound price of hunk_of_blue_ice to 21267.5, responsible user: Automated Price Update Changed the lower bound price of zombie_ring to 20597.0, responsible user: Automated Price Update Changed the upper bound price of zombie_ring to 20597.0, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 87996.1, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 87996.1, responsible user: Automated Price Update Changed the lower bound price of tarantula_web to 66.7984375, responsible user: Automated Price Update Changed the upper bound price of tarantula_web to 66.7984375, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone_block to 79338.8, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone_block to 79338.8, responsible user: Automated Price Update Changed the lower bound price of remnant_of_the_eye to 556.3, responsible user: Automated Price Update Changed the upper bound price of remnant_of_the_eye to 556.3, responsible user: Automated Price Update Changed the lower bound price of enchanted_cobblestone to 922.85, responsible user: Automated Price Update Changed the upper bound price of enchanted_cobblestone to 922.85, responsible user: Automated Price Update Changed the lower bound price of spider_talisman to 89948.1, responsible user: Automated Price Update Changed the upper bound price of spider_talisman to 89948.1, responsible user: Automated Price Update Changed the lower bound price of protector_dragon_leggings to 192413.7, responsible user: Automated Price Update Changed the upper bound price of protector_dragon_leggings to 192413.7, responsible user: Automated Price Update Changed the lower bound price of old_dragon_chestplate to 196582.8, responsible user: Automated Price Update Changed the upper bound price of old_dragon_chestplate to 196582.8, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 535454.3, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 535454.3, responsible user: Automated Price Update Changed the lower bound price of enchanted_snow_block to 1034.7390625, responsible user: Automated Price Update Changed the upper bound price of enchanted_snow_block to 1034.7390625, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 476450.6, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 476450.6, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 532908.9, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 532908.9, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 474805.4, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 474805.4, responsible user: Automated Price Update Changed the lower bound price of superior_dragon_helmet to 8341434.9, responsible user: Automated Price Update Changed the upper bound price of superior_dragon_helmet to 8341434.9, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 86696.5, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 86696.5, responsible user: Automated Price Update Changed the lower bound price of enchanted_raw_chicken to 1980.390625, responsible user: Automated Price Update Changed the upper bound price of enchanted_raw_chicken to 1980.390625, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 85526.8, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 85526.8, responsible user: Automated Price Update Changed the lower bound price of young_dragon_fragment to 3137.65, responsible user: Automated Price Update Changed the upper bound price of young_dragon_fragment to 3137.65, responsible user: Automated Price Update Changed the lower bound price of enchanted_lapis_block to 89999.9, responsible user: Automated Price Update Changed the upper bound price of enchanted_lapis_block to 89999.9, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone_block to 77404.9, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone_block to 77404.9, responsible user: Automated Price Update Changed the lower bound price of superior_dragon_fragment to 163106.3, responsible user: Automated Price Update Changed the upper bound price of superior_dragon_fragment to 163106.3, responsible user: Automated Price Update Changed the lower bound price of giant_killer_vi to 4554977.5, responsible user: Automated Price Update Changed the upper bound price of giant_killer_vi to 4554977.5, responsible user: Automated Price Update Changed the lower bound price of grand_experience_bottle to 4503.8, responsible user: Automated Price Update Changed the upper bound price of grand_experience_bottle to 4503.8, responsible user: Automated Price Update Changed the lower bound price of teleport_pad to 6872.4, responsible user: Automated Price Update Changed the upper bound price of teleport_pad to 6872.4, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 471408.2, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 471408.2, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 537118.0, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 537118.0, responsible user: Automated Price Update Changed the lower bound price of golden_tooth to 133774.95, responsible user: Automated Price Update Changed the upper bound price of golden_tooth to 133774.95, responsible user: Automated Price Update Changed the lower bound price of enchanted_iron to 905.55, responsible user: Automated Price Update Changed the upper bound price of enchanted_iron to 905.55, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 84474.1, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 84474.1, responsible user: Automated Price Update Changed the lower bound price of aspect_of_the_dragons to 5915263.7, responsible user: Automated Price Update Changed the upper bound price of aspect_of_the_dragons to 5915263.7, responsible user: Automated Price Update Changed the lower bound price of old_dragon_fragment to 967.2, responsible user: Automated Price Update Changed the upper bound price of old_dragon_fragment to 967.2, responsible user: Automated Price Update Changed the lower bound price of superior_dragon_chestplate to 13303168.4, responsible user: Automated Price Update Changed the upper bound price of superior_dragon_chestplate to 13303168.4, responsible user: Automated Price Update Changed the lower bound price of crystal_fragment to 14222.4, responsible user: Automated Price Update Changed the upper bound price of crystal_fragment to 14222.4, responsible user: Automated Price Update Changed the lower bound price of old_dragon_fragment to 877.6875, responsible user: Automated Price Update Changed the upper bound price of old_dragon_fragment to 877.6875, responsible user: Automated Price Update Changed the lower bound price of enchanted_pumpkin to 689.4, responsible user: Automated Price Update Changed the upper bound price of enchanted_pumpkin to 689.4, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 536406.2, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 536406.2, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 472567.4, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 472567.4, responsible user: Automated Price Update Changed the lower bound price of haste_ring to 227500.9, responsible user: Automated Price Update Changed the upper bound price of haste_ring to 227500.9, responsible user: Automated Price Update Changed the lower bound price of enchanted_gold to 1094.65, responsible user: Automated Price Update Changed the upper bound price of enchanted_gold to 1094.65, responsible user: Automated Price Update Changed the lower bound price of young_dragon_fragment to 3621.9, responsible user: Automated Price Update Changed the upper bound price of young_dragon_fragment to 3621.9, responsible user: Automated Price Update Changed the lower bound price of enchanted_cobblestone to 986.85, responsible user: Automated Price Update Changed the upper bound price of enchanted_cobblestone to 986.85, responsible user: Automated Price Update Changed the lower bound price of protector_dragon_fragment to 496.35, responsible user: Automated Price Update Changed the upper bound price of protector_dragon_fragment to 496.35, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 83526.7, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 83526.7, responsible user: Automated Price Update Changed the lower bound price of ender_chestplate to 18838.8, responsible user: Automated Price Update Changed the upper bound price of ender_chestplate to 18838.8, responsible user: Automated Price Update Changed the lower bound price of enchanted_lapis_block to 85477.375, responsible user: Automated Price Update Changed the upper bound price of enchanted_lapis_block to 85477.375, responsible user: Automated Price Update Changed the lower bound price of crystal_fragment to 14254.95, responsible user: Automated Price Update Changed the upper bound price of crystal_fragment to 14254.95, responsible user: Automated Price Update Changed the lower bound price of critical_vi to 265416.2, responsible user: Automated Price Update Changed the upper bound price of critical_vi to 265416.2, responsible user: Automated Price Update Changed the lower bound price of white_gift to 2557.5, responsible user: Automated Price Update Changed the upper bound price of white_gift to 2557.5, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 540265.6, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 540265.6, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_fragment to 18689.7, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_fragment to 18689.7, responsible user: Automated Price Update Changed the lower bound price of green_gift to 3027.9, responsible user: Automated Price Update Changed the upper bound price of green_gift to 3027.9, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 82674.0, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 82674.0, responsible user: Automated Price Update Changed the lower bound price of aspect_of_the_dragons to 5944737.3, responsible user: Automated Price Update Changed the upper bound price of aspect_of_the_dragons to 5944737.3, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 539239.0, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 539239.0, responsible user: Automated Price Update Changed the lower bound price of budget_hopper to 10843.7, responsible user: Automated Price Update Changed the upper bound price of budget_hopper to 10843.7, responsible user: Automated Price Update Changed the lower bound price of wise_dragon_fragment to 1352.4, responsible user: Automated Price Update Changed the upper bound price of wise_dragon_fragment to 1352.4, responsible user: Automated Price Update Changed the lower bound price of old_dragon_fragment to 802.7444444444444, responsible user: Automated Price Update Changed the upper bound price of old_dragon_fragment to 802.7444444444444, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 470310.7, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 470310.7, responsible user: Automated Price Update Changed the lower bound price of enchanted_glowstone_dust to 1433.7375, responsible user: Automated Price Update Changed the upper bound price of enchanted_glowstone_dust to 1433.7375, responsible user: Automated Price Update Changed the lower bound price of enchanted_glowstone_dust to 1446.65, responsible user: Automated Price Update Changed the upper bound price of enchanted_glowstone_dust to 1446.65, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 536315.1, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 536315.1, responsible user: Automated Price Update Changed the lower bound price of young_dragon_fragment to 3284.7, responsible user: Automated Price Update Changed the upper bound price of young_dragon_fragment to 3284.7, responsible user: Automated Price Update Changed the lower bound price of enchanted_dark_oak_wood to 981.3125, responsible user: Automated Price Update Changed the upper bound price of enchanted_dark_oak_wood to 981.3125, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 540183.6, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 540183.6, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_helmet to 1011966.4, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_helmet to 1011966.4, responsible user: Automated Price Update Changed the lower bound price of protector_dragon_fragment to 524.1666666666667, responsible user: Automated Price Update Changed the upper bound price of protector_dragon_fragment to 524.1666666666667, responsible user: Automated Price Update Changed the lower bound price of clay to 61.865625, responsible user: Automated Price Update Changed the upper bound price of clay to 61.865625, responsible user: Automated Price Update Changed the lower bound price of young_dragon_fragment to 3289.5333333333338, responsible user: Automated Price Update Changed the upper bound price of young_dragon_fragment to 3289.5333333333338, responsible user: Automated Price Update Changed the lower bound price of enchanted_lapis_block to 80762.93333333333, responsible user: Automated Price Update Changed the upper bound price of enchanted_lapis_block to 80762.93333333333, responsible user: Automated Price Update Changed the lower bound price of growth_v to 27167.8, responsible user: Automated Price Update Changed the upper bound price of growth_v to 27167.8, responsible user: Automated Price Update Changed the lower bound price of enchanted_ender_pearl to 230.61875, responsible user: Automated Price Update Changed the upper bound price of enchanted_ender_pearl to 230.61875, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone_block to 75664.4, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone_block to 75664.4, responsible user: Automated Price Update Changed the lower bound price of young_dragon_boots to 279661.8, responsible user: Automated Price Update Changed the upper bound price of young_dragon_boots to 279661.8, responsible user: Automated Price Update Changed the lower bound price of young_dragon_fragment to 2985.6, responsible user: Automated Price Update Changed the upper bound price of young_dragon_fragment to 2985.6, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 81906.6, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 81906.6, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 539165.2, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 539165.2, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 81215.9, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 81215.9, responsible user: Automated Price Update Changed the lower bound price of tarantula_web to 60.9984375, responsible user: Automated Price Update Changed the upper bound price of tarantula_web to 60.9984375, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone_block to 74098.0, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone_block to 74098.0, responsible user: Automated Price Update Changed the lower bound price of looting_iv to 1268.8, responsible user: Automated Price Update Changed the upper bound price of looting_iv to 1268.8, responsible user: Automated Price Update Changed the lower bound price of enchanted_ender_pearl to 227.6, responsible user: Automated Price Update Changed the upper bound price of enchanted_ender_pearl to 227.6, responsible user: Automated Price Update Changed the lower bound price of enchanted_mutton to 3863.1625, responsible user: Automated Price Update Changed the upper bound price of enchanted_mutton to 3863.1625, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 473975.4, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 473975.4, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_helmet to 1029002.7, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_helmet to 1029002.7, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone_block to 73588.2, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone_block to 73588.2, responsible user: Automated Price Update Changed the lower bound price of enchanted_clay to 549.4, responsible user: Automated Price Update Changed the upper bound price of enchanted_clay to 549.4, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 535248.7, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 535248.7, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 534723.8, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 534723.8, responsible user: Automated Price Update Changed the lower bound price of enchanted_clay to 542.5, responsible user: Automated Price Update Changed the upper bound price of enchanted_clay to 542.5, responsible user: Automated Price Update Changed the lower bound price of superior_dragon_fragment to 167074.03333333333, responsible user: Automated Price Update Changed the upper bound price of superior_dragon_fragment to 167074.03333333333, responsible user: Automated Price Update Changed the lower bound price of sunflower to 2.7333333333333334, responsible user: Automated Price Update Changed the upper bound price of sunflower to 2.7333333333333334, responsible user: Automated Price Update Changed the lower bound price of end_stone_bow to 8553.3, responsible user: Automated Price Update Changed the upper bound price of end_stone_bow to 8553.3, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone_block to 72229.4, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone_block to 72229.4, responsible user: Automated Price Update Changed the lower bound price of diamond_spreading to 1138.7, responsible user: Automated Price Update Changed the upper bound price of diamond_spreading to 1138.7, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 538751.4, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 538751.4, responsible user: Automated Price Update Changed the lower bound price of enchanted_diamond_block to 210552.3, responsible user: Automated Price Update Changed the upper bound price of enchanted_diamond_block to 210552.3, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 537876.3, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 537876.3, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone_block to 71006.5, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone_block to 71006.5, responsible user: Automated Price Update Changed the lower bound price of old_dragon_boots to 149151.2, responsible user: Automated Price Update Changed the upper bound price of old_dragon_boots to 149151.2, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone_block to 69905.8, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone_block to 69905.8, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_fragment to 19220.7, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_fragment to 19220.7, responsible user: Automated Price Update Changed the lower bound price of enchanted_clay to 536.2, responsible user: Automated Price Update Changed the upper bound price of enchanted_clay to 536.2, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 481329.4, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 481329.4, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 542738.7, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 542738.7, responsible user: Automated Price Update Changed the lower bound price of enchanted_clay to 530.6, responsible user: Automated Price Update Changed the upper bound price of enchanted_clay to 530.6, responsible user: Automated Price Update Changed the lower bound price of enchanted_blaze_powder to 2842.9, responsible user: Automated Price Update Changed the upper bound price of enchanted_blaze_powder to 2842.9, responsible user: Automated Price Update Changed the lower bound price of hunk_of_ice to 563.921875, responsible user: Automated Price Update Changed the upper bound price of hunk_of_ice to 563.921875, responsible user: Automated Price Update Changed the lower bound price of enchanted_ender_pearl to 224.8, responsible user: Automated Price Update Changed the upper bound price of enchanted_ender_pearl to 224.8, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_leggings to 2078335.7, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_leggings to 2078335.7, responsible user: Automated Price Update Changed the lower bound price of purple_candy to 9757.6, responsible user: Automated Price Update Changed the upper bound price of purple_candy to 9757.6, responsible user: Automated Price Update Changed the lower bound price of enchanted_clay to 525.5, responsible user: Automated Price Update Changed the upper bound price of enchanted_clay to 525.5, responsible user: Automated Price Update Changed the lower bound price of hamster_wheel to 21718.862962962965, responsible user: Automated Price Update Changed the upper bound price of hamster_wheel to 21718.862962962965, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone_block to 68915.2, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone_block to 68915.2, responsible user: Automated Price Update Changed the lower bound price of enchanted_sugar_cane to 131604.0, responsible user: Automated Price Update Changed the upper bound price of enchanted_sugar_cane to 131604.0, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_fragment to 19598.6, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_fragment to 19598.6, responsible user: Automated Price Update Changed the lower bound price of undead_catalyst to 545.1, responsible user: Automated Price Update Changed the upper bound price of undead_catalyst to 545.1, responsible user: Automated Price Update Changed the lower bound price of enchanted_clay to 521.0, responsible user: Automated Price Update Changed the upper bound price of enchanted_clay to 521.0, responsible user: Automated Price Update Changed the lower bound price of crystal_fragment to 13579.5, responsible user: Automated Price Update Changed the upper bound price of crystal_fragment to 13579.5, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 541464.8, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 541464.8, responsible user: Automated Price Update Changed the lower bound price of tarantula_web to 55.7984375, responsible user: Automated Price Update Changed the upper bound price of tarantula_web to 55.7984375, responsible user: Automated Price Update Changed the lower bound price of enchanted_cobblestone to 1044.45, responsible user: Automated Price Update Changed the upper bound price of enchanted_cobblestone to 1044.45, responsible user: Automated Price Update Changed the lower bound price of unstable_dragon_fragment to 10318.8, responsible user: Automated Price Update Changed the upper bound price of unstable_dragon_fragment to 10318.8, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 544818.3, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 544818.3, responsible user: Automated Price Update Changed the lower bound price of enchanted_clay to 516.9, responsible user: Automated Price Update Changed the upper bound price of enchanted_clay to 516.9, responsible user: Automated Price Update Changed the lower bound price of enchanted_lava_bucket to 259417.6, responsible user: Automated Price Update Changed the upper bound price of enchanted_lava_bucket to 259417.6, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 483196.5, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 483196.5, responsible user: Automated Price Update Changed the lower bound price of enchanted_lava_bucket to 259925.8, responsible user: Automated Price Update Changed the upper bound price of enchanted_lava_bucket to 259925.8, responsible user: Automated Price Update Changed the lower bound price of aspect_of_the_dragons to 5971263.6, responsible user: Automated Price Update Changed the upper bound price of aspect_of_the_dragons to 5971263.6, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_helmet to 1018875.8, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_helmet to 1018875.8, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 543336.5, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 543336.5, responsible user: Automated Price Update Changed the lower bound price of giant_killer_vi to 4564479.8, responsible user: Automated Price Update Changed the upper bound price of giant_killer_vi to 4564479.8, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 83094.3, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 83094.3, responsible user: Automated Price Update Changed the lower bound price of tarantula_helmet to 521975.9, responsible user: Automated Price Update Changed the upper bound price of tarantula_helmet to 521975.9, responsible user: Automated Price Update Changed the lower bound price of young_dragon_boots to 289554.4, responsible user: Automated Price Update Changed the upper bound price of young_dragon_boots to 289554.4, responsible user: Automated Price Update Changed the lower bound price of enchanted_diamond_block to 209977.1, responsible user: Automated Price Update Changed the upper bound price of enchanted_diamond_block to 209977.1, responsible user: Automated Price Update Changed the lower bound price of spider_talisman to 91567.3, responsible user: Automated Price Update Changed the upper bound price of spider_talisman to 91567.3, responsible user: Automated Price Update Changed the lower bound price of ender_helmet to 27041.7, responsible user: Automated Price Update Changed the upper bound price of ender_helmet to 27041.7, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 76762.1, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 76762.1, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 546502.7, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 546502.7, responsible user: Automated Price Update Changed the lower bound price of ember_rod to 54470.6, responsible user: Automated Price Update Changed the upper bound price of ember_rod to 54470.6, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 543852.4, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 543852.4, responsible user: Automated Price Update Changed the lower bound price of ender_chestplate to 18104.9, responsible user: Automated Price Update Changed the upper bound price of ender_chestplate to 18104.9, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 542467.2, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 542467.2, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 74085.9, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 74085.9, responsible user: Automated Price Update Changed the lower bound price of protector_dragon_leggings to 184672.3, responsible user: Automated Price Update Changed the upper bound price of protector_dragon_leggings to 184672.3, responsible user: Automated Price Update Changed the lower bound price of tarantula_helmet to 470353.3, responsible user: Automated Price Update Changed the upper bound price of tarantula_helmet to 470353.3, responsible user: Automated Price Update Changed the lower bound price of enchanted_clay to 513.2, responsible user: Automated Price Update Changed the upper bound price of enchanted_clay to 513.2, responsible user: Automated Price Update Changed the lower bound price of growth_v to 25462.2, responsible user: Automated Price Update Changed the upper bound price of growth_v to 25462.2, responsible user: Automated Price Update Changed the lower bound price of white_gift to 2519.191304347826, responsible user: Automated Price Update Changed the upper bound price of white_gift to 2519.191304347826, responsible user: Automated Price Update Changed the lower bound price of enchanted_rabbit_foot to 3382.340625, responsible user: Automated Price Update Changed the upper bound price of enchanted_rabbit_foot to 3382.340625, responsible user: Automated Price Update Changed the lower bound price of growth_vi to 3147075.0, responsible user: Automated Price Update Changed the upper bound price of growth_vi to 3147075.0, responsible user: Automated Price Update Changed the lower bound price of wise_dragon_boots to 220137.5, responsible user: Automated Price Update Changed the upper bound price of wise_dragon_boots to 220137.5, responsible user: Automated Price Update Changed the lower bound price of fly_swatter to 151087.2, responsible user: Automated Price Update Changed the upper bound price of fly_swatter to 151087.2, responsible user: Automated Price Update Changed the lower bound price of compactor to 1387.1, responsible user: Automated Price Update Changed the upper bound price of compactor to 1387.1, responsible user: Automated Price Update Changed the lower bound price of enchanted_quartz to 1163.1, responsible user: Automated Price Update Changed the upper bound price of enchanted_quartz to 1163.1, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 544442.6, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 544442.6, responsible user: Automated Price Update Changed the lower bound price of enchanted_clay to 509.9, responsible user: Automated Price Update Changed the upper bound price of enchanted_clay to 509.9, responsible user: Automated Price Update Changed the lower bound price of glowstone to 17.9671875, responsible user: Automated Price Update Changed the upper bound price of glowstone to 17.9671875, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_fragment to 20138.7, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_fragment to 20138.7, responsible user: Automated Price Update Changed the lower bound price of ender_leggings to 27351.9, responsible user: Automated Price Update Changed the upper bound price of ender_leggings to 27351.9, responsible user: Automated Price Update Changed the lower bound price of scavenger_iv to 2414.3, responsible user: Automated Price Update Changed the upper bound price of scavenger_iv to 2414.3, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 546220.4, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 546220.4, responsible user: Automated Price Update Changed the lower bound price of teleport_pad to 7231.6, responsible user: Automated Price Update Changed the upper bound price of teleport_pad to 7231.6, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 478960.1, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 478960.1, responsible user: Automated Price Update Changed the lower bound price of enchanted_raw_chicken to 1829.275, responsible user: Automated Price Update Changed the upper bound price of enchanted_raw_chicken to 1829.275, responsible user: Automated Price Update Changed the lower bound price of enchanted_clay to 506.9, responsible user: Automated Price Update Changed the upper bound price of enchanted_clay to 506.9, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 541598.4, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 541598.4, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone_block to 68923.7, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone_block to 68923.7, responsible user: Automated Price Update Changed the lower bound price of enchanted_baked_potato to 85685.9, responsible user: Automated Price Update Changed the upper bound price of enchanted_baked_potato to 85685.9, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone_block to 68031.3, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone_block to 68031.3, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_fragment to 20424.8, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_fragment to 20424.8, responsible user: Automated Price Update Changed the lower bound price of teleport_pad to 6916.1, responsible user: Automated Price Update Changed the upper bound price of teleport_pad to 6916.1, responsible user: Automated Price Update Changed the lower bound price of purple_candy to 9680.2375, responsible user: Automated Price Update Changed the upper bound price of purple_candy to 9680.2375, responsible user: Automated Price Update Changed the lower bound price of enchanted_quartz to 1203.9390625, responsible user: Automated Price Update Changed the upper bound price of enchanted_quartz to 1203.9390625, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_leggings to 2077757.6, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_leggings to 2077757.6, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_fragment to 20705.3, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_fragment to 20705.3, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 537438.6, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 537438.6, responsible user: Automated Price Update Changed the lower bound price of unstable_dragon_fragment to 10286.9, responsible user: Automated Price Update Changed the upper bound price of unstable_dragon_fragment to 10286.9, responsible user: Automated Price Update Changed the lower bound price of enchanted_cobblestone to 1011.875, responsible user: Automated Price Update Changed the upper bound price of enchanted_cobblestone to 1011.875, responsible user: Automated Price Update

---
## [skyblockz/pricecheckbot](https://github.com/skyblockz/pricecheckbot)@[c627b5d39f...](https://github.com/skyblockz/pricecheckbot/commit/c627b5d39f2b738d209b3ac396642c4631f36224)
#### Friday 2020-01-24 18:05:20 by skyblockz

Database update                     Changes: Changed the lower bound price of tarantula_helmet to 434818.0, responsible user: Automated Price Update Changed the upper bound price of tarantula_helmet to 434818.0, responsible user: Automated Price Update Changed the lower bound price of young_dragon_boots to 276699.0, responsible user: Automated Price Update Changed the upper bound price of young_dragon_boots to 276699.0, responsible user: Automated Price Update Changed the lower bound price of enchanted_string to 1459.025, responsible user: Automated Price Update Changed the upper bound price of enchanted_string to 1459.025, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 478564.1, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 478564.1, responsible user: Automated Price Update Changed the lower bound price of white_gift to 2554.8, responsible user: Automated Price Update Changed the upper bound price of white_gift to 2554.8, responsible user: Automated Price Update Changed the lower bound price of enchanted_cobblestone to 993.8734375, responsible user: Automated Price Update Changed the upper bound price of enchanted_cobblestone to 993.8734375, responsible user: Automated Price Update Changed the lower bound price of ender_chestplate to 18305.8, responsible user: Automated Price Update Changed the upper bound price of ender_chestplate to 18305.8, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 68990.4, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 68990.4, responsible user: Automated Price Update Changed the lower bound price of silent_pearl to 717.2, responsible user: Automated Price Update Changed the upper bound price of silent_pearl to 717.2, responsible user: Automated Price Update Changed the lower bound price of ender_boots to 18326.4, responsible user: Automated Price Update Changed the upper bound price of ender_boots to 18326.4, responsible user: Automated Price Update Changed the lower bound price of magical_mushroom_soup to 17.4, responsible user: Automated Price Update Changed the upper bound price of magical_mushroom_soup to 17.4, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 480707.7, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 480707.7, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_helmet to 1009761.6, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_helmet to 1009761.6, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 534694.7, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 534694.7, responsible user: Automated Price Update Changed the lower bound price of grand_experience_bottle to 4873.246875, responsible user: Automated Price Update Changed the upper bound price of grand_experience_bottle to 4873.246875, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 62443.2, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 62443.2, responsible user: Automated Price Update Changed the lower bound price of silver_fang to 3674.28125, responsible user: Automated Price Update Changed the upper bound price of silver_fang to 3674.28125, responsible user: Automated Price Update Changed the lower bound price of enchanted_baked_potato to 85177.94, responsible user: Automated Price Update Changed the upper bound price of enchanted_baked_potato to 85177.94, responsible user: Automated Price Update Changed the lower bound price of enchanted_emerald to 1922.378125, responsible user: Automated Price Update Changed the upper bound price of enchanted_emerald to 1922.378125, responsible user: Automated Price Update Changed the lower bound price of ember_leggings to 1467.8, responsible user: Automated Price Update Changed the upper bound price of ember_leggings to 1467.8, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 539875.2, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 539875.2, responsible user: Automated Price Update Changed the lower bound price of clay to 68.2734375, responsible user: Automated Price Update Changed the upper bound price of clay to 68.2734375, responsible user: Automated Price Update Changed the lower bound price of grand_experience_bottle to 4924.9625, responsible user: Automated Price Update Changed the upper bound price of grand_experience_bottle to 4924.9625, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 64823.9, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 64823.9, responsible user: Automated Price Update Changed the lower bound price of old_dragon_fragment to 875.8333333333334, responsible user: Automated Price Update Changed the upper bound price of old_dragon_fragment to 875.8333333333334, responsible user: Automated Price Update Changed the lower bound price of young_dragon_boots to 267649.2, responsible user: Automated Price Update Changed the upper bound price of young_dragon_boots to 267649.2, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 536887.7, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 536887.7, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 485536.9, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 485536.9, responsible user: Automated Price Update Changed the lower bound price of aspect_of_the_end to 202089.7, responsible user: Automated Price Update Changed the upper bound price of aspect_of_the_end to 202089.7, responsible user: Automated Price Update Changed the lower bound price of creeper_pants to 301152.4, responsible user: Automated Price Update Changed the upper bound price of creeper_pants to 301152.4, responsible user: Automated Price Update Changed the lower bound price of enchanted_brown_mushroom_block to 2579.8, responsible user: Automated Price Update Changed the upper bound price of enchanted_brown_mushroom_block to 2579.8, responsible user: Automated Price Update Changed the lower bound price of critical_v to 41687.6, responsible user: Automated Price Update Changed the upper bound price of critical_v to 41687.6, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 481833.2, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 481833.2, responsible user: Automated Price Update Changed the lower bound price of golden_tooth to 131022.5, responsible user: Automated Price Update Changed the upper bound price of golden_tooth to 131022.5, responsible user: Automated Price Update Changed the lower bound price of enchanted_glowstone_dust to 1539.6375, responsible user: Automated Price Update Changed the upper bound price of enchanted_glowstone_dust to 1539.6375, responsible user: Automated Price Update Changed the lower bound price of enchanted_diamond_block to 210254.4, responsible user: Automated Price Update Changed the upper bound price of enchanted_diamond_block to 210254.4, responsible user: Automated Price Update Changed the lower bound price of enchanted_diamond_block to 209709.0, responsible user: Automated Price Update Changed the upper bound price of enchanted_diamond_block to 209709.0, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone to 1057.0546875, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone to 1057.0546875, responsible user: Automated Price Update Changed the lower bound price of ender_boots to 20461.3, responsible user: Automated Price Update Changed the upper bound price of ender_boots to 20461.3, responsible user: Automated Price Update Changed the lower bound price of wise_dragon_boots to 244912.1, responsible user: Automated Price Update Changed the upper bound price of wise_dragon_boots to 244912.1, responsible user: Automated Price Update Changed the lower bound price of enchanted_iron to 1005.109375, responsible user: Automated Price Update Changed the upper bound price of enchanted_iron to 1005.109375, responsible user: Automated Price Update Changed the lower bound price of enchanted_lapis_lazuli to 503.396875, responsible user: Automated Price Update Changed the upper bound price of enchanted_lapis_lazuli to 503.396875, responsible user: Automated Price Update Changed the lower bound price of young_dragon_fragment to 2951.5, responsible user: Automated Price Update Changed the upper bound price of young_dragon_fragment to 2951.5, responsible user: Automated Price Update Changed the lower bound price of ender_chestplate to 18486.6, responsible user: Automated Price Update Changed the upper bound price of ender_chestplate to 18486.6, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 534310.0, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 534310.0, responsible user: Automated Price Update Changed the lower bound price of enchanted_snow_block to 1051.98125, responsible user: Automated Price Update Changed the upper bound price of enchanted_snow_block to 1051.98125, responsible user: Automated Price Update Changed the lower bound price of green_gift to 3002.8777777777777, responsible user: Automated Price Update Changed the upper bound price of green_gift to 3002.8777777777777, responsible user: Automated Price Update Changed the lower bound price of mastiff_chestplate to 1468584.9, responsible user: Automated Price Update Changed the upper bound price of mastiff_chestplate to 1468584.9, responsible user: Automated Price Update Changed the lower bound price of budget_hopper to 9897.3, responsible user: Automated Price Update Changed the upper bound price of budget_hopper to 9897.3, responsible user: Automated Price Update Changed the lower bound price of enchanted_gold to 1093.0125, responsible user: Automated Price Update Changed the upper bound price of enchanted_gold to 1093.0125, responsible user: Automated Price Update Changed the lower bound price of rogue_sword to 815.3, responsible user: Automated Price Update Changed the upper bound price of rogue_sword to 815.3, responsible user: Automated Price Update Changed the lower bound price of tarantula_silk to 107444.7, responsible user: Automated Price Update Changed the upper bound price of tarantula_silk to 107444.7, responsible user: Automated Price Update Changed the lower bound price of mastiff_boots to 1107054.1, responsible user: Automated Price Update Changed the upper bound price of mastiff_boots to 1107054.1, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_fragment to 20934.8, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_fragment to 20934.8, responsible user: Automated Price Update Changed the lower bound price of wise_dragon_chestplate to 318301.5, responsible user: Automated Price Update Changed the upper bound price of wise_dragon_chestplate to 318301.5, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 531879.0, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 531879.0, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone_block to 68228.2, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone_block to 68228.2, responsible user: Automated Price Update Changed the lower bound price of enchanted_cobblestone to 895.28125, responsible user: Automated Price Update Changed the upper bound price of enchanted_cobblestone to 895.28125, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 483649.9, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 483649.9, responsible user: Automated Price Update Changed the lower bound price of enchanted_sugar_cane to 128443.6, responsible user: Automated Price Update Changed the upper bound price of enchanted_sugar_cane to 128443.6, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_fragment to 21341.3, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_fragment to 21341.3, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 489909.9, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 489909.9, responsible user: Automated Price Update Changed the lower bound price of enchanted_dark_oak_wood to 978.2546875, responsible user: Automated Price Update Changed the upper bound price of enchanted_dark_oak_wood to 978.2546875, responsible user: Automated Price Update Changed the lower bound price of superior_dragon_fragment to 166179.1, responsible user: Automated Price Update Changed the upper bound price of superior_dragon_fragment to 166179.1, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 69841.5, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 69841.5, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 529691.1, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 529691.1, responsible user: Automated Price Update Changed the lower bound price of enchanted_cobblestone to 808.925, responsible user: Automated Price Update Changed the upper bound price of enchanted_cobblestone to 808.925, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 534222.0, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 534222.0, responsible user: Automated Price Update Changed the lower bound price of white_gift to 2490.9652173913046, responsible user: Automated Price Update Changed the upper bound price of white_gift to 2490.9652173913046, responsible user: Automated Price Update Changed the lower bound price of enchanted_snow_block to 1067.48125, responsible user: Automated Price Update Changed the upper bound price of enchanted_snow_block to 1067.48125, responsible user: Automated Price Update Changed the lower bound price of enchanted_cobblestone to 790.5, responsible user: Automated Price Update Changed the upper bound price of enchanted_cobblestone to 790.5, responsible user: Automated Price Update Changed the lower bound price of lapis_armor_chestplate to 1569.0, responsible user: Automated Price Update Changed the upper bound price of lapis_armor_chestplate to 1569.0, responsible user: Automated Price Update Changed the lower bound price of enchanted_emerald to 1855.1, responsible user: Automated Price Update Changed the upper bound price of enchanted_emerald to 1855.1, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 530799.8, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 530799.8, responsible user: Automated Price Update Changed the lower bound price of mastiff_crown to 1205659.6, responsible user: Automated Price Update Changed the upper bound price of mastiff_crown to 1205659.6, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 531219.8, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 531219.8, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 534319.9, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 534319.9, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 531887.9, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 531887.9, responsible user: Automated Price Update Changed the lower bound price of hunk_of_ice to 663.75, responsible user: Automated Price Update Changed the upper bound price of hunk_of_ice to 663.75, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone_block to 68305.4, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone_block to 68305.4, responsible user: Automated Price Update Changed the lower bound price of superior_dragon_fragment to 165086.2, responsible user: Automated Price Update Changed the upper bound price of superior_dragon_fragment to 165086.2, responsible user: Automated Price Update Changed the lower bound price of rogue_sword to 734.1, responsible user: Automated Price Update Changed the upper bound price of rogue_sword to 734.1, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_fragment to 21507.2, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_fragment to 21507.2, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_fragment to 21856.5, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_fragment to 21856.5, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 536199.1, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 536199.1, responsible user: Automated Price Update Changed the lower bound price of enchanted_obsidian to 3028.671428571429, responsible user: Automated Price Update Changed the upper bound price of enchanted_obsidian to 3028.671428571429, responsible user: Automated Price Update Changed the lower bound price of mastiff_leggings to 1396986.0, responsible user: Automated Price Update Changed the upper bound price of mastiff_leggings to 1396986.0, responsible user: Automated Price Update Changed the lower bound price of greater_backpack to 408596.2, responsible user: Automated Price Update Changed the upper bound price of greater_backpack to 408596.2, responsible user: Automated Price Update Changed the lower bound price of enchanted_cobblestone to 729.8, responsible user: Automated Price Update Changed the upper bound price of enchanted_cobblestone to 729.8, responsible user: Automated Price Update Changed the lower bound price of snow_suit_helmet to 13508.3, responsible user: Automated Price Update Changed the upper bound price of snow_suit_helmet to 13508.3, responsible user: Automated Price Update Changed the lower bound price of enchanted_cobblestone to 719.3, responsible user: Automated Price Update Changed the upper bound price of enchanted_cobblestone to 719.3, responsible user: Automated Price Update Changed the lower bound price of tarantula_helmet to 441336.2, responsible user: Automated Price Update Changed the upper bound price of tarantula_helmet to 441336.2, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone_block to 67474.9, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone_block to 67474.9, responsible user: Automated Price Update Changed the lower bound price of ender_boots to 22217.4, responsible user: Automated Price Update Changed the upper bound price of ender_boots to 22217.4, responsible user: Automated Price Update Changed the lower bound price of old_dragon_fragment to 915.4727272727272, responsible user: Automated Price Update Changed the upper bound price of old_dragon_fragment to 915.4727272727272, responsible user: Automated Price Update Changed the lower bound price of protector_dragon_fragment to 599.5777777777778, responsible user: Automated Price Update Changed the upper bound price of protector_dragon_fragment to 599.5777777777778, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 534579.2, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 534579.2, responsible user: Automated Price Update Changed the lower bound price of enchanted_oak_wood to 1102.05, responsible user: Automated Price Update Changed the upper bound price of enchanted_oak_wood to 1102.05, responsible user: Automated Price Update Changed the lower bound price of enchanted_snow_block to 1120.3, responsible user: Automated Price Update Changed the upper bound price of enchanted_snow_block to 1120.3, responsible user: Automated Price Update Changed the lower bound price of unstable_dragon_chestplate to 878736.7, responsible user: Automated Price Update Changed the upper bound price of unstable_dragon_chestplate to 878736.7, responsible user: Automated Price Update Changed the lower bound price of tarantula_helmet to 447202.6, responsible user: Automated Price Update Changed the upper bound price of tarantula_helmet to 447202.6, responsible user: Automated Price Update Changed the lower bound price of enchanted_lapis_lazuli to 547.796875, responsible user: Automated Price Update Changed the upper bound price of enchanted_lapis_lazuli to 547.796875, responsible user: Automated Price Update Changed the lower bound price of farmer_boots to 193813.3, responsible user: Automated Price Update Changed the upper bound price of farmer_boots to 193813.3, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 65131.2, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 65131.2, responsible user: Automated Price Update Changed the lower bound price of ender_artifact to 5825000.0, responsible user: Automated Price Update Changed the upper bound price of ender_artifact to 5825000.0, responsible user: Automated Price Update Changed the lower bound price of enchanted_snow_block to 1128.98125, responsible user: Automated Price Update Changed the upper bound price of enchanted_snow_block to 1128.98125, responsible user: Automated Price Update Changed the lower bound price of lily_pad to 617.85625, responsible user: Automated Price Update Changed the upper bound price of lily_pad to 617.85625, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 483468.9, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 483468.9, responsible user: Automated Price Update Changed the lower bound price of revenant_catalyst to 86016.7, responsible user: Automated Price Update Changed the upper bound price of revenant_catalyst to 86016.7, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 538621.3, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 538621.3, responsible user: Automated Price Update Changed the lower bound price of superior_dragon_fragment to 164102.6, responsible user: Automated Price Update Changed the upper bound price of superior_dragon_fragment to 164102.6, responsible user: Automated Price Update Changed the lower bound price of lily_pad to 660.9896551724138, responsible user: Automated Price Update Changed the upper bound price of lily_pad to 660.9896551724138, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 480122.0, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 480122.0, responsible user: Automated Price Update Changed the lower bound price of enchanted_glowstone_dust to 1592.340625, responsible user: Automated Price Update Changed the upper bound price of enchanted_glowstone_dust to 1592.340625, responsible user: Automated Price Update Changed the lower bound price of enchanted_lapis_block to 78608.075, responsible user: Automated Price Update Changed the upper bound price of enchanted_lapis_block to 78608.075, responsible user: Automated Price Update Changed the lower bound price of unstable_dragon_fragment to 10508.2, responsible user: Automated Price Update Changed the upper bound price of unstable_dragon_fragment to 10508.2, responsible user: Automated Price Update Changed the lower bound price of ember_fragment to 380.85, responsible user: Automated Price Update Changed the upper bound price of ember_fragment to 380.85, responsible user: Automated Price Update Changed the lower bound price of ember_rod to 52065.3, responsible user: Automated Price Update Changed the upper bound price of ember_rod to 52065.3, responsible user: Automated Price Update Changed the lower bound price of crystal_fragment to 13533.3625, responsible user: Automated Price Update Changed the upper bound price of crystal_fragment to 13533.3625, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 535759.2, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 535759.2, responsible user: Automated Price Update Changed the lower bound price of enchanted_gold to 1109.48125, responsible user: Automated Price Update Changed the upper bound price of enchanted_gold to 1109.48125, responsible user: Automated Price Update Changed the lower bound price of superior_dragon_fragment to 163504.8, responsible user: Automated Price Update Changed the upper bound price of superior_dragon_fragment to 163504.8, responsible user: Automated Price Update Changed the lower bound price of enchanted_raw_chicken to 1825.9875, responsible user: Automated Price Update Changed the upper bound price of enchanted_raw_chicken to 1825.9875, responsible user: Automated Price Update Changed the lower bound price of enchanted_acacia_wood to 1280.090625, responsible user: Automated Price Update Changed the upper bound price of enchanted_acacia_wood to 1280.090625, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 68618.1, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 68618.1, responsible user: Automated Price Update Changed the lower bound price of enchanted_gold to 1124.28125, responsible user: Automated Price Update Changed the upper bound price of enchanted_gold to 1124.28125, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 533183.3, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 533183.3, responsible user: Automated Price Update Changed the lower bound price of fish_affinity_talisman to 155080.4, responsible user: Automated Price Update Changed the upper bound price of fish_affinity_talisman to 155080.4, responsible user: Automated Price Update Changed the lower bound price of frozen_chicken to 107576.5, responsible user: Automated Price Update Changed the upper bound price of frozen_chicken to 107576.5, responsible user: Automated Price Update Changed the lower bound price of young_dragon_fragment to 2899.177777777778, responsible user: Automated Price Update Changed the upper bound price of young_dragon_fragment to 2899.177777777778, responsible user: Automated Price Update Changed the lower bound price of young_dragon_fragment to 2942.633333333333, responsible user: Automated Price Update Changed the upper bound price of young_dragon_fragment to 2942.633333333333, responsible user: Automated Price Update Changed the lower bound price of superior_dragon_fragment to 164404.3, responsible user: Automated Price Update Changed the upper bound price of superior_dragon_fragment to 164404.3, responsible user: Automated Price Update Changed the lower bound price of enchanted_gold to 1113.4625, responsible user: Automated Price Update Changed the upper bound price of enchanted_gold to 1113.4625, responsible user: Automated Price Update Changed the lower bound price of enchanted_glowstone_dust to 1697.81875, responsible user: Automated Price Update Changed the upper bound price of enchanted_glowstone_dust to 1697.81875, responsible user: Automated Price Update Changed the lower bound price of old_dragon_boots to 145801.5, responsible user: Automated Price Update Changed the upper bound price of old_dragon_boots to 145801.5, responsible user: Automated Price Update Changed the lower bound price of enchanted_blaze_rod to 609971.4, responsible user: Automated Price Update Changed the upper bound price of enchanted_blaze_rod to 609971.4, responsible user: Automated Price Update Changed the lower bound price of enchanted_cobblestone to 674.353125, responsible user: Automated Price Update Changed the upper bound price of enchanted_cobblestone to 674.353125, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 481042.3, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 481042.3, responsible user: Automated Price Update Changed the lower bound price of obsidian_chestplate to 5959.3, responsible user: Automated Price Update Changed the upper bound price of obsidian_chestplate to 5959.3, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 537365.0, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 537365.0, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 535628.5, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 535628.5, responsible user: Automated Price Update Changed the lower bound price of tarantula_web to 58.465625, responsible user: Automated Price Update Changed the upper bound price of tarantula_web to 58.465625, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 481870.6, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 481870.6, responsible user: Automated Price Update Changed the lower bound price of enchanted_lapis_block to 74197.3, responsible user: Automated Price Update Changed the upper bound price of enchanted_lapis_block to 74197.3, responsible user: Automated Price Update Changed the lower bound price of enchanted_string to 1526.9734375, responsible user: Automated Price Update Changed the upper bound price of enchanted_string to 1526.9734375, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 482470.3, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 482470.3, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 535398.9, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 535398.9, responsible user: Automated Price Update Changed the lower bound price of enchanted_jungle_wood to 1303.45, responsible user: Automated Price Update Changed the upper bound price of enchanted_jungle_wood to 1303.45, responsible user: Automated Price Update Changed the lower bound price of enchanted_gold to 1126.084375, responsible user: Automated Price Update Changed the upper bound price of enchanted_gold to 1126.084375, responsible user: Automated Price Update Changed the lower bound price of enchanted_pork to 2370.175, responsible user: Automated Price Update Changed the upper bound price of enchanted_pork to 2370.175, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone_block to 66727.4, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone_block to 66727.4, responsible user: Automated Price Update Changed the lower bound price of titanic_experience_bottle to 392213.2, responsible user: Automated Price Update Changed the upper bound price of titanic_experience_bottle to 392213.2, responsible user: Automated Price Update Changed the lower bound price of ender_artifact to 5892500.0, responsible user: Automated Price Update Changed the upper bound price of ender_artifact to 5892500.0, responsible user: Automated Price Update Changed the lower bound price of enchanted_cobblestone to 678.775, responsible user: Automated Price Update Changed the upper bound price of enchanted_cobblestone to 678.775, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 478306.6, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 478306.6, responsible user: Automated Price Update Changed the lower bound price of enchanted_clay to 516.1265625, responsible user: Automated Price Update Changed the upper bound price of enchanted_clay to 516.1265625, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 473025.9, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 473025.9, responsible user: Automated Price Update Changed the lower bound price of enchanted_potato to 529.3375, responsible user: Automated Price Update Changed the upper bound price of enchanted_potato to 529.3375, responsible user: Automated Price Update Changed the lower bound price of enchanted_lava_bucket to 261705.7, responsible user: Automated Price Update Changed the upper bound price of enchanted_lava_bucket to 261705.7, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 470688.3, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 470688.3, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 466169.5, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 466169.5, responsible user: Automated Price Update Changed the lower bound price of superior_dragon_fragment to 164063.9, responsible user: Automated Price Update Changed the upper bound price of superior_dragon_fragment to 164063.9, responsible user: Automated Price Update Changed the lower bound price of enchanted_gold to 1137.484375, responsible user: Automated Price Update Changed the upper bound price of enchanted_gold to 1137.484375, responsible user: Automated Price Update Changed the lower bound price of enchanted_birch_wood to 1132.35625, responsible user: Automated Price Update Changed the upper bound price of enchanted_birch_wood to 1132.35625, responsible user: Automated Price Update Changed the lower bound price of budget_hopper to 9027.6, responsible user: Automated Price Update Changed the upper bound price of budget_hopper to 9027.6, responsible user: Automated Price Update Changed the lower bound price of enchanted_sugar_cane to 130477.325, responsible user: Automated Price Update Changed the upper bound price of enchanted_sugar_cane to 130477.325, responsible user: Automated Price Update Changed the lower bound price of budget_hopper to 8244.8, responsible user: Automated Price Update Changed the upper bound price of budget_hopper to 8244.8, responsible user: Automated Price Update Changed the lower bound price of enchanted_clay to 512.5, responsible user: Automated Price Update Changed the upper bound price of enchanted_clay to 512.5, responsible user: Automated Price Update Changed the lower bound price of wise_dragon_fragment to 1464.325, responsible user: Automated Price Update Changed the upper bound price of wise_dragon_fragment to 1464.325, responsible user: Automated Price Update Changed the lower bound price of purple_candy to 8913.3, responsible user: Automated Price Update Changed the upper bound price of purple_candy to 8913.3, responsible user: Automated Price Update Changed the lower bound price of wolf_talisman to 36891.8, responsible user: Automated Price Update Changed the upper bound price of wolf_talisman to 36891.8, responsible user: Automated Price Update Changed the lower bound price of enchanted_raw_chicken to 1909.025, responsible user: Automated Price Update Changed the upper bound price of enchanted_raw_chicken to 1909.025, responsible user: Automated Price Update Changed the lower bound price of farmer_boots to 190992.0, responsible user: Automated Price Update Changed the upper bound price of farmer_boots to 190992.0, responsible user: Automated Price Update Changed the lower bound price of budget_hopper to 7558.3, responsible user: Automated Price Update Changed the upper bound price of budget_hopper to 7558.3, responsible user: Automated Price Update Changed the lower bound price of enchanted_lava_bucket to 264431.7, responsible user: Automated Price Update Changed the upper bound price of enchanted_lava_bucket to 264431.7, responsible user: Automated Price Update Changed the lower bound price of ender_leggings to 27116.7, responsible user: Automated Price Update Changed the upper bound price of ender_leggings to 27116.7, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 456552.6, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 456552.6, responsible user: Automated Price Update Changed the lower bound price of growth_v to 24072.7, responsible user: Automated Price Update Changed the upper bound price of growth_v to 24072.7, responsible user: Automated Price Update Changed the lower bound price of enchanted_gold to 1147.684375, responsible user: Automated Price Update Changed the upper bound price of enchanted_gold to 1147.684375, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 535359.0, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 535359.0, responsible user: Automated Price Update Changed the lower bound price of budget_hopper to 6922.5, responsible user: Automated Price Update Changed the upper bound price of budget_hopper to 6922.5, responsible user: Automated Price Update Changed the lower bound price of experience_artifact to 510574.2, responsible user: Automated Price Update Changed the upper bound price of experience_artifact to 510574.2, responsible user: Automated Price Update Changed the lower bound price of ender_leggings to 27050.0, responsible user: Automated Price Update Changed the upper bound price of ender_leggings to 27050.0, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone_block to 66954.7, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone_block to 66954.7, responsible user: Automated Price Update Changed the lower bound price of enchanted_cobblestone to 689.025, responsible user: Automated Price Update Changed the upper bound price of enchanted_cobblestone to 689.025, responsible user: Automated Price Update Changed the lower bound price of enchanted_coal to 997.9875, responsible user: Automated Price Update Changed the upper bound price of enchanted_coal to 997.9875, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 449997.3, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 449997.3, responsible user: Automated Price Update Changed the lower bound price of enchanted_ghast_tear to 165.5, responsible user: Automated Price Update Changed the upper bound price of enchanted_ghast_tear to 165.5, responsible user: Automated Price Update Changed the lower bound price of enchanted_ghast_tear to 195.875, responsible user: Automated Price Update Changed the upper bound price of enchanted_ghast_tear to 195.875, responsible user: Automated Price Update Changed the lower bound price of enchanted_cobblestone to 669.0421875, responsible user: Automated Price Update Changed the upper bound price of enchanted_cobblestone to 669.0421875, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 533338.2, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 533338.2, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 461270.0, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 461270.0, responsible user: Automated Price Update Changed the lower bound price of superior_dragon_fragment to 162657.5, responsible user: Automated Price Update Changed the upper bound price of superior_dragon_fragment to 162657.5, responsible user: Automated Price Update Changed the lower bound price of enchanted_cobblestone to 680.225, responsible user: Automated Price Update Changed the upper bound price of enchanted_cobblestone to 680.225, responsible user: Automated Price Update Changed the lower bound price of unstable_dragon_fragment to 10607.4, responsible user: Automated Price Update Changed the upper bound price of unstable_dragon_fragment to 10607.4, responsible user: Automated Price Update Changed the lower bound price of snow_suit_chestplate to 8417.7, responsible user: Automated Price Update Changed the upper bound price of snow_suit_chestplate to 8417.7, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 455143.0, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 455143.0, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 446128.7, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 446128.7, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 444065.8, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 444065.8, responsible user: Automated Price Update Changed the lower bound price of ender_artifact to 5911600.0, responsible user: Automated Price Update Changed the upper bound price of ender_artifact to 5911600.0, responsible user: Automated Price Update Changed the lower bound price of enchanted_jungle_wood to 1329.35, responsible user: Automated Price Update Changed the upper bound price of enchanted_jungle_wood to 1329.35, responsible user: Automated Price Update Changed the lower bound price of growth_v to 21715.4, responsible user: Automated Price Update Changed the upper bound price of growth_v to 21715.4, responsible user: Automated Price Update Changed the lower bound price of grand_experience_bottle to 5151.25, responsible user: Automated Price Update Changed the upper bound price of grand_experience_bottle to 5151.25, responsible user: Automated Price Update Changed the lower bound price of enchanted_cactus_green to 1248.525, responsible user: Automated Price Update Changed the upper bound price of enchanted_cactus_green to 1248.525, responsible user: Automated Price Update Changed the lower bound price of enchanted_lava_bucket to 272488.5, responsible user: Automated Price Update Changed the upper bound price of enchanted_lava_bucket to 272488.5, responsible user: Automated Price Update Changed the lower bound price of enchanted_raw_chicken to 1846.6055555555554, responsible user: Automated Price Update Changed the upper bound price of enchanted_raw_chicken to 1846.6055555555554, responsible user: Automated Price Update Changed the lower bound price of enchanted_cobblestone to 684.075, responsible user: Automated Price Update Changed the upper bound price of enchanted_cobblestone to 684.075, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 443742.5, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 443742.5, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 439368.2, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 439368.2, responsible user: Automated Price Update Changed the lower bound price of enchanted_clay to 521.1265625, responsible user: Automated Price Update Changed the upper bound price of enchanted_clay to 521.1265625, responsible user: Automated Price Update Changed the lower bound price of budget_hopper to 6350.2, responsible user: Automated Price Update Changed the upper bound price of budget_hopper to 6350.2, responsible user: Automated Price Update Changed the lower bound price of magical_mushroom_soup to 15.90625, responsible user: Automated Price Update Changed the upper bound price of magical_mushroom_soup to 15.90625, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 433764.7, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 433764.7, responsible user: Automated Price Update Changed the lower bound price of budget_hopper to 5835.2, responsible user: Automated Price Update Changed the upper bound price of budget_hopper to 5835.2, responsible user: Automated Price Update Changed the lower bound price of enchanted_coal to 1077.8875, responsible user: Automated Price Update Changed the upper bound price of enchanted_coal to 1077.8875, responsible user: Automated Price Update Changed the lower bound price of magical_mushroom_soup to 17.89375, responsible user: Automated Price Update Changed the upper bound price of magical_mushroom_soup to 17.89375, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 73256.3, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 73256.3, responsible user: Automated Price Update Changed the lower bound price of superior_dragon_fragment to 162491.8, responsible user: Automated Price Update Changed the upper bound price of superior_dragon_fragment to 162491.8, responsible user: Automated Price Update Changed the lower bound price of red_gift to 46655.2, responsible user: Automated Price Update Changed the upper bound price of red_gift to 46655.2, responsible user: Automated Price Update Changed the lower bound price of green_gift to 3314.4, responsible user: Automated Price Update Changed the upper bound price of green_gift to 3314.4, responsible user: Automated Price Update Changed the lower bound price of green_gift to 3483.0, responsible user: Automated Price Update Changed the upper bound price of green_gift to 3483.0, responsible user: Automated Price Update Changed the lower bound price of superior_dragon_leggings to 11497954.3, responsible user: Automated Price Update Changed the upper bound price of superior_dragon_leggings to 11497954.3, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_fragment to 22108.3, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_fragment to 22108.3, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 531004.4, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 531004.4, responsible user: Automated Price Update Changed the lower bound price of enchanted_lapis_block to 73587.3, responsible user: Automated Price Update Changed the upper bound price of enchanted_lapis_block to 73587.3, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 529904.0, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 529904.0, responsible user: Automated Price Update Changed the lower bound price of mana_flux_power_orb to 4686883.2, responsible user: Automated Price Update Changed the upper bound price of mana_flux_power_orb to 4686883.2, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone_block to 69259.2, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone_block to 69259.2, responsible user: Automated Price Update Changed the lower bound price of enchanted_gold to 1158.68125, responsible user: Automated Price Update Changed the upper bound price of enchanted_gold to 1158.68125, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 74555.7, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 74555.7, responsible user: Automated Price Update Changed the lower bound price of budget_hopper to 5389.7, responsible user: Automated Price Update Changed the upper bound price of budget_hopper to 5389.7, responsible user: Automated Price Update Changed the lower bound price of giant_killer_v to 4175.4, responsible user: Automated Price Update Changed the upper bound price of giant_killer_v to 4175.4, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 527913.6, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 527913.6, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 77594.2, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 77594.2, responsible user: Automated Price Update Changed the lower bound price of unstable_dragon_chestplate to 851203.7, responsible user: Automated Price Update Changed the upper bound price of unstable_dragon_chestplate to 851203.7, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone_block to 68333.3, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone_block to 68333.3, responsible user: Automated Price Update Changed the lower bound price of enchanted_lava_bucket to 275657.1, responsible user: Automated Price Update Changed the upper bound price of enchanted_lava_bucket to 275657.1, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 77769.8, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 77769.8, responsible user: Automated Price Update Changed the lower bound price of enchanted_diamond to 1371.7828125, responsible user: Automated Price Update Changed the upper bound price of enchanted_diamond to 1371.7828125, responsible user: Automated Price Update Changed the lower bound price of ember_leggings to 1421.0, responsible user: Automated Price Update Changed the upper bound price of ember_leggings to 1421.0, responsible user: Automated Price Update Changed the lower bound price of enchanted_clay to 528.9265625, responsible user: Automated Price Update Changed the upper bound price of enchanted_clay to 528.9265625, responsible user: Automated Price Update Changed the lower bound price of ember_fragment to 389.06, responsible user: Automated Price Update Changed the upper bound price of ember_fragment to 389.06, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 525122.2, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 525122.2, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone to 1046.8953125, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone to 1046.8953125, responsible user: Automated Price Update Changed the lower bound price of enchanted_emerald_block to 180872.5, responsible user: Automated Price Update Changed the upper bound price of enchanted_emerald_block to 180872.5, responsible user: Automated Price Update Changed the lower bound price of enchanted_snow_block to 1109.85, responsible user: Automated Price Update Changed the upper bound price of enchanted_snow_block to 1109.85, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_fragment to 22197.5, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_fragment to 22197.5, responsible user: Automated Price Update Changed the lower bound price of unstable_dragon_chestplate to 846083.3, responsible user: Automated Price Update Changed the upper bound price of unstable_dragon_chestplate to 846083.3, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 75315.9, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 75315.9, responsible user: Automated Price Update Changed the lower bound price of magical_mushroom_soup to 16.3375, responsible user: Automated Price Update Changed the upper bound price of magical_mushroom_soup to 16.3375, responsible user: Automated Price Update Changed the lower bound price of tarantula_helmet to 442732.3, responsible user: Automated Price Update Changed the upper bound price of tarantula_helmet to 442732.3, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 530110.0, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 530110.0, responsible user: Automated Price Update Changed the lower bound price of enchanted_ghast_tear to 186.87906976744188, responsible user: Automated Price Update Changed the upper bound price of enchanted_ghast_tear to 186.87906976744188, responsible user: Automated Price Update Changed the lower bound price of magma_cream to 14.5203125, responsible user: Automated Price Update Changed the upper bound price of magma_cream to 14.5203125, responsible user: Automated Price Update Changed the lower bound price of enchanted_lava_bucket to 278508.9, responsible user: Automated Price Update Changed the upper bound price of enchanted_lava_bucket to 278508.9, responsible user: Automated Price Update Changed the lower bound price of unstable_dragon_fragment to 10703.25, responsible user: Automated Price Update Changed the upper bound price of unstable_dragon_fragment to 10703.25, responsible user: Automated Price Update Changed the lower bound price of enchanted_lava_bucket to 295658.0, responsible user: Automated Price Update Changed the upper bound price of enchanted_lava_bucket to 295658.0, responsible user: Automated Price Update Changed the lower bound price of magical_mushroom_soup to 14.9375, responsible user: Automated Price Update Changed the upper bound price of magical_mushroom_soup to 14.9375, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 529099.0, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 529099.0, responsible user: Automated Price Update Changed the lower bound price of magical_mushroom_soup to 13.5796875, responsible user: Automated Price Update Changed the upper bound price of magical_mushroom_soup to 13.5796875, responsible user: Automated Price Update Changed the lower bound price of grand_experience_bottle to 5085.31875, responsible user: Automated Price Update Changed the upper bound price of grand_experience_bottle to 5085.31875, responsible user: Automated Price Update Changed the lower bound price of blaze_rod to 18.4, responsible user: Automated Price Update Changed the upper bound price of blaze_rod to 18.4, responsible user: Automated Price Update Changed the lower bound price of strong_dragon_fragment to 22622.8, responsible user: Automated Price Update Changed the upper bound price of strong_dragon_fragment to 22622.8, responsible user: Automated Price Update Changed the lower bound price of aspect_of_the_dragons to 5924137.2, responsible user: Automated Price Update Changed the upper bound price of aspect_of_the_dragons to 5924137.2, responsible user: Automated Price Update Changed the lower bound price of titanic_experience_bottle to 413826.9, responsible user: Automated Price Update Changed the upper bound price of titanic_experience_bottle to 413826.9, responsible user: Automated Price Update Changed the lower bound price of grand_experience_bottle to 5295.55, responsible user: Automated Price Update Changed the upper bound price of grand_experience_bottle to 5295.55, responsible user: Automated Price Update Changed the lower bound price of blaze_rod to 18.6796875, responsible user: Automated Price Update Changed the upper bound price of blaze_rod to 18.6796875, responsible user: Automated Price Update Changed the lower bound price of enchanted_lava_bucket to 300592.2, responsible user: Automated Price Update Changed the upper bound price of enchanted_lava_bucket to 300592.2, responsible user: Automated Price Update Changed the lower bound price of miner_chestplate to 2203.0, responsible user: Automated Price Update Changed the upper bound price of miner_chestplate to 2203.0, responsible user: Automated Price Update Changed the lower bound price of tarantula_helmet to 433637.8, responsible user: Automated Price Update Changed the upper bound price of tarantula_helmet to 433637.8, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 430388.2, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 430388.2, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone_block to 68400.0, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone_block to 68400.0, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone_block to 72054.1, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone_block to 72054.1, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone_block to 73974.0, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone_block to 73974.0, responsible user: Automated Price Update Changed the lower bound price of enchanted_cobblestone to 719.0203125, responsible user: Automated Price Update Changed the upper bound price of enchanted_cobblestone to 719.0203125, responsible user: Automated Price Update Changed the lower bound price of magical_mushroom_soup to 12.40625, responsible user: Automated Price Update Changed the upper bound price of magical_mushroom_soup to 12.40625, responsible user: Automated Price Update Changed the lower bound price of superior_dragon_fragment to 162342.6, responsible user: Automated Price Update Changed the upper bound price of superior_dragon_fragment to 162342.6, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 425682.7, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 425682.7, responsible user: Automated Price Update Changed the lower bound price of enchanted_cobblestone to 694.2421875, responsible user: Automated Price Update Changed the upper bound price of enchanted_cobblestone to 694.2421875, responsible user: Automated Price Update Changed the lower bound price of tarantula_helmet to 425254.1, responsible user: Automated Price Update Changed the upper bound price of tarantula_helmet to 425254.1, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 76784.3, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 76784.3, responsible user: Automated Price Update Changed the lower bound price of bat_talisman to 17153.8, responsible user: Automated Price Update Changed the upper bound price of bat_talisman to 17153.8, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 420614.4, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 420614.4, responsible user: Automated Price Update Changed the lower bound price of growth_v to 19593.9, responsible user: Automated Price Update Changed the upper bound price of growth_v to 19593.9, responsible user: Automated Price Update Changed the lower bound price of magical_mushroom_soup to 11.40625, responsible user: Automated Price Update Changed the upper bound price of magical_mushroom_soup to 11.40625, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 75189.4, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 75189.4, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 76670.5, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 76670.5, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone_block to 73476.6, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone_block to 73476.6, responsible user: Automated Price Update Changed the lower bound price of tarantula_web to 65.178125, responsible user: Automated Price Update Changed the upper bound price of tarantula_web to 65.178125, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 416053.0, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 416053.0, responsible user: Automated Price Update Changed the lower bound price of unstable_dragon_fragment to 10688.266666666666, responsible user: Automated Price Update Changed the upper bound price of unstable_dragon_fragment to 10688.266666666666, responsible user: Automated Price Update Changed the lower bound price of poppy to 2.215625, responsible user: Automated Price Update Changed the upper bound price of poppy to 2.215625, responsible user: Automated Price Update Changed the lower bound price of titanic_experience_bottle to 412518.1, responsible user: Automated Price Update Changed the upper bound price of titanic_experience_bottle to 412518.1, responsible user: Automated Price Update Changed the lower bound price of summoning_eye to 533689.1, responsible user: Automated Price Update Changed the upper bound price of summoning_eye to 533689.1, responsible user: Automated Price Update Changed the lower bound price of enchanted_lava_bucket to 293533.0, responsible user: Automated Price Update Changed the upper bound price of enchanted_lava_bucket to 293533.0, responsible user: Automated Price Update Changed the lower bound price of enchanted_clay to 535.9265625, responsible user: Automated Price Update Changed the upper bound price of enchanted_clay to 535.9265625, responsible user: Automated Price Update Changed the lower bound price of enchanted_spider_eye to 1574.4125, responsible user: Automated Price Update Changed the upper bound price of enchanted_spider_eye to 1574.4125, responsible user: Automated Price Update Changed the lower bound price of hunk_of_ice to 691.15, responsible user: Automated Price Update Changed the upper bound price of hunk_of_ice to 691.15, responsible user: Automated Price Update Changed the lower bound price of tarantula_helmet to 417907.4, responsible user: Automated Price Update Changed the upper bound price of tarantula_helmet to 417907.4, responsible user: Automated Price Update Changed the lower bound price of tarantula_helmet to 416572.2, responsible user: Automated Price Update Changed the upper bound price of tarantula_helmet to 416572.2, responsible user: Automated Price Update Changed the lower bound price of super_compactor_3000 to 411447.7, responsible user: Automated Price Update Changed the upper bound price of super_compactor_3000 to 411447.7, responsible user: Automated Price Update Changed the lower bound price of wolf_tooth to 65.03125, responsible user: Automated Price Update Changed the upper bound price of wolf_tooth to 65.03125, responsible user: Automated Price Update Changed the lower bound price of budget_hopper to 5200.7, responsible user: Automated Price Update Changed the upper bound price of budget_hopper to 5200.7, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 81071.6, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 81071.6, responsible user: Automated Price Update Changed the lower bound price of grand_experience_bottle to 5454.671875, responsible user: Automated Price Update Changed the upper bound price of grand_experience_bottle to 5454.671875, responsible user: Automated Price Update Changed the lower bound price of magical_mushroom_soup to 10.5375, responsible user: Automated Price Update Changed the upper bound price of magical_mushroom_soup to 10.5375, responsible user: Automated Price Update Changed the lower bound price of enchanted_redstone_block to 74063.9, responsible user: Automated Price Update Changed the upper bound price of enchanted_redstone_block to 74063.9, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 88173.2, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 88173.2, responsible user: Automated Price Update Changed the lower bound price of hot_potato_book to 85355.9, responsible user: Automated Price Update Changed the upper bound price of hot_potato_book to 85355.9, responsible user: Automated Price Update Changed the lower bound price of unstable_dragon_chestplate to…

---
## [newstools/2020-the-daily-mavericks](https://github.com/newstools/2020-the-daily-mavericks)@[6434c52b91...](https://github.com/newstools/2020-the-daily-mavericks/commit/6434c52b917491039e07de64c3066aeb5f006acf)
#### Friday 2020-01-24 19:00:09 by NewsTools

Created Text For URL [www.dailymaverick.co.za/article/2020-01-24-we-love-you-donald-says-motsepe-yeah-right-say-twitter-users/]

---
## [MAPC/digitalhub](https://github.com/MAPC/digitalhub)@[b3b8ad48d5...](https://github.com/MAPC/digitalhub/commit/b3b8ad48d5406b9c0f1c42ceecbbde7bd66389dc)
#### Friday 2020-01-24 21:33:58 by Matthew Zagaja

Resolve IFRAME Not Working in Reports 🐛

In 2018 some folks had strong opinions about the appearance of YouTube video embeds on MetroCommon. The result of these feelings lead to the writing of this JavaScript, which surely seemed like a great idea at the time. The script was tested. The embed looked different. Special. Better. More MetroCommony. The script was tested. It worked. Except for a minor bug in MSIE that I briefly fixed. It was merged and we all moved on with our lives.

Fast forward to 2020. The plan is progressing. Content is being built. New kinds of content. Content that doesn’t quite fit into our strange editor, so we call upon our trusty friend the IFRAME! When editors tried to add IFRAMEs they disappeared. Was it a rapture? The Russians? A ghost?

No it was this JavaScript. Sucking away IFRAMEs like a DOM vampire. This commit banishes the vampire from our code base, leaving us to potentially recreate this feature if we ever want it by digging it back out from our git history. Until then we apply the remove dead code refactor here, and solve all our problems.

---

# [<](2020-01-23.md) 2020-01-24 [>](2020-01-25.md)