pull down to refresh

Great question! Those two numbers were found by curve fitting the price to a line. Slope and y-intercept.

I used Python and NumPy to do this using this one liner:

polyfit(log(time),log(price),2)

which returns approximately [4.8,85]