Skip to content

Instantly share code, notes, and snippets.

@robroc
Created February 24, 2021 20:38
Show Gist options
  • Save robroc/d2ddb095d78ddc904eaa6333e9bcef2c to your computer and use it in GitHub Desktop.
Save robroc/d2ddb095d78ddc904eaa6333e9bcef2c to your computer and use it in GitHub Desktop.
This file has been truncated, but you can view the full file.
{
"cells": [
{
"cell_type": "markdown",
"id": "theoretical-governor",
"metadata": {},
"source": [
"## Data prep"
]
},
{
"cell_type": "code",
"execution_count": 1,
"id": "super-queens",
"metadata": {},
"outputs": [],
"source": [
"# Load libraries\n",
"\n",
"import pandas as pd\n",
"import numpy as np\n",
"import glob\n",
"pd.options.plotting.backend = \"plotly\""
]
},
{
"cell_type": "code",
"execution_count": 2,
"id": "weird-found",
"metadata": {},
"outputs": [],
"source": [
"# Merge files and delete duplicates\n",
"\n",
"files = glob.glob('raw data/*.csv')\n",
"all_dfs = []\n",
"for f in files:\n",
" _df = pd.read_csv(f, parse_dates = ['DATE'],\n",
" dtype = {'PER/ACRE':str, 'ASS VAL':str},\n",
" na_values=['', ' ', 'N/A'])\n",
" all_dfs.append(_df)\n",
" \n",
"df = pd.concat(all_dfs, ignore_index=True)\n",
"df['ASS VAL'] = df['ASS VAL'].str.replace(',','').astype(float)\n",
"df['PER/ACRE'] = df['PER/ACRE'].str.replace(',','').astype(float)\n",
"\n",
"df = df.drop_duplicates()"
]
},
{
"cell_type": "code",
"execution_count": 3,
"id": "spectacular-banks",
"metadata": {},
"outputs": [],
"source": [
"# Standardize LSDs \n",
"\n",
"df['LEGAL_STD'] = df.LEGAL.str.replace('LSD 0', 'LSD')"
]
},
{
"cell_type": "code",
"execution_count": 4,
"id": "oriental-bundle",
"metadata": {},
"outputs": [],
"source": [
"# Calculate price difference between sales\n",
"\n",
"df = df.sort_values(['LEGAL_STD', 'DATE'])\n",
"df['PRICE_CHANGE'] = df.groupby('LEGAL_STD').PRICE.diff()\n",
"df['ACRE_PRICE_CHANGE'] = df.groupby('LEGAL_STD')['PER/ACRE'].diff()"
]
},
{
"cell_type": "markdown",
"id": "editorial-gates",
"metadata": {},
"source": [
"## Analysis"
]
},
{
"cell_type": "code",
"execution_count": 12,
"id": "numeric-mortgage",
"metadata": {},
"outputs": [],
"source": [
"# Define display columns\n",
"\n",
"cols = ['LEGAL', 'RM', 'DATE', 'PRICE', 'PER/ACRE', 'VENDOR', 'PURCHASER']"
]
},
{
"cell_type": "markdown",
"id": "everyday-match",
"metadata": {},
"source": [
"#### Basic stats"
]
},
{
"cell_type": "markdown",
"id": "killing-heritage",
"metadata": {},
"source": [
"Number of records"
]
},
{
"cell_type": "code",
"execution_count": 17,
"id": "confused-designation",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"38451"
]
},
"execution_count": 17,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"len(df)"
]
},
{
"cell_type": "markdown",
"id": "hazardous-spare",
"metadata": {},
"source": [
"Time span of data"
]
},
{
"cell_type": "code",
"execution_count": 21,
"id": "graduate-gregory",
"metadata": {},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"<ipython-input-21-4ac38c483eeb>:1: FutureWarning: Treating datetime data as categorical rather than numeric in `.describe` is deprecated and will be removed in a future version of pandas. Specify `datetime_is_numeric=True` to silence this warning and adopt the future behavior now.\n",
" df.DATE.describe()\n"
]
},
{
"data": {
"text/plain": [
"count 38451\n",
"unique 5873\n",
"top 2014-04-30 00:00:00\n",
"freq 98\n",
"first 1993-10-02 00:00:00\n",
"last 2021-02-05 00:00:00\n",
"Name: DATE, dtype: object"
]
},
"execution_count": 21,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"df.DATE.describe()"
]
},
{
"cell_type": "markdown",
"id": "dominant-projector",
"metadata": {},
"source": [
"15 biggest single sales"
]
},
{
"cell_type": "code",
"execution_count": 13,
"id": "material-myrtle",
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>LEGAL</th>\n",
" <th>RM</th>\n",
" <th>DATE</th>\n",
" <th>PRICE</th>\n",
" <th>PER/ACRE</th>\n",
" <th>VENDOR</th>\n",
" <th>PURCHASER</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>20004</th>\n",
" <td>SW-07-28-09-W2</td>\n",
" <td>275 - Insinger</td>\n",
" <td>2019-12-10</td>\n",
" <td>4500000</td>\n",
" <td>3132.83</td>\n",
" <td>John Zuchkan</td>\n",
" <td>John Zuchkan et al</td>\n",
" </tr>\n",
" <tr>\n",
" <th>21543</th>\n",
" <td>NE-27-28-08-W2</td>\n",
" <td>275 - Insinger</td>\n",
" <td>2005-09-09</td>\n",
" <td>4051350</td>\n",
" <td>25320.94</td>\n",
" <td>Yellowhead Pork Producers Ltd.</td>\n",
" <td>BIG SKY FARMS INC.</td>\n",
" </tr>\n",
" <tr>\n",
" <th>27818</th>\n",
" <td>NW-01-32-08-W2</td>\n",
" <td>305 - Invermay</td>\n",
" <td>2002-10-04</td>\n",
" <td>4000000</td>\n",
" <td>25000.00</td>\n",
" <td>Big Sky Farms Inc.</td>\n",
" <td>PRAIRIE HOG PRODUCTION INC.</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2031</th>\n",
" <td>NE-03-08-23-W2</td>\n",
" <td>070 - Key West</td>\n",
" <td>2002-10-04</td>\n",
" <td>4000000</td>\n",
" <td>25157.23</td>\n",
" <td>Big Sky Farms Inc.</td>\n",
" <td>PRAIRIE HOG PRODUCTION INC.</td>\n",
" </tr>\n",
" <tr>\n",
" <th>17185</th>\n",
" <td>Parcel# 164702842</td>\n",
" <td>250 - Last Mountain Valley</td>\n",
" <td>2019-12-09</td>\n",
" <td>3762000</td>\n",
" <td>836000.00</td>\n",
" <td>Victoria &amp; Kent Rhodes</td>\n",
" <td>Kent Rhodes et al</td>\n",
" </tr>\n",
" <tr>\n",
" <th>27667</th>\n",
" <td>SE-12-33-07-W2</td>\n",
" <td>305 - Invermay</td>\n",
" <td>2004-05-13</td>\n",
" <td>3700000</td>\n",
" <td>23125.00</td>\n",
" <td>Big Sky Farms Inc.</td>\n",
" <td>PRAIRIE HOG PRODUCTION INC.</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1921</th>\n",
" <td>SE-18-08-22-W2</td>\n",
" <td>070 - Key West</td>\n",
" <td>2003-06-18</td>\n",
" <td>3550000</td>\n",
" <td>22327.04</td>\n",
" <td>Big Sky Farms Inc.</td>\n",
" <td>BIG SKY FINISHERS (NO. 1) INC.</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1922</th>\n",
" <td>NW-11-08-22-W2</td>\n",
" <td>070 - Key West</td>\n",
" <td>2003-06-18</td>\n",
" <td>3550000</td>\n",
" <td>22327.04</td>\n",
" <td>Big Sky Farms Inc.</td>\n",
" <td>BIG SKY FINISHERS (NO. 1) INC.</td>\n",
" </tr>\n",
" <tr>\n",
" <th>17184</th>\n",
" <td>NW-24-26-22-W2</td>\n",
" <td>250 - Last Mountain Valley</td>\n",
" <td>2019-12-09</td>\n",
" <td>3056400</td>\n",
" <td>2147.06</td>\n",
" <td>Terry Hamilton</td>\n",
" <td>Murray Hamilton et al</td>\n",
" </tr>\n",
" <tr>\n",
" <th>32049</th>\n",
" <td>NW-08-52-16-W2</td>\n",
" <td>488 - Torch River</td>\n",
" <td>2020-11-30</td>\n",
" <td>2526100</td>\n",
" <td>17360.32</td>\n",
" <td>TOPSOIL FARM LAND MANAGEMENT (</td>\n",
" <td>J &amp; J WINNY HOLDINGS LTD.</td>\n",
" </tr>\n",
" <tr>\n",
" <th>26418</th>\n",
" <td>SW-24-33-07-W2</td>\n",
" <td>305 - Invermay</td>\n",
" <td>2019-12-10</td>\n",
" <td>2250000</td>\n",
" <td>1575.10</td>\n",
" <td>Daniel Sliva</td>\n",
" <td>Daniel Sliva et al</td>\n",
" </tr>\n",
" <tr>\n",
" <th>26422</th>\n",
" <td>SW-25-33-07-W2</td>\n",
" <td>305 - Invermay</td>\n",
" <td>2019-12-10</td>\n",
" <td>1800000</td>\n",
" <td>1259.29</td>\n",
" <td>Daniel Sliva</td>\n",
" <td>Daniel Sliva et al</td>\n",
" </tr>\n",
" <tr>\n",
" <th>20006</th>\n",
" <td>SE-28-28-09-W2</td>\n",
" <td>275 - Insinger</td>\n",
" <td>2019-12-10</td>\n",
" <td>1800000</td>\n",
" <td>1284.93</td>\n",
" <td>John &amp; Nancy Zuchkan</td>\n",
" <td>John Zuchkan et al</td>\n",
" </tr>\n",
" <tr>\n",
" <th>14250</th>\n",
" <td>NW-21-25-13-W2</td>\n",
" <td>247 - Kellross</td>\n",
" <td>2019-12-09</td>\n",
" <td>1800000</td>\n",
" <td>1262.63</td>\n",
" <td>Julia Wahl</td>\n",
" <td>Marv Wahl et al</td>\n",
" </tr>\n",
" <tr>\n",
" <th>26420</th>\n",
" <td>NE-14-33-07-W2</td>\n",
" <td>305 - Invermay</td>\n",
" <td>2019-12-10</td>\n",
" <td>1800000</td>\n",
" <td>1258.42</td>\n",
" <td>Daniel Sliva</td>\n",
" <td>Daniel Sliva et al</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"text/plain": [
" LEGAL RM DATE PRICE \\\n",
"20004 SW-07-28-09-W2 275 - Insinger 2019-12-10 4500000 \n",
"21543 NE-27-28-08-W2 275 - Insinger 2005-09-09 4051350 \n",
"27818 NW-01-32-08-W2 305 - Invermay 2002-10-04 4000000 \n",
"2031 NE-03-08-23-W2 070 - Key West 2002-10-04 4000000 \n",
"17185 Parcel# 164702842 250 - Last Mountain Valley 2019-12-09 3762000 \n",
"27667 SE-12-33-07-W2 305 - Invermay 2004-05-13 3700000 \n",
"1921 SE-18-08-22-W2 070 - Key West 2003-06-18 3550000 \n",
"1922 NW-11-08-22-W2 070 - Key West 2003-06-18 3550000 \n",
"17184 NW-24-26-22-W2 250 - Last Mountain Valley 2019-12-09 3056400 \n",
"32049 NW-08-52-16-W2 488 - Torch River 2020-11-30 2526100 \n",
"26418 SW-24-33-07-W2 305 - Invermay 2019-12-10 2250000 \n",
"26422 SW-25-33-07-W2 305 - Invermay 2019-12-10 1800000 \n",
"20006 SE-28-28-09-W2 275 - Insinger 2019-12-10 1800000 \n",
"14250 NW-21-25-13-W2 247 - Kellross 2019-12-09 1800000 \n",
"26420 NE-14-33-07-W2 305 - Invermay 2019-12-10 1800000 \n",
"\n",
" PER/ACRE VENDOR \\\n",
"20004 3132.83 John Zuchkan \n",
"21543 25320.94 Yellowhead Pork Producers Ltd. \n",
"27818 25000.00 Big Sky Farms Inc. \n",
"2031 25157.23 Big Sky Farms Inc. \n",
"17185 836000.00 Victoria & Kent Rhodes \n",
"27667 23125.00 Big Sky Farms Inc. \n",
"1921 22327.04 Big Sky Farms Inc. \n",
"1922 22327.04 Big Sky Farms Inc. \n",
"17184 2147.06 Terry Hamilton \n",
"32049 17360.32 TOPSOIL FARM LAND MANAGEMENT ( \n",
"26418 1575.10 Daniel Sliva \n",
"26422 1259.29 Daniel Sliva \n",
"20006 1284.93 John & Nancy Zuchkan \n",
"14250 1262.63 Julia Wahl \n",
"26420 1258.42 Daniel Sliva \n",
"\n",
" PURCHASER \n",
"20004 John Zuchkan et al \n",
"21543 BIG SKY FARMS INC. \n",
"27818 PRAIRIE HOG PRODUCTION INC. \n",
"2031 PRAIRIE HOG PRODUCTION INC. \n",
"17185 Kent Rhodes et al \n",
"27667 PRAIRIE HOG PRODUCTION INC. \n",
"1921 BIG SKY FINISHERS (NO. 1) INC. \n",
"1922 BIG SKY FINISHERS (NO. 1) INC. \n",
"17184 Murray Hamilton et al \n",
"32049 J & J WINNY HOLDINGS LTD. \n",
"26418 Daniel Sliva et al \n",
"26422 Daniel Sliva et al \n",
"20006 John Zuchkan et al \n",
"14250 Marv Wahl et al \n",
"26420 Daniel Sliva et al "
]
},
"execution_count": 13,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"df.sort_values('PRICE', ascending = False).head(15)[cols]"
]
},
{
"cell_type": "markdown",
"id": "amateur-salvation",
"metadata": {},
"source": [
"15 most expensive per-acre sales\n"
]
},
{
"cell_type": "code",
"execution_count": 14,
"id": "incredible-liability",
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>LEGAL</th>\n",
" <th>RM</th>\n",
" <th>DATE</th>\n",
" <th>PRICE</th>\n",
" <th>PER/ACRE</th>\n",
" <th>VENDOR</th>\n",
" <th>PURCHASER</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>14548</th>\n",
" <td>Parcel# 152172299</td>\n",
" <td>247 - Kellross</td>\n",
" <td>2018-01-02</td>\n",
" <td>50000</td>\n",
" <td>5000000.00</td>\n",
" <td>VILLAGE OF LESTOCK</td>\n",
" <td>RURAL MUNICIPALITY OF KELLROSS</td>\n",
" </tr>\n",
" <tr>\n",
" <th>14555</th>\n",
" <td>Parcel# 152172299</td>\n",
" <td>247 - Kellross</td>\n",
" <td>2017-12-01</td>\n",
" <td>42450</td>\n",
" <td>4245000.00</td>\n",
" <td>CORNERSTONE CREDIT UNION</td>\n",
" <td>VILLAGE OF LESTOCK</td>\n",
" </tr>\n",
" <tr>\n",
" <th>33023</th>\n",
" <td>Parcel# 135354898</td>\n",
" <td>488 - Torch River</td>\n",
" <td>2017-10-03</td>\n",
" <td>370000</td>\n",
" <td>3363636.36</td>\n",
" <td>Quintin &amp; Leanne Wismer</td>\n",
" <td>Quint Stacey &amp; Kari Stevenson</td>\n",
" </tr>\n",
" <tr>\n",
" <th>32909</th>\n",
" <td>Parcel# 203329201</td>\n",
" <td>488 - Torch River</td>\n",
" <td>2018-02-13</td>\n",
" <td>479400</td>\n",
" <td>2996250.00</td>\n",
" <td>Randy &amp; Shirley Zary</td>\n",
" <td>Randy &amp; Shirley Zary</td>\n",
" </tr>\n",
" <tr>\n",
" <th>33019</th>\n",
" <td>Parcel# 145200945</td>\n",
" <td>488 - Torch River</td>\n",
" <td>2017-10-19</td>\n",
" <td>380000</td>\n",
" <td>2923076.92</td>\n",
" <td>Donald &amp; Renee Mohr</td>\n",
" <td>Katie &amp; Jesse Hupaelo</td>\n",
" </tr>\n",
" <tr>\n",
" <th>32937</th>\n",
" <td>Parcel# 135355079</td>\n",
" <td>488 - Torch River</td>\n",
" <td>2018-01-15</td>\n",
" <td>300000</td>\n",
" <td>2727272.73</td>\n",
" <td>Cindy Tyson</td>\n",
" <td>TREVOR &amp; CINDY TYSON</td>\n",
" </tr>\n",
" <tr>\n",
" <th>32741</th>\n",
" <td>Parcel# 135354843</td>\n",
" <td>488 - Torch River</td>\n",
" <td>2018-07-25</td>\n",
" <td>290000</td>\n",
" <td>2636363.64</td>\n",
" <td>Brad &amp; Jill McClements</td>\n",
" <td>Brad McClements</td>\n",
" </tr>\n",
" <tr>\n",
" <th>32191</th>\n",
" <td>Parcel# 153789182</td>\n",
" <td>488 - Torch River</td>\n",
" <td>2020-05-11</td>\n",
" <td>250000</td>\n",
" <td>2272727.27</td>\n",
" <td>Aaron &amp; Kara Krahn</td>\n",
" <td>TAMMY STANKOWSKI</td>\n",
" </tr>\n",
" <tr>\n",
" <th>32271</th>\n",
" <td>Parcel# 203329199</td>\n",
" <td>488 - Torch River</td>\n",
" <td>2020-02-18</td>\n",
" <td>215000</td>\n",
" <td>1791666.67</td>\n",
" <td>Randy &amp; Shirley Zary</td>\n",
" <td>Christopher &amp; Nancy Komperdo</td>\n",
" </tr>\n",
" <tr>\n",
" <th>32114</th>\n",
" <td>Parcel# 135355068</td>\n",
" <td>488 - Torch River</td>\n",
" <td>2020-10-20</td>\n",
" <td>170000</td>\n",
" <td>1545454.55</td>\n",
" <td>Debra Gane</td>\n",
" <td>Debra &amp; Scott Remeshylo</td>\n",
" </tr>\n",
" <tr>\n",
" <th>22476</th>\n",
" <td>Parcel# 163503008</td>\n",
" <td>276 - Foam Lake</td>\n",
" <td>2020-09-28</td>\n",
" <td>595000</td>\n",
" <td>1525641.03</td>\n",
" <td>MICHEAL BRAHAM</td>\n",
" <td>Leonard &amp; Laurie Kayter</td>\n",
" </tr>\n",
" <tr>\n",
" <th>33206</th>\n",
" <td>Parcel# 145200978</td>\n",
" <td>488 - Torch River</td>\n",
" <td>2017-01-19</td>\n",
" <td>195000</td>\n",
" <td>1500000.00</td>\n",
" <td>Garry Nachtegaele</td>\n",
" <td>VERA &amp; LUCAS HEINZE</td>\n",
" </tr>\n",
" <tr>\n",
" <th>32178</th>\n",
" <td>Parcel# 135354944</td>\n",
" <td>488 - Torch River</td>\n",
" <td>2020-07-07</td>\n",
" <td>144500</td>\n",
" <td>1313636.36</td>\n",
" <td>Marion McComb &amp; Shirley Newsom</td>\n",
" <td>TREVOR &amp; BRENDA MINO</td>\n",
" </tr>\n",
" <tr>\n",
" <th>32176</th>\n",
" <td>Parcel# 135354977</td>\n",
" <td>488 - Torch River</td>\n",
" <td>2020-07-07</td>\n",
" <td>144500</td>\n",
" <td>1313636.36</td>\n",
" <td>Marion McComb &amp; Shirley Newsom</td>\n",
" <td>TREVOR &amp; BRENDA MINO</td>\n",
" </tr>\n",
" <tr>\n",
" <th>28732</th>\n",
" <td>Parcel# 113435399</td>\n",
" <td>336 - Sasman</td>\n",
" <td>2018-11-06</td>\n",
" <td>175000</td>\n",
" <td>1250000.00</td>\n",
" <td>William &amp; Shelley Rowein</td>\n",
" <td>William Rowein</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"text/plain": [
" LEGAL RM DATE PRICE PER/ACRE \\\n",
"14548 Parcel# 152172299 247 - Kellross 2018-01-02 50000 5000000.00 \n",
"14555 Parcel# 152172299 247 - Kellross 2017-12-01 42450 4245000.00 \n",
"33023 Parcel# 135354898 488 - Torch River 2017-10-03 370000 3363636.36 \n",
"32909 Parcel# 203329201 488 - Torch River 2018-02-13 479400 2996250.00 \n",
"33019 Parcel# 145200945 488 - Torch River 2017-10-19 380000 2923076.92 \n",
"32937 Parcel# 135355079 488 - Torch River 2018-01-15 300000 2727272.73 \n",
"32741 Parcel# 135354843 488 - Torch River 2018-07-25 290000 2636363.64 \n",
"32191 Parcel# 153789182 488 - Torch River 2020-05-11 250000 2272727.27 \n",
"32271 Parcel# 203329199 488 - Torch River 2020-02-18 215000 1791666.67 \n",
"32114 Parcel# 135355068 488 - Torch River 2020-10-20 170000 1545454.55 \n",
"22476 Parcel# 163503008 276 - Foam Lake 2020-09-28 595000 1525641.03 \n",
"33206 Parcel# 145200978 488 - Torch River 2017-01-19 195000 1500000.00 \n",
"32178 Parcel# 135354944 488 - Torch River 2020-07-07 144500 1313636.36 \n",
"32176 Parcel# 135354977 488 - Torch River 2020-07-07 144500 1313636.36 \n",
"28732 Parcel# 113435399 336 - Sasman 2018-11-06 175000 1250000.00 \n",
"\n",
" VENDOR PURCHASER \n",
"14548 VILLAGE OF LESTOCK RURAL MUNICIPALITY OF KELLROSS \n",
"14555 CORNERSTONE CREDIT UNION VILLAGE OF LESTOCK \n",
"33023 Quintin & Leanne Wismer Quint Stacey & Kari Stevenson \n",
"32909 Randy & Shirley Zary Randy & Shirley Zary \n",
"33019 Donald & Renee Mohr Katie & Jesse Hupaelo \n",
"32937 Cindy Tyson TREVOR & CINDY TYSON \n",
"32741 Brad & Jill McClements Brad McClements \n",
"32191 Aaron & Kara Krahn TAMMY STANKOWSKI \n",
"32271 Randy & Shirley Zary Christopher & Nancy Komperdo \n",
"32114 Debra Gane Debra & Scott Remeshylo \n",
"22476 MICHEAL BRAHAM Leonard & Laurie Kayter \n",
"33206 Garry Nachtegaele VERA & LUCAS HEINZE \n",
"32178 Marion McComb & Shirley Newsom TREVOR & BRENDA MINO \n",
"32176 Marion McComb & Shirley Newsom TREVOR & BRENDA MINO \n",
"28732 William & Shelley Rowein William Rowein "
]
},
"execution_count": 14,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"df.sort_values('PER/ACRE', ascending = False).head(15)[cols]"
]
},
{
"cell_type": "markdown",
"id": "documentary-wednesday",
"metadata": {},
"source": [
"15 buyers who spent the most and the amounts they paid.\n"
]
},
{
"cell_type": "code",
"execution_count": 83,
"id": "lesser-advance",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"PURCHASER\n",
"ANDJELIC LAND INC. 27268145\n",
"J & J WINNY HOLDINGS LTD. 23954578\n",
"Topsoil Farm Land Mgmt (II) 22688525\n",
"Maxcrop Landing Ltd. 16124110\n",
"Murray Hamilton et al 15772000\n",
"INPUT CAPITAL CORP. 12505374\n",
"PRAIRIE HOG PRODUCTION INC. 11700000\n",
"Robert Andjelic 10241000\n",
"HRM the Queen (Canada) 9577731\n",
"CAROLYNN WALLIN 9514690\n",
"John Zuchkan et al 9000000\n",
"102053876 SASKATCHEWAN LTD. 8805756\n",
"SS UNIMIX AGRICULTURE CORPORAT 7696200\n",
"211413 Saskatchewan Inc. 7412232\n",
"Marv Wahl et al 7200000\n",
"Name: PRICE, dtype: int64"
]
},
"execution_count": 83,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"df.groupby('PURCHASER').sum().PRICE.sort_values(ascending = False).head(15)"
]
},
{
"cell_type": "markdown",
"id": "reflected-salvation",
"metadata": {},
"source": [
"15 buyers who bought the most acres and how many acres they got. It looks like the government is identified in differnet ways (HMQ, HQM(Canada), etc. These would need to be standardized to get more accurate totals."
]
},
{
"cell_type": "code",
"execution_count": 84,
"id": "waiting-escape",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"PURCHASER\n",
"HRM the Queen (Canada) 46662.89\n",
"Maxcrop Landing Ltd. 29607.50\n",
"ANDJELIC LAND INC. 26875.89\n",
"211413 Saskatchewan Inc. 20628.33\n",
"Topsoil Farm Land Mgmt (II) 19880.04\n",
"STAN DELORME, ET AL 17310.85\n",
"HRM the Queen (Sask) 16212.33\n",
"Robert Andjelic 14974.94\n",
"Murray Hamilton et al 14288.60\n",
"J & J WINNY HOLDINGS LTD. 13604.51\n",
"HMQ 11664.65\n",
"HMQ (Canada) 10429.68\n",
"HMQ(Canada) 10411.45\n",
"DOUGLAS & BRENDA HANNAH 10032.35\n",
"COWESSESS TLE HOLDINGS INC. 9821.00\n",
"Name: ACRES, dtype: float64"
]
},
"execution_count": 84,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"df.groupby('PURCHASER').sum().ACRES.sort_values(ascending = False).head(15)"
]
},
{
"cell_type": "markdown",
"id": "spiritual-redhead",
"metadata": {},
"source": [
"Biggest change in per-acre price from one sale to the next. It seems like a lot of these lots stayed in the family or moved between farms."
]
},
{
"cell_type": "code",
"execution_count": 27,
"id": "nervous-communications",
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>LEGAL</th>\n",
" <th>RM</th>\n",
" <th>DATE</th>\n",
" <th>PRICE</th>\n",
" <th>PER/ACRE</th>\n",
" <th>VENDOR</th>\n",
" <th>PURCHASER</th>\n",
" <th>PRICE_CHANGE</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>20004</th>\n",
" <td>SW-07-28-09-W2</td>\n",
" <td>275 - Insinger</td>\n",
" <td>2019-12-10</td>\n",
" <td>4500000</td>\n",
" <td>3132.83</td>\n",
" <td>John Zuchkan</td>\n",
" <td>John Zuchkan et al</td>\n",
" <td>4000000.0</td>\n",
" </tr>\n",
" <tr>\n",
" <th>21543</th>\n",
" <td>NE-27-28-08-W2</td>\n",
" <td>275 - Insinger</td>\n",
" <td>2005-09-09</td>\n",
" <td>4051350</td>\n",
" <td>25320.94</td>\n",
" <td>Yellowhead Pork Producers Ltd.</td>\n",
" <td>BIG SKY FARMS INC.</td>\n",
" <td>3979350.0</td>\n",
" </tr>\n",
" <tr>\n",
" <th>27818</th>\n",
" <td>NW-01-32-08-W2</td>\n",
" <td>305 - Invermay</td>\n",
" <td>2002-10-04</td>\n",
" <td>4000000</td>\n",
" <td>25000.00</td>\n",
" <td>Big Sky Farms Inc.</td>\n",
" <td>PRAIRIE HOG PRODUCTION INC.</td>\n",
" <td>3958000.0</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2031</th>\n",
" <td>NE-03-08-23-W2</td>\n",
" <td>070 - Key West</td>\n",
" <td>2002-10-04</td>\n",
" <td>4000000</td>\n",
" <td>25157.23</td>\n",
" <td>Big Sky Farms Inc.</td>\n",
" <td>PRAIRIE HOG PRODUCTION INC.</td>\n",
" <td>3940000.0</td>\n",
" </tr>\n",
" <tr>\n",
" <th>27667</th>\n",
" <td>SE-12-33-07-W2</td>\n",
" <td>305 - Invermay</td>\n",
" <td>2004-05-13</td>\n",
" <td>3700000</td>\n",
" <td>23125.00</td>\n",
" <td>Big Sky Farms Inc.</td>\n",
" <td>PRAIRIE HOG PRODUCTION INC.</td>\n",
" <td>3628000.0</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1922</th>\n",
" <td>NW-11-08-22-W2</td>\n",
" <td>070 - Key West</td>\n",
" <td>2003-06-18</td>\n",
" <td>3550000</td>\n",
" <td>22327.04</td>\n",
" <td>Big Sky Farms Inc.</td>\n",
" <td>BIG SKY FINISHERS (NO. 1) INC.</td>\n",
" <td>3496000.0</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1921</th>\n",
" <td>SE-18-08-22-W2</td>\n",
" <td>070 - Key West</td>\n",
" <td>2003-06-18</td>\n",
" <td>3550000</td>\n",
" <td>22327.04</td>\n",
" <td>Big Sky Farms Inc.</td>\n",
" <td>BIG SKY FINISHERS (NO. 1) INC.</td>\n",
" <td>3488000.0</td>\n",
" </tr>\n",
" <tr>\n",
" <th>17185</th>\n",
" <td>Parcel# 164702842</td>\n",
" <td>250 - Last Mountain Valley</td>\n",
" <td>2019-12-09</td>\n",
" <td>3762000</td>\n",
" <td>836000.00</td>\n",
" <td>Victoria &amp; Kent Rhodes</td>\n",
" <td>Kent Rhodes et al</td>\n",
" <td>3344000.0</td>\n",
" </tr>\n",
" <tr>\n",
" <th>17184</th>\n",
" <td>NW-24-26-22-W2</td>\n",
" <td>250 - Last Mountain Valley</td>\n",
" <td>2019-12-09</td>\n",
" <td>3056400</td>\n",
" <td>2147.06</td>\n",
" <td>Terry Hamilton</td>\n",
" <td>Murray Hamilton et al</td>\n",
" <td>2716800.0</td>\n",
" </tr>\n",
" <tr>\n",
" <th>33703</th>\n",
" <td>NW-08-52-16-W2</td>\n",
" <td>488 - Torch River</td>\n",
" <td>2015-06-03</td>\n",
" <td>1789155</td>\n",
" <td>12295.75</td>\n",
" <td>Torch River Agr Corp</td>\n",
" <td>Topsoil Farm Land Mgmt (II)</td>\n",
" <td>1714787.0</td>\n",
" </tr>\n",
" <tr>\n",
" <th>20006</th>\n",
" <td>SE-28-28-09-W2</td>\n",
" <td>275 - Insinger</td>\n",
" <td>2019-12-10</td>\n",
" <td>1800000</td>\n",
" <td>1284.93</td>\n",
" <td>John &amp; Nancy Zuchkan</td>\n",
" <td>John Zuchkan et al</td>\n",
" <td>1600000.0</td>\n",
" </tr>\n",
" <tr>\n",
" <th>5870</th>\n",
" <td>NE-32-20-05-W2</td>\n",
" <td>184 - Grayson</td>\n",
" <td>2019-12-09</td>\n",
" <td>1620000</td>\n",
" <td>1133.07</td>\n",
" <td>Herbert &amp; Monica Haas</td>\n",
" <td>JBH FARMS LTD. et al</td>\n",
" <td>1595000.0</td>\n",
" </tr>\n",
" <tr>\n",
" <th>5878</th>\n",
" <td>SE-32-20-05-W2</td>\n",
" <td>184 - Grayson</td>\n",
" <td>2019-12-09</td>\n",
" <td>1620000</td>\n",
" <td>1124.72</td>\n",
" <td>Herbert &amp; Monica Haas</td>\n",
" <td>JBH FARMS LTD. et al</td>\n",
" <td>1440000.0</td>\n",
" </tr>\n",
" <tr>\n",
" <th>32358</th>\n",
" <td>SW-20-51-14-W2</td>\n",
" <td>488 - Torch River</td>\n",
" <td>2019-12-09</td>\n",
" <td>1566000</td>\n",
" <td>1199.17</td>\n",
" <td>Emily Backstrom</td>\n",
" <td>CONCENTRA TRUST / LA SOCIETE D</td>\n",
" <td>1392000.0</td>\n",
" </tr>\n",
" <tr>\n",
" <th>17173</th>\n",
" <td>SE-25-26-22-W2</td>\n",
" <td>250 - Last Mountain Valley</td>\n",
" <td>2019-12-09</td>\n",
" <td>1436400</td>\n",
" <td>1006.11</td>\n",
" <td>Terry Hamilton</td>\n",
" <td>Murray Hamilton et al</td>\n",
" <td>1386400.0</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"text/plain": [
" LEGAL RM DATE PRICE \\\n",
"20004 SW-07-28-09-W2 275 - Insinger 2019-12-10 4500000 \n",
"21543 NE-27-28-08-W2 275 - Insinger 2005-09-09 4051350 \n",
"27818 NW-01-32-08-W2 305 - Invermay 2002-10-04 4000000 \n",
"2031 NE-03-08-23-W2 070 - Key West 2002-10-04 4000000 \n",
"27667 SE-12-33-07-W2 305 - Invermay 2004-05-13 3700000 \n",
"1922 NW-11-08-22-W2 070 - Key West 2003-06-18 3550000 \n",
"1921 SE-18-08-22-W2 070 - Key West 2003-06-18 3550000 \n",
"17185 Parcel# 164702842 250 - Last Mountain Valley 2019-12-09 3762000 \n",
"17184 NW-24-26-22-W2 250 - Last Mountain Valley 2019-12-09 3056400 \n",
"33703 NW-08-52-16-W2 488 - Torch River 2015-06-03 1789155 \n",
"20006 SE-28-28-09-W2 275 - Insinger 2019-12-10 1800000 \n",
"5870 NE-32-20-05-W2 184 - Grayson 2019-12-09 1620000 \n",
"5878 SE-32-20-05-W2 184 - Grayson 2019-12-09 1620000 \n",
"32358 SW-20-51-14-W2 488 - Torch River 2019-12-09 1566000 \n",
"17173 SE-25-26-22-W2 250 - Last Mountain Valley 2019-12-09 1436400 \n",
"\n",
" PER/ACRE VENDOR \\\n",
"20004 3132.83 John Zuchkan \n",
"21543 25320.94 Yellowhead Pork Producers Ltd. \n",
"27818 25000.00 Big Sky Farms Inc. \n",
"2031 25157.23 Big Sky Farms Inc. \n",
"27667 23125.00 Big Sky Farms Inc. \n",
"1922 22327.04 Big Sky Farms Inc. \n",
"1921 22327.04 Big Sky Farms Inc. \n",
"17185 836000.00 Victoria & Kent Rhodes \n",
"17184 2147.06 Terry Hamilton \n",
"33703 12295.75 Torch River Agr Corp \n",
"20006 1284.93 John & Nancy Zuchkan \n",
"5870 1133.07 Herbert & Monica Haas \n",
"5878 1124.72 Herbert & Monica Haas \n",
"32358 1199.17 Emily Backstrom \n",
"17173 1006.11 Terry Hamilton \n",
"\n",
" PURCHASER PRICE_CHANGE \n",
"20004 John Zuchkan et al 4000000.0 \n",
"21543 BIG SKY FARMS INC. 3979350.0 \n",
"27818 PRAIRIE HOG PRODUCTION INC. 3958000.0 \n",
"2031 PRAIRIE HOG PRODUCTION INC. 3940000.0 \n",
"27667 PRAIRIE HOG PRODUCTION INC. 3628000.0 \n",
"1922 BIG SKY FINISHERS (NO. 1) INC. 3496000.0 \n",
"1921 BIG SKY FINISHERS (NO. 1) INC. 3488000.0 \n",
"17185 Kent Rhodes et al 3344000.0 \n",
"17184 Murray Hamilton et al 2716800.0 \n",
"33703 Topsoil Farm Land Mgmt (II) 1714787.0 \n",
"20006 John Zuchkan et al 1600000.0 \n",
"5870 JBH FARMS LTD. et al 1595000.0 \n",
"5878 JBH FARMS LTD. et al 1440000.0 \n",
"32358 CONCENTRA TRUST / LA SOCIETE D 1392000.0 \n",
"17173 Murray Hamilton et al 1386400.0 "
]
},
"execution_count": 27,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"df.sort_values('PRICE_CHANGE', ascending = False).head(15)[cols + ['PRICE_CHANGE']]"
]
},
{
"cell_type": "markdown",
"id": "prospective-command",
"metadata": {},
"source": [
"Total sales per year\n"
]
},
{
"cell_type": "code",
"execution_count": 89,
"id": "compatible-toyota",
"metadata": {},
"outputs": [
{
"data": {
"application/vnd.plotly.v1+json": {
"config": {
"plotlyServerURL": "https://plot.ly"
},
"data": [
{
"alignmentgroup": "True",
"hovertemplate": "variable=PRICE<br>DATE=%{x}<br>value=%{y}<extra></extra>",
"legendgroup": "PRICE",
"marker": {
"color": "#636efa"
},
"name": "PRICE",
"offsetgroup": "PRICE",
"orientation": "v",
"showlegend": true,
"textposition": "auto",
"type": "bar",
"x": [
1993,
1994,
1995,
1996,
1997,
1998,
1999,
2000,
2001,
2002,
2003,
2004,
2005,
2006,
2007,
2008,
2009,
2010,
2011,
2012,
2013,
2014,
2015,
2016,
2017,
2018,
2019,
2020,
2021
],
"xaxis": "x",
"y": [
2889850,
21644818,
40477100,
39952496,
49282770,
48986830,
42625084,
42779775,
36105031,
50359905,
62850793,
49642214,
41761697,
40752665,
63903165,
72931743,
64879057,
54023740,
101438394,
108790796,
131771327,
150968407,
133287471,
133232354,
146776094,
188054276,
239697007,
186182583,
27680964
],
"yaxis": "y"
}
],
"layout": {
"autosize": true,
"barmode": "relative",
"legend": {
"title": {
"text": "variable"
},
"tracegroupgap": 0
},
"margin": {
"t": 60
},
"template": {
"data": {
"bar": [
{
"error_x": {
"color": "#2a3f5f"
},
"error_y": {
"color": "#2a3f5f"
},
"marker": {
"line": {
"color": "#E5ECF6",
"width": 0.5
}
},
"type": "bar"
}
],
"barpolar": [
{
"marker": {
"line": {
"color": "#E5ECF6",
"width": 0.5
}
},
"type": "barpolar"
}
],
"carpet": [
{
"aaxis": {
"endlinecolor": "#2a3f5f",
"gridcolor": "white",
"linecolor": "white",
"minorgridcolor": "white",
"startlinecolor": "#2a3f5f"
},
"baxis": {
"endlinecolor": "#2a3f5f",
"gridcolor": "white",
"linecolor": "white",
"minorgridcolor": "white",
"startlinecolor": "#2a3f5f"
},
"type": "carpet"
}
],
"choropleth": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"type": "choropleth"
}
],
"contour": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1,
"#f0f921"
]
],
"type": "contour"
}
],
"contourcarpet": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"type": "contourcarpet"
}
],
"heatmap": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1,
"#f0f921"
]
],
"type": "heatmap"
}
],
"heatmapgl": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1,
"#f0f921"
]
],
"type": "heatmapgl"
}
],
"histogram": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "histogram"
}
],
"histogram2d": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1,
"#f0f921"
]
],
"type": "histogram2d"
}
],
"histogram2dcontour": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1,
"#f0f921"
]
],
"type": "histogram2dcontour"
}
],
"mesh3d": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"type": "mesh3d"
}
],
"parcoords": [
{
"line": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "parcoords"
}
],
"pie": [
{
"automargin": true,
"type": "pie"
}
],
"scatter": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatter"
}
],
"scatter3d": [
{
"line": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatter3d"
}
],
"scattercarpet": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scattercarpet"
}
],
"scattergeo": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scattergeo"
}
],
"scattergl": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scattergl"
}
],
"scattermapbox": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scattermapbox"
}
],
"scatterpolar": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatterpolar"
}
],
"scatterpolargl": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatterpolargl"
}
],
"scatterternary": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatterternary"
}
],
"surface": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1,
"#f0f921"
]
],
"type": "surface"
}
],
"table": [
{
"cells": {
"fill": {
"color": "#EBF0F8"
},
"line": {
"color": "white"
}
},
"header": {
"fill": {
"color": "#C8D4E3"
},
"line": {
"color": "white"
}
},
"type": "table"
}
]
},
"layout": {
"annotationdefaults": {
"arrowcolor": "#2a3f5f",
"arrowhead": 0,
"arrowwidth": 1
},
"coloraxis": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"colorscale": {
"diverging": [
[
0,
"#8e0152"
],
[
0.1,
"#c51b7d"
],
[
0.2,
"#de77ae"
],
[
0.3,
"#f1b6da"
],
[
0.4,
"#fde0ef"
],
[
0.5,
"#f7f7f7"
],
[
0.6,
"#e6f5d0"
],
[
0.7,
"#b8e186"
],
[
0.8,
"#7fbc41"
],
[
0.9,
"#4d9221"
],
[
1,
"#276419"
]
],
"sequential": [
[
0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1,
"#f0f921"
]
],
"sequentialminus": [
[
0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1,
"#f0f921"
]
]
},
"colorway": [
"#636efa",
"#EF553B",
"#00cc96",
"#ab63fa",
"#FFA15A",
"#19d3f3",
"#FF6692",
"#B6E880",
"#FF97FF",
"#FECB52"
],
"font": {
"color": "#2a3f5f"
},
"geo": {
"bgcolor": "white",
"lakecolor": "white",
"landcolor": "#E5ECF6",
"showlakes": true,
"showland": true,
"subunitcolor": "white"
},
"hoverlabel": {
"align": "left"
},
"hovermode": "closest",
"mapbox": {
"style": "light"
},
"paper_bgcolor": "white",
"plot_bgcolor": "#E5ECF6",
"polar": {
"angularaxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
},
"bgcolor": "#E5ECF6",
"radialaxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
}
},
"scene": {
"xaxis": {
"backgroundcolor": "#E5ECF6",
"gridcolor": "white",
"gridwidth": 2,
"linecolor": "white",
"showbackground": true,
"ticks": "",
"zerolinecolor": "white"
},
"yaxis": {
"backgroundcolor": "#E5ECF6",
"gridcolor": "white",
"gridwidth": 2,
"linecolor": "white",
"showbackground": true,
"ticks": "",
"zerolinecolor": "white"
},
"zaxis": {
"backgroundcolor": "#E5ECF6",
"gridcolor": "white",
"gridwidth": 2,
"linecolor": "white",
"showbackground": true,
"ticks": "",
"zerolinecolor": "white"
}
},
"shapedefaults": {
"line": {
"color": "#2a3f5f"
}
},
"ternary": {
"aaxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
},
"baxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
},
"bgcolor": "#E5ECF6",
"caxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
}
},
"title": {
"x": 0.05
},
"xaxis": {
"automargin": true,
"gridcolor": "white",
"linecolor": "white",
"ticks": "",
"title": {
"standoff": 15
},
"zerolinecolor": "white",
"zerolinewidth": 2
},
"yaxis": {
"automargin": true,
"gridcolor": "white",
"linecolor": "white",
"ticks": "",
"title": {
"standoff": 15
},
"zerolinecolor": "white",
"zerolinewidth": 2
}
}
},
"xaxis": {
"anchor": "y",
"autorange": true,
"domain": [
0,
1
],
"range": [
1992.5,
2021.5
],
"title": {
"text": "DATE"
},
"type": "linear"
},
"yaxis": {
"anchor": "x",
"autorange": true,
"domain": [
0,
1
],
"range": [
0,
252312638.9473684
],
"title": {
"text": "value"
},
"type": "linear"
}
}
},
"image/png": "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",
"text/html": [
"<div> <div id=\"f87a487a-66e4-46d1-94e3-077366aaac86\" class=\"plotly-graph-div\" style=\"height:525px; width:100%;\"></div> <script type=\"text/javascript\"> require([\"plotly\"], function(Plotly) { window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById(\"f87a487a-66e4-46d1-94e3-077366aaac86\")) { Plotly.newPlot( \"f87a487a-66e4-46d1-94e3-077366aaac86\", [{\"alignmentgroup\": \"True\", \"hovertemplate\": \"variable=PRICE<br>DATE=%{x}<br>value=%{y}<extra></extra>\", \"legendgroup\": \"PRICE\", \"marker\": {\"color\": \"#636efa\"}, \"name\": \"PRICE\", \"offsetgroup\": \"PRICE\", \"orientation\": \"v\", \"showlegend\": true, \"textposition\": \"auto\", \"type\": \"bar\", \"x\": [1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021], \"xaxis\": \"x\", \"y\": [2889850, 21644818, 40477100, 39952496, 49282770, 48986830, 42625084, 42779775, 36105031, 50359905, 62850793, 49642214, 41761697, 40752665, 63903165, 72931743, 64879057, 54023740, 101438394, 108790796, 131771327, 150968407, 133287471, 133232354, 146776094, 188054276, 239697007, 186182583, 27680964], \"yaxis\": \"y\"}], {\"barmode\": \"relative\", \"legend\": {\"title\": {\"text\": \"variable\"}, \"tracegroupgap\": 0}, \"margin\": {\"t\": 60}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"carpet\": [{\"aaxis\": {\"endlinecolor\": \"#2a3f5f\", \"gridcolor\": \"white\", \"linecolor\": \"white\", \"minorgridcolor\": \"white\", \"startlinecolor\": \"#2a3f5f\"}, \"baxis\": {\"endlinecolor\": \"#2a3f5f\", \"gridcolor\": \"white\", \"linecolor\": \"white\", \"minorgridcolor\": \"white\", \"startlinecolor\": \"#2a3f5f\"}, \"type\": \"carpet\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"contour\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"heatmap\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"heatmap\"}], \"heatmapgl\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"histogram2d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"histogram2d\"}], \"histogram2dcontour\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"surface\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"diverging\": [[0, \"#8e0152\"], [0.1, \"#c51b7d\"], [0.2, \"#de77ae\"], [0.3, \"#f1b6da\"], [0.4, \"#fde0ef\"], [0.5, \"#f7f7f7\"], [0.6, \"#e6f5d0\"], [0.7, \"#b8e186\"], [0.8, \"#7fbc41\"], [0.9, \"#4d9221\"], [1, \"#276419\"]], \"sequential\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"sequentialminus\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 1.0], \"title\": {\"text\": \"DATE\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"title\": {\"text\": \"value\"}}}, {\"responsive\": true} ).then(function(){\n",
" \n",
"var gd = document.getElementById('f87a487a-66e4-46d1-94e3-077366aaac86');\n",
"var x = new MutationObserver(function (mutations, observer) {{\n",
" var display = window.getComputedStyle(gd).display;\n",
" if (!display || display === 'none') {{\n",
" console.log([gd, 'removed!']);\n",
" Plotly.purge(gd);\n",
" observer.disconnect();\n",
" }}\n",
"}});\n",
"\n",
"// Listen for the removal of the full notebook cells\n",
"var notebookContainer = gd.closest('#notebook-container');\n",
"if (notebookContainer) {{\n",
" x.observe(notebookContainer, {childList: true});\n",
"}}\n",
"\n",
"// Listen for the clearing of the current output cell\n",
"var outputEl = gd.closest('.output');\n",
"if (outputEl) {{\n",
" x.observe(outputEl, {childList: true});\n",
"}}\n",
"\n",
" }) }; }); </script> </div>"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"df.groupby(df.DATE.dt.year).PRICE.sum().plot.bar()"
]
},
{
"cell_type": "markdown",
"id": "organic-cheese",
"metadata": {},
"source": [
"Average change in per-acre price per year"
]
},
{
"cell_type": "code",
"execution_count": 90,
"id": "australian-abraham",
"metadata": {},
"outputs": [
{
"data": {
"application/vnd.plotly.v1+json": {
"config": {
"plotlyServerURL": "https://plot.ly"
},
"data": [
{
"alignmentgroup": "True",
"hovertemplate": "variable=ACRE_PRICE_CHANGE<br>DATE=%{x}<br>value=%{y}<extra></extra>",
"legendgroup": "ACRE_PRICE_CHANGE",
"marker": {
"color": "#636efa"
},
"name": "ACRE_PRICE_CHANGE",
"offsetgroup": "ACRE_PRICE_CHANGE",
"orientation": "v",
"showlegend": true,
"textposition": "auto",
"type": "bar",
"x": [
1993,
1994,
1995,
1996,
1997,
1998,
1999,
2000,
2001,
2002,
2003,
2004,
2005,
2006,
2007,
2008,
2009,
2010,
2011,
2012,
2013,
2014,
2015,
2016,
2017,
2018,
2019,
2020,
2021
],
"xaxis": "x",
"y": [
0,
5.556410256410256,
14.867407407407411,
38.13627906976746,
15.452070063694267,
-98.91688385269127,
102.07728365384605,
95.4862898550725,
-122.07068111455109,
127.86200000000014,
146.6949293286219,
61.48031468531476,
100.55561822125809,
39.81231075697209,
38.3792380952381,
71.51918770581786,
125.62324879227042,
53.84332819722653,
160.5841043307089,
198.01446298227324,
278.575109947644,
1417.7643281938329,
194.40536247334765,
347.19082004555804,
303.1349880668258,
1080.88422548121,
515.4515553339984,
593.4486772486779,
424.0407142857144
],
"yaxis": "y"
}
],
"layout": {
"autosize": true,
"barmode": "relative",
"legend": {
"title": {
"text": "variable"
},
"tracegroupgap": 0
},
"margin": {
"t": 60
},
"template": {
"data": {
"bar": [
{
"error_x": {
"color": "#2a3f5f"
},
"error_y": {
"color": "#2a3f5f"
},
"marker": {
"line": {
"color": "#E5ECF6",
"width": 0.5
}
},
"type": "bar"
}
],
"barpolar": [
{
"marker": {
"line": {
"color": "#E5ECF6",
"width": 0.5
}
},
"type": "barpolar"
}
],
"carpet": [
{
"aaxis": {
"endlinecolor": "#2a3f5f",
"gridcolor": "white",
"linecolor": "white",
"minorgridcolor": "white",
"startlinecolor": "#2a3f5f"
},
"baxis": {
"endlinecolor": "#2a3f5f",
"gridcolor": "white",
"linecolor": "white",
"minorgridcolor": "white",
"startlinecolor": "#2a3f5f"
},
"type": "carpet"
}
],
"choropleth": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"type": "choropleth"
}
],
"contour": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1,
"#f0f921"
]
],
"type": "contour"
}
],
"contourcarpet": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"type": "contourcarpet"
}
],
"heatmap": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1,
"#f0f921"
]
],
"type": "heatmap"
}
],
"heatmapgl": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1,
"#f0f921"
]
],
"type": "heatmapgl"
}
],
"histogram": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "histogram"
}
],
"histogram2d": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1,
"#f0f921"
]
],
"type": "histogram2d"
}
],
"histogram2dcontour": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1,
"#f0f921"
]
],
"type": "histogram2dcontour"
}
],
"mesh3d": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"type": "mesh3d"
}
],
"parcoords": [
{
"line": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "parcoords"
}
],
"pie": [
{
"automargin": true,
"type": "pie"
}
],
"scatter": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatter"
}
],
"scatter3d": [
{
"line": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatter3d"
}
],
"scattercarpet": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scattercarpet"
}
],
"scattergeo": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scattergeo"
}
],
"scattergl": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scattergl"
}
],
"scattermapbox": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scattermapbox"
}
],
"scatterpolar": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatterpolar"
}
],
"scatterpolargl": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatterpolargl"
}
],
"scatterternary": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatterternary"
}
],
"surface": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1,
"#f0f921"
]
],
"type": "surface"
}
],
"table": [
{
"cells": {
"fill": {
"color": "#EBF0F8"
},
"line": {
"color": "white"
}
},
"header": {
"fill": {
"color": "#C8D4E3"
},
"line": {
"color": "white"
}
},
"type": "table"
}
]
},
"layout": {
"annotationdefaults": {
"arrowcolor": "#2a3f5f",
"arrowhead": 0,
"arrowwidth": 1
},
"coloraxis": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"colorscale": {
"diverging": [
[
0,
"#8e0152"
],
[
0.1,
"#c51b7d"
],
[
0.2,
"#de77ae"
],
[
0.3,
"#f1b6da"
],
[
0.4,
"#fde0ef"
],
[
0.5,
"#f7f7f7"
],
[
0.6,
"#e6f5d0"
],
[
0.7,
"#b8e186"
],
[
0.8,
"#7fbc41"
],
[
0.9,
"#4d9221"
],
[
1,
"#276419"
]
],
"sequential": [
[
0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1,
"#f0f921"
]
],
"sequentialminus": [
[
0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1,
"#f0f921"
]
]
},
"colorway": [
"#636efa",
"#EF553B",
"#00cc96",
"#ab63fa",
"#FFA15A",
"#19d3f3",
"#FF6692",
"#B6E880",
"#FF97FF",
"#FECB52"
],
"font": {
"color": "#2a3f5f"
},
"geo": {
"bgcolor": "white",
"lakecolor": "white",
"landcolor": "#E5ECF6",
"showlakes": true,
"showland": true,
"subunitcolor": "white"
},
"hoverlabel": {
"align": "left"
},
"hovermode": "closest",
"mapbox": {
"style": "light"
},
"paper_bgcolor": "white",
"plot_bgcolor": "#E5ECF6",
"polar": {
"angularaxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
},
"bgcolor": "#E5ECF6",
"radialaxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
}
},
"scene": {
"xaxis": {
"backgroundcolor": "#E5ECF6",
"gridcolor": "white",
"gridwidth": 2,
"linecolor": "white",
"showbackground": true,
"ticks": "",
"zerolinecolor": "white"
},
"yaxis": {
"backgroundcolor": "#E5ECF6",
"gridcolor": "white",
"gridwidth": 2,
"linecolor": "white",
"showbackground": true,
"ticks": "",
"zerolinecolor": "white"
},
"zaxis": {
"backgroundcolor": "#E5ECF6",
"gridcolor": "white",
"gridwidth": 2,
"linecolor": "white",
"showbackground": true,
"ticks": "",
"zerolinecolor": "white"
}
},
"shapedefaults": {
"line": {
"color": "#2a3f5f"
}
},
"ternary": {
"aaxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
},
"baxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
},
"bgcolor": "#E5ECF6",
"caxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
}
},
"title": {
"x": 0.05
},
"xaxis": {
"automargin": true,
"gridcolor": "white",
"linecolor": "white",
"ticks": "",
"title": {
"standoff": 15
},
"zerolinecolor": "white",
"zerolinewidth": 2
},
"yaxis": {
"automargin": true,
"gridcolor": "white",
"linecolor": "white",
"ticks": "",
"title": {
"standoff": 15
},
"zerolinecolor": "white",
"zerolinewidth": 2
}
}
},
"xaxis": {
"anchor": "y",
"autorange": true,
"domain": [
0,
1
],
"range": [
1992.5,
2021.5
],
"title": {
"text": "DATE"
},
"type": "linear"
},
"yaxis": {
"anchor": "x",
"autorange": true,
"domain": [
0,
1
],
"range": [
-207.6170705205724,
1503.3107175998541
],
"title": {
"text": "value"
},
"type": "linear"
}
}
},
"image/png": "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",
"text/html": [
"<div> <div id=\"e74d43c2-87d3-472c-90e1-77c68fba490c\" class=\"plotly-graph-div\" style=\"height:525px; width:100%;\"></div> <script type=\"text/javascript\"> require([\"plotly\"], function(Plotly) { window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById(\"e74d43c2-87d3-472c-90e1-77c68fba490c\")) { Plotly.newPlot( \"e74d43c2-87d3-472c-90e1-77c68fba490c\", [{\"alignmentgroup\": \"True\", \"hovertemplate\": \"variable=ACRE_PRICE_CHANGE<br>DATE=%{x}<br>value=%{y}<extra></extra>\", \"legendgroup\": \"ACRE_PRICE_CHANGE\", \"marker\": {\"color\": \"#636efa\"}, \"name\": \"ACRE_PRICE_CHANGE\", \"offsetgroup\": \"ACRE_PRICE_CHANGE\", \"orientation\": \"v\", \"showlegend\": true, \"textposition\": \"auto\", \"type\": \"bar\", \"x\": [1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021], \"xaxis\": \"x\", \"y\": [0.0, 5.556410256410256, 14.867407407407411, 38.13627906976746, 15.452070063694267, -98.91688385269127, 102.07728365384605, 95.4862898550725, -122.07068111455109, 127.86200000000014, 146.6949293286219, 61.48031468531476, 100.55561822125809, 39.81231075697209, 38.3792380952381, 71.51918770581786, 125.62324879227042, 53.84332819722653, 160.5841043307089, 198.01446298227324, 278.575109947644, 1417.7643281938329, 194.40536247334765, 347.19082004555804, 303.1349880668258, 1080.88422548121, 515.4515553339984, 593.4486772486779, 424.0407142857144], \"yaxis\": \"y\"}], {\"barmode\": \"relative\", \"legend\": {\"title\": {\"text\": \"variable\"}, \"tracegroupgap\": 0}, \"margin\": {\"t\": 60}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"carpet\": [{\"aaxis\": {\"endlinecolor\": \"#2a3f5f\", \"gridcolor\": \"white\", \"linecolor\": \"white\", \"minorgridcolor\": \"white\", \"startlinecolor\": \"#2a3f5f\"}, \"baxis\": {\"endlinecolor\": \"#2a3f5f\", \"gridcolor\": \"white\", \"linecolor\": \"white\", \"minorgridcolor\": \"white\", \"startlinecolor\": \"#2a3f5f\"}, \"type\": \"carpet\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"contour\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"heatmap\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"heatmap\"}], \"heatmapgl\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"histogram2d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"histogram2d\"}], \"histogram2dcontour\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"surface\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"diverging\": [[0, \"#8e0152\"], [0.1, \"#c51b7d\"], [0.2, \"#de77ae\"], [0.3, \"#f1b6da\"], [0.4, \"#fde0ef\"], [0.5, \"#f7f7f7\"], [0.6, \"#e6f5d0\"], [0.7, \"#b8e186\"], [0.8, \"#7fbc41\"], [0.9, \"#4d9221\"], [1, \"#276419\"]], \"sequential\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"sequentialminus\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 1.0], \"title\": {\"text\": \"DATE\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"title\": {\"text\": \"value\"}}}, {\"responsive\": true} ).then(function(){\n",
" \n",
"var gd = document.getElementById('e74d43c2-87d3-472c-90e1-77c68fba490c');\n",
"var x = new MutationObserver(function (mutations, observer) {{\n",
" var display = window.getComputedStyle(gd).display;\n",
" if (!display || display === 'none') {{\n",
" console.log([gd, 'removed!']);\n",
" Plotly.purge(gd);\n",
" observer.disconnect();\n",
" }}\n",
"}});\n",
"\n",
"// Listen for the removal of the full notebook cells\n",
"var notebookContainer = gd.closest('#notebook-container');\n",
"if (notebookContainer) {{\n",
" x.observe(notebookContainer, {childList: true});\n",
"}}\n",
"\n",
"// Listen for the clearing of the current output cell\n",
"var outputEl = gd.closest('.output');\n",
"if (outputEl) {{\n",
" x.observe(outputEl, {childList: true});\n",
"}}\n",
"\n",
" }) }; }); </script> </div>"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"df.groupby(df.DATE.dt.year).ACRE_PRICE_CHANGE.mean().plot.bar()"
]
},
{
"cell_type": "markdown",
"id": "quantitative-amber",
"metadata": {},
"source": [
"2014 is a huge outlier, let's take a close look. Here are the 15 sales that year with the biggest price change"
]
},
{
"cell_type": "code",
"execution_count": 28,
"id": "killing-recovery",
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>LEGAL</th>\n",
" <th>RM</th>\n",
" <th>DATE</th>\n",
" <th>PRICE</th>\n",
" <th>PER/ACRE</th>\n",
" <th>VENDOR</th>\n",
" <th>PURCHASER</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>12159</th>\n",
" <td>SW-13-24-07-W2</td>\n",
" <td>215 - Stanley</td>\n",
" <td>2014-09-25</td>\n",
" <td>72000</td>\n",
" <td>720000.00</td>\n",
" <td>Donald Tebb et al</td>\n",
" <td>Donald &amp; Noeleen Tebb</td>\n",
" </tr>\n",
" <tr>\n",
" <th>29172</th>\n",
" <td>LSD 9-09-34-12-W2</td>\n",
" <td>336 - Sasman</td>\n",
" <td>2014-12-08</td>\n",
" <td>12520</td>\n",
" <td>178857.14</td>\n",
" <td>William &amp; Mary Kulyk</td>\n",
" <td>William Kulyk</td>\n",
" </tr>\n",
" <tr>\n",
" <th>12161</th>\n",
" <td>NW-13-24-07-W2</td>\n",
" <td>215 - Stanley</td>\n",
" <td>2014-09-25</td>\n",
" <td>60100</td>\n",
" <td>15774.28</td>\n",
" <td>Donald Tebb et al</td>\n",
" <td>Noeleen &amp; Donald Tebb</td>\n",
" </tr>\n",
" <tr>\n",
" <th>34094</th>\n",
" <td>LSD 11-13-52-19-W2</td>\n",
" <td>488 - Torch River</td>\n",
" <td>2014-04-01</td>\n",
" <td>600000</td>\n",
" <td>8854.78</td>\n",
" <td>Carman Long</td>\n",
" <td>Carman Long et al</td>\n",
" </tr>\n",
" <tr>\n",
" <th>33947</th>\n",
" <td>SW-16-51-14-W2</td>\n",
" <td>488 - Torch River</td>\n",
" <td>2014-11-13</td>\n",
" <td>535500</td>\n",
" <td>9916.67</td>\n",
" <td>Curtis &amp; Brenda Deutsch</td>\n",
" <td>JODY &amp; SHONA FUNK</td>\n",
" </tr>\n",
" <tr>\n",
" <th>6314</th>\n",
" <td>NW-20-21-05-W2</td>\n",
" <td>184 - Grayson</td>\n",
" <td>2014-03-13</td>\n",
" <td>932500</td>\n",
" <td>5835.42</td>\n",
" <td>Randy Thiedig</td>\n",
" <td>SS UNIMIX AGRICULTURE CORPORAT</td>\n",
" </tr>\n",
" <tr>\n",
" <th>9488</th>\n",
" <td>SW-03-22-03-W2</td>\n",
" <td>213 - Saltcoats</td>\n",
" <td>2014-03-05</td>\n",
" <td>896400</td>\n",
" <td>5603.55</td>\n",
" <td>STEPHEN &amp; LINDA ROPER</td>\n",
" <td>SS UNIMIX AGRICULTURE CORPORAT</td>\n",
" </tr>\n",
" <tr>\n",
" <th>17723</th>\n",
" <td>SW-15-25-22-W2</td>\n",
" <td>250 - Last Mountain Valley</td>\n",
" <td>2014-08-20</td>\n",
" <td>520000</td>\n",
" <td>3242.91</td>\n",
" <td>Barrie &amp; Barbara Gwillim</td>\n",
" <td>Barbara Gwillim</td>\n",
" </tr>\n",
" <tr>\n",
" <th>6302</th>\n",
" <td>NE-19-21-05-W2</td>\n",
" <td>184 - Grayson</td>\n",
" <td>2014-03-13</td>\n",
" <td>437500</td>\n",
" <td>2762.52</td>\n",
" <td>Randy Thiedig</td>\n",
" <td>SS UNIMIX AGRICULTURE CORPORAT</td>\n",
" </tr>\n",
" <tr>\n",
" <th>23303</th>\n",
" <td>NE-04-30-11-W2</td>\n",
" <td>276 - Foam Lake</td>\n",
" <td>2014-03-05</td>\n",
" <td>416500</td>\n",
" <td>2608.18</td>\n",
" <td>Ronald &amp; Rita Zadorozniak</td>\n",
" <td>Julian Evanochko et al</td>\n",
" </tr>\n",
" <tr>\n",
" <th>26794</th>\n",
" <td>SW-15-33-08-W2</td>\n",
" <td>305 - Invermay</td>\n",
" <td>2014-04-10</td>\n",
" <td>500000</td>\n",
" <td>3161.96</td>\n",
" <td>Barry &amp; Justin &amp; Korwin Enge</td>\n",
" <td>Justin &amp; Korwin Enge</td>\n",
" </tr>\n",
" <tr>\n",
" <th>26766</th>\n",
" <td>SW-01-32-07-W2</td>\n",
" <td>305 - Invermay</td>\n",
" <td>2014-05-28</td>\n",
" <td>260556</td>\n",
" <td>3290.26</td>\n",
" <td>Russell Shukin</td>\n",
" <td>GENEVIEVE SHUKIN et al</td>\n",
" </tr>\n",
" <tr>\n",
" <th>3662</th>\n",
" <td>NW-12-11-22-W2</td>\n",
" <td>100 - Elmsthorpe</td>\n",
" <td>2014-04-15</td>\n",
" <td>311000</td>\n",
" <td>1943.02</td>\n",
" <td>Frobisher Farm Ltd.</td>\n",
" <td>HUAI LI</td>\n",
" </tr>\n",
" <tr>\n",
" <th>552</th>\n",
" <td>SW-27-07-22-W2</td>\n",
" <td>070 - Key West</td>\n",
" <td>2014-11-03</td>\n",
" <td>200000</td>\n",
" <td>3352.89</td>\n",
" <td>Bryan Smith et al</td>\n",
" <td>BRYAN SMITH et al</td>\n",
" </tr>\n",
" <tr>\n",
" <th>33984</th>\n",
" <td>SE-07-53-17-W2</td>\n",
" <td>488 - Torch River</td>\n",
" <td>2014-09-29</td>\n",
" <td>295000</td>\n",
" <td>1870.05</td>\n",
" <td>Wayne &amp; Florence McAuley</td>\n",
" <td>Dennis &amp; Wanda Wood</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"text/plain": [
" LEGAL RM DATE PRICE \\\n",
"12159 SW-13-24-07-W2 215 - Stanley 2014-09-25 72000 \n",
"29172 LSD 9-09-34-12-W2 336 - Sasman 2014-12-08 12520 \n",
"12161 NW-13-24-07-W2 215 - Stanley 2014-09-25 60100 \n",
"34094 LSD 11-13-52-19-W2 488 - Torch River 2014-04-01 600000 \n",
"33947 SW-16-51-14-W2 488 - Torch River 2014-11-13 535500 \n",
"6314 NW-20-21-05-W2 184 - Grayson 2014-03-13 932500 \n",
"9488 SW-03-22-03-W2 213 - Saltcoats 2014-03-05 896400 \n",
"17723 SW-15-25-22-W2 250 - Last Mountain Valley 2014-08-20 520000 \n",
"6302 NE-19-21-05-W2 184 - Grayson 2014-03-13 437500 \n",
"23303 NE-04-30-11-W2 276 - Foam Lake 2014-03-05 416500 \n",
"26794 SW-15-33-08-W2 305 - Invermay 2014-04-10 500000 \n",
"26766 SW-01-32-07-W2 305 - Invermay 2014-05-28 260556 \n",
"3662 NW-12-11-22-W2 100 - Elmsthorpe 2014-04-15 311000 \n",
"552 SW-27-07-22-W2 070 - Key West 2014-11-03 200000 \n",
"33984 SE-07-53-17-W2 488 - Torch River 2014-09-29 295000 \n",
"\n",
" PER/ACRE VENDOR PURCHASER \n",
"12159 720000.00 Donald Tebb et al Donald & Noeleen Tebb \n",
"29172 178857.14 William & Mary Kulyk William Kulyk \n",
"12161 15774.28 Donald Tebb et al Noeleen & Donald Tebb \n",
"34094 8854.78 Carman Long Carman Long et al \n",
"33947 9916.67 Curtis & Brenda Deutsch JODY & SHONA FUNK \n",
"6314 5835.42 Randy Thiedig SS UNIMIX AGRICULTURE CORPORAT \n",
"9488 5603.55 STEPHEN & LINDA ROPER SS UNIMIX AGRICULTURE CORPORAT \n",
"17723 3242.91 Barrie & Barbara Gwillim Barbara Gwillim \n",
"6302 2762.52 Randy Thiedig SS UNIMIX AGRICULTURE CORPORAT \n",
"23303 2608.18 Ronald & Rita Zadorozniak Julian Evanochko et al \n",
"26794 3161.96 Barry & Justin & Korwin Enge Justin & Korwin Enge \n",
"26766 3290.26 Russell Shukin GENEVIEVE SHUKIN et al \n",
"3662 1943.02 Frobisher Farm Ltd. HUAI LI \n",
"552 3352.89 Bryan Smith et al BRYAN SMITH et al \n",
"33984 1870.05 Wayne & Florence McAuley Dennis & Wanda Wood "
]
},
"execution_count": 28,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"big_changes_2014 = df[df.DATE.dt.year == 2014].sort_values('ACRE_PRICE_CHANGE', ascending = False).head(15)\n",
"big_changes_2014[cols]"
]
},
{
"cell_type": "markdown",
"id": "decimal-nurse",
"metadata": {},
"source": [
"Let's isolate those properties and look at past sales. Look at property LSD 9-09-34-12-W2. It was sold by William Kulyk for \\\\$1 in 2012, then bought by William & Mary Kulyk for \\\\$1, then bought back by William Kulyk for \\\\$12520 in 2014. Is this anomalous?"
]
},
{
"cell_type": "code",
"execution_count": 98,
"id": "fossil-edinburgh",
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>LEGAL_STD</th>\n",
" <th>DATE</th>\n",
" <th>PRICE</th>\n",
" <th>ACRE_PRICE_CHANGE</th>\n",
" <th>VENDOR</th>\n",
" <th>PURCHASER</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>36881</th>\n",
" <td>LSD 11-13-52-19-W2</td>\n",
" <td>2000-09-15</td>\n",
" <td>16500</td>\n",
" <td>NaN</td>\n",
" <td>Frank/Edna/David Pagan</td>\n",
" <td>Carman Long</td>\n",
" </tr>\n",
" <tr>\n",
" <th>34094</th>\n",
" <td>LSD 11-13-52-19-W2</td>\n",
" <td>2014-04-01</td>\n",
" <td>600000</td>\n",
" <td>8442.28</td>\n",
" <td>Carman Long</td>\n",
" <td>Carman Long et al</td>\n",
" </tr>\n",
" <tr>\n",
" <th>29559</th>\n",
" <td>LSD 9-09-34-12-W2</td>\n",
" <td>2012-04-19</td>\n",
" <td>1</td>\n",
" <td>NaN</td>\n",
" <td>William Kulyk</td>\n",
" <td>LAWRENCE HASKEY</td>\n",
" </tr>\n",
" <tr>\n",
" <th>29367</th>\n",
" <td>LSD 9-09-34-12-W2</td>\n",
" <td>2013-05-22</td>\n",
" <td>1</td>\n",
" <td>0.00</td>\n",
" <td>LAWRENCE HASKEY</td>\n",
" <td>William &amp; Mary Kulyk</td>\n",
" </tr>\n",
" <tr>\n",
" <th>29172</th>\n",
" <td>LSD 9-09-34-12-W2</td>\n",
" <td>2014-12-08</td>\n",
" <td>12520</td>\n",
" <td>178842.85</td>\n",
" <td>William &amp; Mary Kulyk</td>\n",
" <td>William Kulyk</td>\n",
" </tr>\n",
" <tr>\n",
" <th>24926</th>\n",
" <td>NE-04-30-11-W2</td>\n",
" <td>2003-12-08</td>\n",
" <td>40000</td>\n",
" <td>NaN</td>\n",
" <td>Olga Zadorozniak</td>\n",
" <td>Ronald &amp; Rita Zadorozniak</td>\n",
" </tr>\n",
" <tr>\n",
" <th>23303</th>\n",
" <td>NE-04-30-11-W2</td>\n",
" <td>2014-03-05</td>\n",
" <td>416500</td>\n",
" <td>2358.18</td>\n",
" <td>Ronald &amp; Rita Zadorozniak</td>\n",
" <td>Julian Evanochko et al</td>\n",
" </tr>\n",
" <tr>\n",
" <th>8703</th>\n",
" <td>NE-19-21-05-W2</td>\n",
" <td>1994-12-20</td>\n",
" <td>26000</td>\n",
" <td>NaN</td>\n",
" <td>Ottilia Thiedig</td>\n",
" <td>Randy Thiedig</td>\n",
" </tr>\n",
" <tr>\n",
" <th>6302</th>\n",
" <td>NE-19-21-05-W2</td>\n",
" <td>2014-03-13</td>\n",
" <td>437500</td>\n",
" <td>2600.02</td>\n",
" <td>Randy Thiedig</td>\n",
" <td>SS UNIMIX AGRICULTURE CORPORAT</td>\n",
" </tr>\n",
" <tr>\n",
" <th>4849</th>\n",
" <td>NW-12-11-22-W2</td>\n",
" <td>2002-02-12</td>\n",
" <td>10000</td>\n",
" <td>NaN</td>\n",
" <td>Dwite Demerse</td>\n",
" <td>Dwite &amp; Linda Demerse</td>\n",
" </tr>\n",
" <tr>\n",
" <th>3662</th>\n",
" <td>NW-12-11-22-W2</td>\n",
" <td>2014-04-15</td>\n",
" <td>311000</td>\n",
" <td>1880.52</td>\n",
" <td>Frobisher Farm Ltd.</td>\n",
" <td>HUAI LI</td>\n",
" </tr>\n",
" <tr>\n",
" <th>3669</th>\n",
" <td>NW-12-11-22-W2</td>\n",
" <td>2014-04-15</td>\n",
" <td>311000</td>\n",
" <td>0.00</td>\n",
" <td>Dwite &amp; Linda Demerse</td>\n",
" <td>Frobisher Farm Ltd.</td>\n",
" </tr>\n",
" <tr>\n",
" <th>13228</th>\n",
" <td>NW-13-24-07-W2</td>\n",
" <td>2003-06-09</td>\n",
" <td>46000</td>\n",
" <td>NaN</td>\n",
" <td>Steve Somogyi</td>\n",
" <td>Donald Tebb et al</td>\n",
" </tr>\n",
" <tr>\n",
" <th>12158</th>\n",
" <td>NW-13-24-07-W2</td>\n",
" <td>2014-09-25</td>\n",
" <td>53700</td>\n",
" <td>58.58</td>\n",
" <td>Donald Tebb et al</td>\n",
" <td>Donald &amp; Noeleen Tebb</td>\n",
" </tr>\n",
" <tr>\n",
" <th>12161</th>\n",
" <td>NW-13-24-07-W2</td>\n",
" <td>2014-09-25</td>\n",
" <td>60100</td>\n",
" <td>15424.56</td>\n",
" <td>Donald Tebb et al</td>\n",
" <td>Noeleen &amp; Donald Tebb</td>\n",
" </tr>\n",
" <tr>\n",
" <th>8700</th>\n",
" <td>NW-20-21-05-W2</td>\n",
" <td>1994-12-20</td>\n",
" <td>32000</td>\n",
" <td>NaN</td>\n",
" <td>Ottilia Thiedig</td>\n",
" <td>Randy Thiedig</td>\n",
" </tr>\n",
" <tr>\n",
" <th>6314</th>\n",
" <td>NW-20-21-05-W2</td>\n",
" <td>2014-03-13</td>\n",
" <td>932500</td>\n",
" <td>5635.42</td>\n",
" <td>Randy Thiedig</td>\n",
" <td>SS UNIMIX AGRICULTURE CORPORAT</td>\n",
" </tr>\n",
" <tr>\n",
" <th>36945</th>\n",
" <td>SE-07-53-17-W2</td>\n",
" <td>2000-06-23</td>\n",
" <td>20000</td>\n",
" <td>NaN</td>\n",
" <td>James Elves</td>\n",
" <td>Wayne &amp; Florence McAuley</td>\n",
" </tr>\n",
" <tr>\n",
" <th>33984</th>\n",
" <td>SE-07-53-17-W2</td>\n",
" <td>2014-09-29</td>\n",
" <td>295000</td>\n",
" <td>1745.05</td>\n",
" <td>Wayne &amp; Florence McAuley</td>\n",
" <td>Dennis &amp; Wanda Wood</td>\n",
" </tr>\n",
" <tr>\n",
" <th>27006</th>\n",
" <td>SW-01-32-07-W2</td>\n",
" <td>2012-06-19</td>\n",
" <td>45000</td>\n",
" <td>NaN</td>\n",
" <td>Peter Shukin</td>\n",
" <td>Genevieve Shukin et al</td>\n",
" </tr>\n",
" <tr>\n",
" <th>27003</th>\n",
" <td>SW-01-32-07-W2</td>\n",
" <td>2012-06-29</td>\n",
" <td>90000</td>\n",
" <td>568.26</td>\n",
" <td>Genevieve Shukin</td>\n",
" <td>Kurtis Shukin et al</td>\n",
" </tr>\n",
" <tr>\n",
" <th>26766</th>\n",
" <td>SW-01-32-07-W2</td>\n",
" <td>2014-05-28</td>\n",
" <td>260556</td>\n",
" <td>2153.75</td>\n",
" <td>Russell Shukin</td>\n",
" <td>GENEVIEVE SHUKIN et al</td>\n",
" </tr>\n",
" <tr>\n",
" <th>26767</th>\n",
" <td>SW-01-32-07-W2</td>\n",
" <td>2014-05-28</td>\n",
" <td>521112</td>\n",
" <td>0.21</td>\n",
" <td>GENEVIEVE SHUKIN</td>\n",
" <td>Jason Bosovich et al</td>\n",
" </tr>\n",
" <tr>\n",
" <th>26771</th>\n",
" <td>SW-01-32-07-W2</td>\n",
" <td>2014-05-28</td>\n",
" <td>521112</td>\n",
" <td>0.00</td>\n",
" <td>Kurtis &amp; Genevieve Shukin</td>\n",
" <td>Jason Bosovich et al</td>\n",
" </tr>\n",
" <tr>\n",
" <th>10432</th>\n",
" <td>SW-03-22-03-W2</td>\n",
" <td>2005-07-22</td>\n",
" <td>249500</td>\n",
" <td>NaN</td>\n",
" <td>Lloyd Griffith</td>\n",
" <td>STEPHEN &amp; LINDA ROPER</td>\n",
" </tr>\n",
" <tr>\n",
" <th>9488</th>\n",
" <td>SW-03-22-03-W2</td>\n",
" <td>2014-03-05</td>\n",
" <td>896400</td>\n",
" <td>4044.17</td>\n",
" <td>STEPHEN &amp; LINDA ROPER</td>\n",
" <td>SS UNIMIX AGRICULTURE CORPORAT</td>\n",
" </tr>\n",
" <tr>\n",
" <th>13229</th>\n",
" <td>SW-13-24-07-W2</td>\n",
" <td>2003-06-09</td>\n",
" <td>45000</td>\n",
" <td>NaN</td>\n",
" <td>Tony Somogyi</td>\n",
" <td>Donald Tebb et al</td>\n",
" </tr>\n",
" <tr>\n",
" <th>12156</th>\n",
" <td>SW-13-24-07-W2</td>\n",
" <td>2014-09-25</td>\n",
" <td>47500</td>\n",
" <td>15.22</td>\n",
" <td>Donald Tebb et al</td>\n",
" <td>Noeleen &amp; Donald Tebb</td>\n",
" </tr>\n",
" <tr>\n",
" <th>12159</th>\n",
" <td>SW-13-24-07-W2</td>\n",
" <td>2014-09-25</td>\n",
" <td>72000</td>\n",
" <td>719701.76</td>\n",
" <td>Donald Tebb et al</td>\n",
" <td>Donald &amp; Noeleen Tebb</td>\n",
" </tr>\n",
" <tr>\n",
" <th>19806</th>\n",
" <td>SW-15-25-22-W2</td>\n",
" <td>1995-09-01</td>\n",
" <td>45270</td>\n",
" <td>NaN</td>\n",
" <td>Barrie Gwillim</td>\n",
" <td>Barrie &amp; Barbara Gwillim</td>\n",
" </tr>\n",
" <tr>\n",
" <th>17723</th>\n",
" <td>SW-15-25-22-W2</td>\n",
" <td>2014-08-20</td>\n",
" <td>520000</td>\n",
" <td>2959.97</td>\n",
" <td>Barrie &amp; Barbara Gwillim</td>\n",
" <td>Barbara Gwillim</td>\n",
" </tr>\n",
" <tr>\n",
" <th>17413</th>\n",
" <td>SW-15-25-22-W2</td>\n",
" <td>2017-06-16</td>\n",
" <td>359220</td>\n",
" <td>-1002.69</td>\n",
" <td>Barbara Gwillim</td>\n",
" <td>Nicholas &amp; Jessica Guraluick</td>\n",
" </tr>\n",
" <tr>\n",
" <th>27744</th>\n",
" <td>SW-15-33-08-W2</td>\n",
" <td>2003-03-17</td>\n",
" <td>300000</td>\n",
" <td>NaN</td>\n",
" <td>Barry Enge</td>\n",
" <td>Enge et al</td>\n",
" </tr>\n",
" <tr>\n",
" <th>27590</th>\n",
" <td>SW-15-33-08-W2</td>\n",
" <td>2005-04-20</td>\n",
" <td>150000</td>\n",
" <td>-949.36</td>\n",
" <td>Barry Enge et al</td>\n",
" <td>Barry, Justin &amp; Korwin Enge</td>\n",
" </tr>\n",
" <tr>\n",
" <th>26794</th>\n",
" <td>SW-15-33-08-W2</td>\n",
" <td>2014-04-10</td>\n",
" <td>500000</td>\n",
" <td>2212.59</td>\n",
" <td>Barry &amp; Justin &amp; Korwin Enge</td>\n",
" <td>Justin &amp; Korwin Enge</td>\n",
" </tr>\n",
" <tr>\n",
" <th>37461</th>\n",
" <td>SW-16-51-14-W2</td>\n",
" <td>1998-09-01</td>\n",
" <td>160000</td>\n",
" <td>NaN</td>\n",
" <td>ALBERT &amp; MINNIE DEUTSCH</td>\n",
" <td>CURTIS &amp; BRENDA DEUTSCH</td>\n",
" </tr>\n",
" <tr>\n",
" <th>33947</th>\n",
" <td>SW-16-51-14-W2</td>\n",
" <td>2014-11-13</td>\n",
" <td>535500</td>\n",
" <td>8099.11</td>\n",
" <td>Curtis &amp; Brenda Deutsch</td>\n",
" <td>JODY &amp; SHONA FUNK</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1506</th>\n",
" <td>SW-27-07-22-W2</td>\n",
" <td>2008-03-12</td>\n",
" <td>0</td>\n",
" <td>NaN</td>\n",
" <td>George Fish</td>\n",
" <td>George Fish</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1503</th>\n",
" <td>SW-27-07-22-W2</td>\n",
" <td>2008-03-17</td>\n",
" <td>144500</td>\n",
" <td>NaN</td>\n",
" <td>George Fish</td>\n",
" <td>Bryan Smith et al</td>\n",
" </tr>\n",
" <tr>\n",
" <th>552</th>\n",
" <td>SW-27-07-22-W2</td>\n",
" <td>2014-11-03</td>\n",
" <td>200000</td>\n",
" <td>1863.20</td>\n",
" <td>Bryan Smith et al</td>\n",
" <td>BRYAN SMITH et al</td>\n",
" </tr>\n",
" <tr>\n",
" <th>391</th>\n",
" <td>SW-27-07-22-W2</td>\n",
" <td>2016-10-26</td>\n",
" <td>190500</td>\n",
" <td>-159.26</td>\n",
" <td>BRYAN SMITH et al</td>\n",
" <td>Meghan Pond</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"text/plain": [
" LEGAL_STD DATE PRICE ACRE_PRICE_CHANGE \\\n",
"36881 LSD 11-13-52-19-W2 2000-09-15 16500 NaN \n",
"34094 LSD 11-13-52-19-W2 2014-04-01 600000 8442.28 \n",
"29559 LSD 9-09-34-12-W2 2012-04-19 1 NaN \n",
"29367 LSD 9-09-34-12-W2 2013-05-22 1 0.00 \n",
"29172 LSD 9-09-34-12-W2 2014-12-08 12520 178842.85 \n",
"24926 NE-04-30-11-W2 2003-12-08 40000 NaN \n",
"23303 NE-04-30-11-W2 2014-03-05 416500 2358.18 \n",
"8703 NE-19-21-05-W2 1994-12-20 26000 NaN \n",
"6302 NE-19-21-05-W2 2014-03-13 437500 2600.02 \n",
"4849 NW-12-11-22-W2 2002-02-12 10000 NaN \n",
"3662 NW-12-11-22-W2 2014-04-15 311000 1880.52 \n",
"3669 NW-12-11-22-W2 2014-04-15 311000 0.00 \n",
"13228 NW-13-24-07-W2 2003-06-09 46000 NaN \n",
"12158 NW-13-24-07-W2 2014-09-25 53700 58.58 \n",
"12161 NW-13-24-07-W2 2014-09-25 60100 15424.56 \n",
"8700 NW-20-21-05-W2 1994-12-20 32000 NaN \n",
"6314 NW-20-21-05-W2 2014-03-13 932500 5635.42 \n",
"36945 SE-07-53-17-W2 2000-06-23 20000 NaN \n",
"33984 SE-07-53-17-W2 2014-09-29 295000 1745.05 \n",
"27006 SW-01-32-07-W2 2012-06-19 45000 NaN \n",
"27003 SW-01-32-07-W2 2012-06-29 90000 568.26 \n",
"26766 SW-01-32-07-W2 2014-05-28 260556 2153.75 \n",
"26767 SW-01-32-07-W2 2014-05-28 521112 0.21 \n",
"26771 SW-01-32-07-W2 2014-05-28 521112 0.00 \n",
"10432 SW-03-22-03-W2 2005-07-22 249500 NaN \n",
"9488 SW-03-22-03-W2 2014-03-05 896400 4044.17 \n",
"13229 SW-13-24-07-W2 2003-06-09 45000 NaN \n",
"12156 SW-13-24-07-W2 2014-09-25 47500 15.22 \n",
"12159 SW-13-24-07-W2 2014-09-25 72000 719701.76 \n",
"19806 SW-15-25-22-W2 1995-09-01 45270 NaN \n",
"17723 SW-15-25-22-W2 2014-08-20 520000 2959.97 \n",
"17413 SW-15-25-22-W2 2017-06-16 359220 -1002.69 \n",
"27744 SW-15-33-08-W2 2003-03-17 300000 NaN \n",
"27590 SW-15-33-08-W2 2005-04-20 150000 -949.36 \n",
"26794 SW-15-33-08-W2 2014-04-10 500000 2212.59 \n",
"37461 SW-16-51-14-W2 1998-09-01 160000 NaN \n",
"33947 SW-16-51-14-W2 2014-11-13 535500 8099.11 \n",
"1506 SW-27-07-22-W2 2008-03-12 0 NaN \n",
"1503 SW-27-07-22-W2 2008-03-17 144500 NaN \n",
"552 SW-27-07-22-W2 2014-11-03 200000 1863.20 \n",
"391 SW-27-07-22-W2 2016-10-26 190500 -159.26 \n",
"\n",
" VENDOR PURCHASER \n",
"36881 Frank/Edna/David Pagan Carman Long \n",
"34094 Carman Long Carman Long et al \n",
"29559 William Kulyk LAWRENCE HASKEY \n",
"29367 LAWRENCE HASKEY William & Mary Kulyk \n",
"29172 William & Mary Kulyk William Kulyk \n",
"24926 Olga Zadorozniak Ronald & Rita Zadorozniak \n",
"23303 Ronald & Rita Zadorozniak Julian Evanochko et al \n",
"8703 Ottilia Thiedig Randy Thiedig \n",
"6302 Randy Thiedig SS UNIMIX AGRICULTURE CORPORAT \n",
"4849 Dwite Demerse Dwite & Linda Demerse \n",
"3662 Frobisher Farm Ltd. HUAI LI \n",
"3669 Dwite & Linda Demerse Frobisher Farm Ltd. \n",
"13228 Steve Somogyi Donald Tebb et al \n",
"12158 Donald Tebb et al Donald & Noeleen Tebb \n",
"12161 Donald Tebb et al Noeleen & Donald Tebb \n",
"8700 Ottilia Thiedig Randy Thiedig \n",
"6314 Randy Thiedig SS UNIMIX AGRICULTURE CORPORAT \n",
"36945 James Elves Wayne & Florence McAuley \n",
"33984 Wayne & Florence McAuley Dennis & Wanda Wood \n",
"27006 Peter Shukin Genevieve Shukin et al \n",
"27003 Genevieve Shukin Kurtis Shukin et al \n",
"26766 Russell Shukin GENEVIEVE SHUKIN et al \n",
"26767 GENEVIEVE SHUKIN Jason Bosovich et al \n",
"26771 Kurtis & Genevieve Shukin Jason Bosovich et al \n",
"10432 Lloyd Griffith STEPHEN & LINDA ROPER \n",
"9488 STEPHEN & LINDA ROPER SS UNIMIX AGRICULTURE CORPORAT \n",
"13229 Tony Somogyi Donald Tebb et al \n",
"12156 Donald Tebb et al Noeleen & Donald Tebb \n",
"12159 Donald Tebb et al Donald & Noeleen Tebb \n",
"19806 Barrie Gwillim Barrie & Barbara Gwillim \n",
"17723 Barrie & Barbara Gwillim Barbara Gwillim \n",
"17413 Barbara Gwillim Nicholas & Jessica Guraluick \n",
"27744 Barry Enge Enge et al \n",
"27590 Barry Enge et al Barry, Justin & Korwin Enge \n",
"26794 Barry & Justin & Korwin Enge Justin & Korwin Enge \n",
"37461 ALBERT & MINNIE DEUTSCH CURTIS & BRENDA DEUTSCH \n",
"33947 Curtis & Brenda Deutsch JODY & SHONA FUNK \n",
"1506 George Fish George Fish \n",
"1503 George Fish Bryan Smith et al \n",
"552 Bryan Smith et al BRYAN SMITH et al \n",
"391 BRYAN SMITH et al Meghan Pond "
]
},
"execution_count": 98,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"df[df.LEGAL_STD.isin(big_changes_2014.LEGAL_STD)][['LEGAL_STD', 'DATE', 'PRICE', 'ACRE_PRICE_CHANGE', 'VENDOR', 'PURCHASER']]"
]
},
{
"cell_type": "markdown",
"id": "chemical-disorder",
"metadata": {},
"source": [
"Let's look at stats by RM: number of sales, total amount of sales, and average price per sale. Saltcoats seems to be an outlier with a higher average sales price."
]
},
{
"cell_type": "code",
"execution_count": 33,
"id": "forbidden-shadow",
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<style type=\"text/css\" >\n",
"#T_41a99_row0_col0{\n",
" background-color: #c2c2ff;\n",
" color: #000000;\n",
" }#T_41a99_row0_col1,#T_41a99_row7_col2{\n",
" background-color: #a4a4ff;\n",
" color: #000000;\n",
" }#T_41a99_row0_col2,#T_41a99_row1_col0,#T_41a99_row1_col1{\n",
" background-color: #0000ff;\n",
" color: #f1f1f1;\n",
" }#T_41a99_row1_col2{\n",
" background-color: #5353ff;\n",
" color: #f1f1f1;\n",
" }#T_41a99_row2_col0{\n",
" background-color: #c9c9ff;\n",
" color: #000000;\n",
" }#T_41a99_row2_col1,#T_41a99_row9_col2{\n",
" background-color: #c0c0ff;\n",
" color: #000000;\n",
" }#T_41a99_row2_col2{\n",
" background-color: #5757ff;\n",
" color: #f1f1f1;\n",
" }#T_41a99_row3_col0{\n",
" background-color: #9898ff;\n",
" color: #000000;\n",
" }#T_41a99_row3_col1,#T_41a99_row6_col2{\n",
" background-color: #9494ff;\n",
" color: #000000;\n",
" }#T_41a99_row3_col2{\n",
" background-color: #5d5dff;\n",
" color: #000000;\n",
" }#T_41a99_row4_col0,#T_41a99_row4_col1{\n",
" background-color: #bdbdff;\n",
" color: #000000;\n",
" }#T_41a99_row4_col2{\n",
" background-color: #7676ff;\n",
" color: #000000;\n",
" }#T_41a99_row5_col0,#T_41a99_row5_col1,#T_41a99_row11_col2{\n",
" background-color: #e5e5ff;\n",
" color: #000000;\n",
" }#T_41a99_row5_col2{\n",
" background-color: #8e8eff;\n",
" color: #000000;\n",
" }#T_41a99_row6_col0{\n",
" background-color: #d0d0ff;\n",
" color: #000000;\n",
" }#T_41a99_row6_col1{\n",
" background-color: #d4d4ff;\n",
" color: #000000;\n",
" }#T_41a99_row7_col0{\n",
" background-color: #8686ff;\n",
" color: #000000;\n",
" }#T_41a99_row7_col1{\n",
" background-color: #9d9dff;\n",
" color: #000000;\n",
" }#T_41a99_row8_col0{\n",
" background-color: #b6b6ff;\n",
" color: #000000;\n",
" }#T_41a99_row8_col1{\n",
" background-color: #c6c6ff;\n",
" color: #000000;\n",
" }#T_41a99_row8_col2{\n",
" background-color: #ababff;\n",
" color: #000000;\n",
" }#T_41a99_row9_col0,#T_41a99_row10_col0{\n",
" background-color: #bbbbff;\n",
" color: #000000;\n",
" }#T_41a99_row9_col1{\n",
" background-color: #cfcfff;\n",
" color: #000000;\n",
" }#T_41a99_row10_col1{\n",
" background-color: #d1d1ff;\n",
" color: #000000;\n",
" }#T_41a99_row10_col2{\n",
" background-color: #c7c7ff;\n",
" color: #000000;\n",
" }#T_41a99_row11_col0{\n",
" background-color: #b8b8ff;\n",
" color: #000000;\n",
" }#T_41a99_row11_col1{\n",
" background-color: #d8d8ff;\n",
" color: #000000;\n",
" }</style><table id=\"T_41a99_\" ><thead> <tr> <th class=\"blank level0\" ></th> <th class=\"col_heading level0 col0\" >count</th> <th class=\"col_heading level0 col1\" >sum</th> <th class=\"col_heading level0 col2\" >mean</th> </tr> <tr> <th class=\"index_name level0\" >RM</th> <th class=\"blank\" ></th> <th class=\"blank\" ></th> <th class=\"blank\" ></th> </tr></thead><tbody>\n",
" <tr>\n",
" <th id=\"T_41a99_level0_row0\" class=\"row_heading level0 row0\" >213 - Saltcoats</th>\n",
" <td id=\"T_41a99_row0_col0\" class=\"data row0 col0\" >2738</td>\n",
" <td id=\"T_41a99_row0_col1\" class=\"data row0 col1\" >216124279</td>\n",
" <td id=\"T_41a99_row0_col2\" class=\"data row0 col2\" >78935.090942</td>\n",
" </tr>\n",
" <tr>\n",
" <th id=\"T_41a99_level0_row1\" class=\"row_heading level0 row1\" >488 - Torch River</th>\n",
" <td id=\"T_41a99_row1_col0\" class=\"data row1 col0\" >6511</td>\n",
" <td id=\"T_41a99_row1_col1\" class=\"data row1 col1\" >443296319</td>\n",
" <td id=\"T_41a99_row1_col2\" class=\"data row1 col2\" >68084.214253</td>\n",
" </tr>\n",
" <tr>\n",
" <th id=\"T_41a99_level0_row2\" class=\"row_heading level0 row2\" >215 - Stanley</th>\n",
" <td id=\"T_41a99_row2_col0\" class=\"data row2 col0\" >2629</td>\n",
" <td id=\"T_41a99_row2_col1\" class=\"data row2 col1\" >177350070</td>\n",
" <td id=\"T_41a99_row2_col2\" class=\"data row2 col2\" >67459.136554</td>\n",
" </tr>\n",
" <tr>\n",
" <th id=\"T_41a99_level0_row3\" class=\"row_heading level0 row3\" >336 - Sasman</th>\n",
" <td id=\"T_41a99_row3_col0\" class=\"data row3 col0\" >3571</td>\n",
" <td id=\"T_41a99_row3_col1\" class=\"data row3 col1\" >238377241</td>\n",
" <td id=\"T_41a99_row3_col2\" class=\"data row3 col2\" >66753.637917</td>\n",
" </tr>\n",
" <tr>\n",
" <th id=\"T_41a99_level0_row4\" class=\"row_heading level0 row4\" >250 - Last Mountain Valley</th>\n",
" <td id=\"T_41a99_row4_col0\" class=\"data row4 col0\" >2848</td>\n",
" <td id=\"T_41a99_row4_col1\" class=\"data row4 col1\" >180694797</td>\n",
" <td id=\"T_41a99_row4_col2\" class=\"data row4 col2\" >63446.206812</td>\n",
" </tr>\n",
" <tr>\n",
" <th id=\"T_41a99_level0_row5\" class=\"row_heading level0 row5\" >305 - Invermay</th>\n",
" <td id=\"T_41a99_row5_col0\" class=\"data row5 col0\" >2058</td>\n",
" <td id=\"T_41a99_row5_col1\" class=\"data row5 col1\" >124118221</td>\n",
" <td id=\"T_41a99_row5_col2\" class=\"data row5 col2\" >60310.117104</td>\n",
" </tr>\n",
" <tr>\n",
" <th id=\"T_41a99_level0_row6\" class=\"row_heading level0 row6\" >275 - Insinger</th>\n",
" <td id=\"T_41a99_row6_col0\" class=\"data row6 col0\" >2486</td>\n",
" <td id=\"T_41a99_row6_col1\" class=\"data row6 col1\" >148294291</td>\n",
" <td id=\"T_41a99_row6_col2\" class=\"data row6 col2\" >59651.766291</td>\n",
" </tr>\n",
" <tr>\n",
" <th id=\"T_41a99_level0_row7\" class=\"row_heading level0 row7\" >276 - Foam Lake</th>\n",
" <td id=\"T_41a99_row7_col0\" class=\"data row7 col0\" >3917</td>\n",
" <td id=\"T_41a99_row7_col1\" class=\"data row7 col1\" >225295128</td>\n",
" <td id=\"T_41a99_row7_col2\" class=\"data row7 col2\" >57517.265254</td>\n",
" </tr>\n",
" <tr>\n",
" <th id=\"T_41a99_level0_row8\" class=\"row_heading level0 row8\" >184 - Grayson</th>\n",
" <td id=\"T_41a99_row8_col0\" class=\"data row8 col0\" >2988</td>\n",
" <td id=\"T_41a99_row8_col1\" class=\"data row8 col1\" >168852836</td>\n",
" <td id=\"T_41a99_row8_col2\" class=\"data row8 col2\" >56510.319946</td>\n",
" </tr>\n",
" <tr>\n",
" <th id=\"T_41a99_level0_row9\" class=\"row_heading level0 row9\" >100 - Elmsthorpe</th>\n",
" <td id=\"T_41a99_row9_col0\" class=\"data row9 col0\" >2885</td>\n",
" <td id=\"T_41a99_row9_col1\" class=\"data row9 col1\" >155381626</td>\n",
" <td id=\"T_41a99_row9_col2\" class=\"data row9 col2\" >53858.449220</td>\n",
" </tr>\n",
" <tr>\n",
" <th id=\"T_41a99_level0_row10\" class=\"row_heading level0 row10\" >070 - Key West</th>\n",
" <td id=\"T_41a99_row10_col0\" class=\"data row10 col0\" >2891</td>\n",
" <td id=\"T_41a99_row10_col1\" class=\"data row10 col1\" >152835753</td>\n",
" <td id=\"T_41a99_row10_col2\" class=\"data row10 col2\" >52866.050847</td>\n",
" </tr>\n",
" <tr>\n",
" <th id=\"T_41a99_level0_row11\" class=\"row_heading level0 row11\" >247 - Kellross</th>\n",
" <td id=\"T_41a99_row11_col0\" class=\"data row11 col0\" >2929</td>\n",
" <td id=\"T_41a99_row11_col1\" class=\"data row11 col1\" >143107845</td>\n",
" <td id=\"T_41a99_row11_col2\" class=\"data row11 col2\" >48858.943325</td>\n",
" </tr>\n",
" </tbody></table>"
],
"text/plain": [
"<pandas.io.formats.style.Styler at 0x17506f2f6a0>"
]
},
"execution_count": 33,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"import seaborn as sns\n",
"\n",
"cm = sns.light_palette(\"blue\", as_cmap=True)\n",
"\n",
"stats_by_rm = df.groupby('RM').PRICE.agg(['count','sum', 'mean']).sort_values('mean', ascending = False)\n",
"stats_by_rm.style.background_gradient(cmap=cm)"
]
},
{
"cell_type": "markdown",
"id": "welsh-effort",
"metadata": {},
"source": [
"Now let's explore the relationship between acreage and price over time. The chart below show each sale in the data, coloure by RM. Use the slider to cycle through the years. Hover over dots for details.\n",
"\n",
"For the most part, there's a straight relationship between acre and price. Most parcels are around 140-170 acres. But in some years, in some RMs, we see big outliers.\n",
"\n",
"Examples:\n",
"\n",
"* In 2008, a lot of parcels were sold for \\\\$1.\n",
"* In 2011 in Invernay, there were 160-acre parcels sold far above the average for that size.\n",
"* Torch River seems to have more under-valued parcels."
]
},
{
"cell_type": "code",
"execution_count": 46,
"id": "healthy-migration",
"metadata": {},
"outputs": [
{
"data": {
"application/vnd.plotly.v1+json": {
"config": {
"plotlyServerURL": "https://plot.ly"
},
"data": [
{
"hovertemplate": "RM=213 - Saltcoats<br>animation_frame=2021<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "213 - Saltcoats",
"marker": {
"color": "#636efa",
"symbol": "circle"
},
"mode": "markers",
"name": "213 - Saltcoats",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
160,
159.62,
160,
160,
160.56,
154,
153.97
],
"xaxis": "x",
"y": [
47500,
150000,
29940,
30000,
205080,
15000,
100000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=488 - Torch River<br>animation_frame=2021<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "488 - Torch River",
"marker": {
"color": "#EF553B",
"symbol": "circle"
},
"mode": "markers",
"name": "488 - Torch River",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
6,
150,
6,
149.51,
149.5,
149.5,
160,
161,
160,
321.08,
150,
160,
158.97,
158.97,
160,
160,
160,
160,
79.93,
158.97,
158.97,
158.97,
159,
157.58,
160,
160,
160,
0,
78,
160,
80,
160,
160
],
"xaxis": "x",
"y": [
890,
91420,
890,
224250,
224250,
457500,
32017,
52000,
60800,
400000,
26000,
10000,
37000,
0,
53400,
50000,
50000,
48620,
72500,
16100,
16100,
21000,
53300,
30000,
0,
12500,
0,
25000,
23000,
35200,
25075,
8750,
26000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=336 - Sasman<br>animation_frame=2021<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "336 - Sasman",
"marker": {
"color": "#00cc96",
"symbol": "circle"
},
"mode": "markers",
"name": "336 - Sasman",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
158,
65.51,
65.51,
160,
160,
159.59,
159,
160,
159.12,
160.58,
160.58,
80,
160,
159.54,
159.54,
160
],
"xaxis": "x",
"y": [
56600,
100000,
100000,
18000,
35500,
251000,
35000,
50000,
150000,
250000,
290000,
25000,
70000,
70000,
185000,
63250
],
"yaxis": "y"
},
{
"hovertemplate": "RM=215 - Stanley<br>animation_frame=2021<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "215 - Stanley",
"marker": {
"color": "#ab63fa",
"symbol": "circle"
},
"mode": "markers",
"name": "215 - Stanley",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
0,
59.45,
162,
161.91,
157.38,
155.08,
160,
160,
157.6,
156.79,
156.79,
163.22,
163.93,
163.93,
163.93
],
"xaxis": "x",
"y": [
0,
35000,
42000,
180456,
43400,
209270,
19000,
19000,
61000,
215000,
245500,
62500,
150000,
150000,
200000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=247 - Kellross<br>animation_frame=2021<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "247 - Kellross",
"marker": {
"color": "#FFA15A",
"symbol": "circle"
},
"mode": "markers",
"name": "247 - Kellross",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
159,
79.5,
79.5,
79.5,
160,
160,
160,
159,
159,
161.84,
158.3,
158.3,
158,
157.19
],
"xaxis": "x",
"y": [
30000,
20000,
20000,
20000,
24100,
24100,
107000,
28000,
32000,
90000,
41600,
55000,
64000,
64000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=184 - Grayson<br>animation_frame=2021<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "184 - Grayson",
"marker": {
"color": "#FF6692",
"symbol": "circle"
},
"mode": "markers",
"name": "184 - Grayson",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
160,
160,
160,
160,
161,
161,
160.24,
160,
319.82,
160,
160.4,
160.4,
160,
160
],
"xaxis": "x",
"y": [
30750,
46183,
46183,
31500,
27960,
27960,
90000,
37000,
180000,
25000,
110000,
97000,
26900,
26900
],
"yaxis": "y"
},
{
"hovertemplate": "RM=276 - Foam Lake<br>animation_frame=2021<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "276 - Foam Lake",
"marker": {
"color": "#B6E880",
"symbol": "circle"
},
"mode": "markers",
"name": "276 - Foam Lake",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
160.01,
160.01,
160.01,
160.01,
160.08,
160.08,
160,
160,
160.31,
160,
159.66,
160,
160,
160,
159,
159.28,
0,
152.51,
151.41,
151.41,
158.87,
158.87,
79.53,
79.5,
141.27,
70.5,
158.28
],
"xaxis": "x",
"y": [
116960,
116960,
116960,
116960,
73000,
89770,
38000,
51829,
162000,
33000,
77770,
25000,
37000,
37000,
35663,
133803,
130000,
55000,
75000,
198000,
350000,
350000,
50000,
15500,
78000,
0,
35500
],
"yaxis": "y"
},
{
"hovertemplate": "RM=305 - Invermay<br>animation_frame=2021<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "305 - Invermay",
"marker": {
"color": "#FF97FF",
"symbol": "circle"
},
"mode": "markers",
"name": "305 - Invermay",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
159,
160,
160,
160,
160,
160,
160,
159.62,
160,
159.91,
80,
0,
0,
46,
46.21,
159,
159,
160,
159.64,
155
],
"xaxis": "x",
"y": [
50000,
22000,
45000,
45000,
79846,
35000,
80000,
125000,
8000,
200000,
40000,
19000,
19000,
14080,
63077,
24000,
25000,
30000,
30000,
170000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=100 - Elmsthorpe<br>animation_frame=2021<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "100 - Elmsthorpe",
"marker": {
"color": "#FECB52",
"symbol": "circle"
},
"mode": "markers",
"name": "100 - Elmsthorpe",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
160,
160,
160,
159.55,
159.05,
160,
160,
80,
160,
160,
158.85,
158.85,
158.85,
153.01,
152.01,
159.09,
159.09
],
"xaxis": "x",
"y": [
47110,
48300,
48300,
120000,
38000,
34000,
74300,
45000,
42500,
42500,
40000,
173750,
181860,
48000,
48000,
91300,
91300
],
"yaxis": "y"
},
{
"hovertemplate": "RM=275 - Insinger<br>animation_frame=2021<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "275 - Insinger",
"marker": {
"color": "#636efa",
"symbol": "circle"
},
"mode": "markers",
"name": "275 - Insinger",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
320.66,
160.33,
160,
159.67,
158,
158,
158,
157.71,
159,
159,
159,
159.71,
160,
160,
159,
159.01
],
"xaxis": "x",
"y": [
144000,
57000,
35000,
35000,
28000,
33000,
55000,
170000,
53000,
55325,
9040,
65000,
11000,
11000,
0,
35412
],
"yaxis": "y"
},
{
"hovertemplate": "RM=250 - Last Mountain Valley<br>animation_frame=2021<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "250 - Last Mountain Valley",
"marker": {
"color": "#EF553B",
"symbol": "circle"
},
"mode": "markers",
"name": "250 - Last Mountain Valley",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
161,
161,
159,
159,
159.33,
159.33,
160,
159,
160,
160,
112,
112.52,
112.52,
112.52,
161,
160,
160,
160,
160
],
"xaxis": "x",
"y": [
25000,
39000,
17500,
17500,
50000,
50000,
112500,
30000,
35000,
50000,
0,
40000,
40000,
71030,
48940,
32240,
47600,
50000,
27500
],
"yaxis": "y"
},
{
"hovertemplate": "RM=250 - Last Mountain Valley<br>animation_frame=2020<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "250 - Last Mountain Valley",
"marker": {
"color": "#EF553B",
"symbol": "circle"
},
"mode": "markers",
"name": "250 - Last Mountain Valley",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
159,
158.51,
158.58,
147,
147,
147.39,
158.98,
157,
159.73,
159.73,
157.63,
157.63,
155,
155,
154.94,
154.94,
76.5,
158.96,
158.96,
160.12,
160.12,
159,
160,
160,
159.47,
158,
158,
160.44,
160.44,
66,
160,
159,
159,
159,
146.84,
159,
159,
159.56,
159.56,
159.56,
160,
160,
158.71,
160,
158.96,
160,
160,
160,
160,
160,
160,
159.88,
159.88,
151.45,
151.6,
160,
159.99,
159,
159,
159.23,
159.23,
160,
160,
159,
159.07,
160,
160,
160,
159.95,
160,
160,
160,
159.36,
160,
158.6,
158.6,
159,
159,
159,
159,
159,
159,
159,
159.24,
159.14,
160,
0,
148.77,
160,
159.27,
156.08,
159.63,
159,
159,
160,
144.38,
160,
161,
160.77,
160.77
],
"xaxis": "x",
"y": [
40500,
116000,
32500,
25000,
30000,
71400,
25000,
52500,
125000,
160000,
48000,
32000,
16000,
16000,
125000,
125000,
120000,
127512,
127512,
159980,
160000,
30000,
37000,
37000,
115200,
25000,
22500,
125000,
160000,
25000,
25000,
238544,
238544,
129240,
462600,
0,
41000,
30855,
30855,
30855,
65700,
65700,
49100,
50000,
75000,
48500,
0,
50000,
21000,
27615,
25000,
136600,
86550,
15000,
0,
25000,
100000,
0,
40000,
29810,
29810,
20000,
47000,
49500,
150000,
34640,
40000,
75000,
75000,
110000,
27500,
27500,
0,
25000,
50000,
140000,
40000,
40000,
35000,
35000,
32000,
33600,
70000,
70000,
161667,
40000,
7500,
133000,
37333,
150000,
49999,
140000,
31280,
50000,
41000,
200,
40000,
45000,
50000,
221000
],
"yaxis": "y"
}
],
"frames": [
{
"data": [
{
"hovertemplate": "RM=213 - Saltcoats<br>animation_frame=1993<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "213 - Saltcoats",
"marker": {
"color": "#636efa",
"symbol": "circle"
},
"mode": "markers",
"name": "213 - Saltcoats",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
3.29,
164.1,
0,
40.1,
40,
40
],
"xaxis": "x",
"y": [
2,
18300,
9575,
42500,
100000,
180000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=488 - Torch River<br>animation_frame=1993<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "488 - Torch River",
"marker": {
"color": "#EF553B",
"symbol": "circle"
},
"mode": "markers",
"name": "488 - Torch River",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
3.05,
0,
0,
158.7,
0,
39,
39.48,
39,
39.87,
40,
38.59,
37.17,
37.17
],
"xaxis": "x",
"y": [
2,
7147,
14760,
20000,
14300,
13800,
21480,
8750,
34155,
115000,
43000,
250000,
250000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=336 - Sasman<br>animation_frame=1993<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "336 - Sasman",
"marker": {
"color": "#00cc96",
"symbol": "circle"
},
"mode": "markers",
"name": "336 - Sasman",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
77.61,
0,
178,
89.35,
89.35,
89.35,
178.3,
179,
40.81,
40.81,
39,
39,
40
],
"xaxis": "x",
"y": [
20370,
20900,
4000,
20000,
17360,
17860,
40000,
40000,
25000,
31282,
12000,
16667,
11812
],
"yaxis": "y"
},
{
"hovertemplate": "RM=215 - Stanley<br>animation_frame=1993<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "215 - Stanley",
"marker": {
"color": "#ab63fa",
"symbol": "circle"
},
"mode": "markers",
"name": "215 - Stanley",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
0,
39.84
],
"xaxis": "x",
"y": [
15000,
5000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=247 - Kellross<br>animation_frame=1993<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "247 - Kellross",
"marker": {
"color": "#FFA15A",
"symbol": "circle"
},
"mode": "markers",
"name": "247 - Kellross",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
297.48,
54.51,
89.2,
460.2,
408.88
],
"xaxis": "x",
"y": [
42800,
8500,
25000,
95000,
88624
],
"yaxis": "y"
},
{
"hovertemplate": "RM=070 - Key West<br>animation_frame=1993<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "070 - Key West",
"marker": {
"color": "#19d3f3",
"symbol": "circle"
},
"mode": "markers",
"name": "070 - Key West",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
0,
39,
23,
32,
40.08
],
"xaxis": "x",
"y": [
151,
5400,
2,
0,
24543
],
"yaxis": "y"
},
{
"hovertemplate": "RM=184 - Grayson<br>animation_frame=1993<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "184 - Grayson",
"marker": {
"color": "#FF6692",
"symbol": "circle"
},
"mode": "markers",
"name": "184 - Grayson",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
0,
0,
120.82,
120.82,
123.78,
124,
124,
249.9,
249.9,
249.9,
40,
37,
37.47
],
"xaxis": "x",
"y": [
17400,
8000,
30975,
30975,
19546,
16000,
10500,
0,
40000,
40000,
9535,
17500,
36000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=276 - Foam Lake<br>animation_frame=1993<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "276 - Foam Lake",
"marker": {
"color": "#B6E880",
"symbol": "circle"
},
"mode": "markers",
"name": "276 - Foam Lake",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
0,
166.2,
166.7,
39.76,
39.76
],
"xaxis": "x",
"y": [
36800,
37000,
52000,
20473,
20473
],
"yaxis": "y"
},
{
"hovertemplate": "RM=305 - Invermay<br>animation_frame=1993<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "305 - Invermay",
"marker": {
"color": "#FF97FF",
"symbol": "circle"
},
"mode": "markers",
"name": "305 - Invermay",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
160,
160.9,
160.9,
164.12,
134.43,
161.2,
165.98,
165.98,
155.1,
0,
0,
0,
0,
8,
8,
0,
39.99,
39.96,
36.97,
36.97,
73.94,
36.97,
36.97
],
"xaxis": "x",
"y": [
2000,
17500,
10000,
0,
30000,
20040,
13000,
13000,
53000,
15000,
15000,
16000,
0,
780,
2300,
6450,
11500,
20150,
0,
16000,
32000,
35000,
35000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=100 - Elmsthorpe<br>animation_frame=1993<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "100 - Elmsthorpe",
"marker": {
"color": "#FECB52",
"symbol": "circle"
},
"mode": "markers",
"name": "100 - Elmsthorpe",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
40
],
"xaxis": "x",
"y": [
14062
],
"yaxis": "y"
},
{
"hovertemplate": "RM=275 - Insinger<br>animation_frame=1993<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "275 - Insinger",
"marker": {
"color": "#636efa",
"symbol": "circle"
},
"mode": "markers",
"name": "275 - Insinger",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
0,
0,
39,
39.23,
40.04,
40.04
],
"xaxis": "x",
"y": [
10000,
40000,
16293,
45750,
30000,
50000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=250 - Last Mountain Valley<br>animation_frame=1993<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "250 - Last Mountain Valley",
"marker": {
"color": "#EF553B",
"symbol": "circle"
},
"mode": "markers",
"name": "250 - Last Mountain Valley",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
39.84,
14,
11,
14,
3,
11,
3,
8.73,
8.73,
2.75,
0.75
],
"xaxis": "x",
"y": [
23075,
0,
650,
1300,
650,
9655,
3140,
14062,
14062,
2414,
785
],
"yaxis": "y"
}
],
"name": "1993"
},
{
"data": [
{
"hovertemplate": "RM=213 - Saltcoats<br>animation_frame=1994<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "213 - Saltcoats",
"marker": {
"color": "#636efa",
"symbol": "circle"
},
"mode": "markers",
"name": "213 - Saltcoats",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
40.11,
39.08,
40,
0,
39.91,
39.91,
40,
38,
38,
38,
40,
40,
40,
39.73,
41,
41,
41,
0,
40,
40.39,
40,
40,
40,
39.81,
41,
41,
41,
0,
40,
40.4,
40,
40
],
"xaxis": "x",
"y": [
20000,
35750,
3750,
10000,
39610,
55020,
8333,
0,
7500,
9500,
11213,
11212,
16115,
50500,
4500,
7800,
9500,
8900,
13750,
14500,
11213,
11212,
16115,
50500,
4500,
7800,
9500,
8900,
13750,
14500,
11213,
11212
],
"yaxis": "y"
},
{
"hovertemplate": "RM=488 - Torch River<br>animation_frame=1994<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "488 - Torch River",
"marker": {
"color": "#EF553B",
"symbol": "circle"
},
"mode": "markers",
"name": "488 - Torch River",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
40,
40,
39.88,
40,
39.46,
39.46,
40,
38.58,
19.29,
39.62,
39.62,
40,
40,
40.04,
40.04,
39,
78.68,
39.34,
40,
40,
40,
19.99,
19.99,
19.99,
40,
40,
40,
39.93,
39.87,
40.09,
40.08,
40.08,
40,
40,
40,
23,
22.96,
22.96,
40,
40,
40,
39.9,
40,
40,
40,
40,
40,
39.97,
40,
40,
40,
34,
40,
67.76,
40,
40.25,
40.25,
40.25,
40,
20,
20,
19.92,
10,
40.11,
40.11,
40,
40.1,
20,
20.02,
20.02,
40.04,
40.04,
40,
40,
39.98,
39.98,
39.81,
0.83,
40,
40,
40,
40,
40,
40,
39.84,
35,
40,
40.29,
40.29,
40.29,
40,
19,
19,
19.45,
9.5,
39.54,
39.54,
40,
40.09,
20,
19.72,
19.72,
40.03,
40.03,
40,
40,
39.47,
39.47,
39.8,
40,
40,
40,
40,
39,
36.97,
35.25,
35.25,
38,
0,
38.47,
40,
80.02,
40,
40,
40,
40.27,
40.27,
40.27,
40,
19,
19,
19.15,
9.5,
40,
40,
40,
39.55,
40.03,
40.03,
40,
39
],
"xaxis": "x",
"y": [
6000,
11250,
37500,
15720,
41755,
76200,
10000,
15235,
7618,
31600,
31600,
11500,
23020,
56051,
74800,
250,
10800,
10800,
7950,
7500,
5000,
13750,
13750,
10000,
10000,
10000,
11500,
37000,
30000,
33440,
30240,
30240,
7926,
0,
13000,
0,
250,
380000,
7800,
14500,
14500,
25000,
50000,
25000,
25000,
25000,
15000,
4000,
19000,
19000,
22500,
0,
16500,
600000,
18750,
44625,
44625,
44625,
5000,
7500,
7500,
20000,
3750,
23120,
23120,
10000,
63000,
12000,
25600,
25600,
34550,
34550,
11900,
11900,
57100,
67500,
47500,
2210,
50000,
25000,
25000,
25000,
15000,
60000,
202500,
0,
18750,
44625,
44625,
44625,
7500,
7500,
7500,
20000,
3750,
23120,
23120,
10000,
64000,
13000,
25600,
25600,
34550,
34550,
11900,
11900,
201200,
67500,
47500,
25000,
25000,
25000,
25000,
30000,
202500,
12500,
12500,
0,
0,
10000,
16500,
60000,
12500,
12500,
12500,
44625,
44625,
44625,
7500,
7500,
7500,
20000,
3750,
10000,
10000,
10000,
598400,
34550,
34550,
12000,
12000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=336 - Sasman<br>animation_frame=1994<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "336 - Sasman",
"marker": {
"color": "#00cc96",
"symbol": "circle"
},
"mode": "markers",
"name": "336 - Sasman",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
40,
0,
39,
39.25,
40,
40,
39,
38.96,
38.96,
14.52,
20,
20,
10,
10,
15,
40.06,
36.89,
20,
20,
40,
40.07,
40.07,
28.25,
28.25,
28.25,
40,
40,
40.13,
12,
11.77,
20,
19.95,
40,
40,
40,
40,
40,
39.84,
39.84,
34.89,
40,
39.89,
37.34,
37.34,
31.91,
40,
40,
40,
40,
40,
40,
39.85,
39.85,
14,
13.83,
39,
39.38,
39.38,
37.34,
37.34,
39.91,
1,
1.04,
40,
40,
39,
40,
40,
39.84,
29,
28.55,
29.54,
40,
39.38,
31.21,
19,
26,
26.25
],
"xaxis": "x",
"y": [
11000,
10000,
22500,
100000,
50000,
16000,
14000,
0,
16950,
155000,
7000,
7200,
15278,
15278,
0,
40000,
39428,
8775,
5000,
11550,
15000,
20000,
12060,
12060,
25040,
8667,
12500,
43750,
9600,
9600,
7000,
3450,
980,
980,
6000,
7500,
7500,
13750,
13750,
8000,
11467,
40000,
5960,
8316,
11411,
6250,
10900,
10000,
6000,
7500,
7500,
13750,
13750,
3725,
4000,
45000,
100000,
100000,
5960,
8316,
14277,
500,
200,
6250,
6250,
0,
12800,
7500,
26250,
7450,
9000,
8000,
11467,
40000,
44376,
0,
3700,
4200
],
"yaxis": "y"
},
{
"hovertemplate": "RM=215 - Stanley<br>animation_frame=1994<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "215 - Stanley",
"marker": {
"color": "#ab63fa",
"symbol": "circle"
},
"mode": "markers",
"name": "215 - Stanley",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
39.82,
0,
40.33,
40.33,
40,
40,
40.17,
40,
40,
39.97,
39.97,
39.97,
40,
39,
39,
40.16,
39.9,
40,
40,
39,
39.05,
39.05,
39.05,
40,
40.15,
40.16,
40.16,
39.88,
40,
40,
40,
39.77,
40,
40.13,
40.15,
40.15,
39.07,
40,
40,
39.42,
40,
39.76
],
"xaxis": "x",
"y": [
33100,
8750,
275000,
265000,
8333,
18667,
18000,
11740,
11740,
15000,
15000,
37500,
14600,
7500,
8000,
32000,
18750,
9667,
9333,
12500,
74100,
107714,
52130,
1400,
40000,
33000,
33000,
18750,
9667,
9333,
56900,
200000,
1400,
40000,
32000,
32000,
18750,
8000,
9000,
50000,
56900,
200000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=247 - Kellross<br>animation_frame=1994<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "247 - Kellross",
"marker": {
"color": "#FFA15A",
"symbol": "circle"
},
"mode": "markers",
"name": "247 - Kellross",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
19.93,
19.93,
19.93,
0,
39.81,
53.25,
40.03,
40.03,
19.91,
19.91,
20,
39.97,
39.97,
39.89,
40,
39.95,
39.92,
39.92,
39.92,
20,
19.95,
19.95,
19.95,
10,
40,
39.57,
40,
39.48,
39.48,
39.48,
39,
39.28,
39.28,
39.28,
19.5,
40,
39.09,
40,
40,
40,
40,
39.45,
39.45,
39.45,
39,
39.24,
39.24,
39.24,
19.5,
40,
39.07,
40
],
"xaxis": "x",
"y": [
5000,
5000,
17940,
5000,
16250,
6667,
25000,
25000,
5000,
25500,
0,
12000,
15000,
29000,
5800,
8000,
32610,
36842,
36842,
5600,
21740,
24561,
24561,
2800,
16000,
16000,
15000,
65220,
69317,
69317,
11200,
21740,
24561,
24561,
5600,
6000,
27300,
45000,
10000,
11250,
7800,
54350,
60870,
60870,
11200,
21740,
24561,
24561,
5600,
6000,
27300,
15000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=070 - Key West<br>animation_frame=1994<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "070 - Key West",
"marker": {
"color": "#19d3f3",
"symbol": "circle"
},
"mode": "markers",
"name": "070 - Key West",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
38,
38,
39.98,
40.08,
40,
20.08,
40,
40,
40,
40,
40.05,
20,
32,
40.06,
39.7,
20,
20,
20.01,
40.02,
20,
20,
39.71,
19.99,
40,
0,
40,
40,
40,
40,
40.01,
39,
39,
19.96,
19.99,
40,
39.49,
39.49,
40,
40.01,
39.92,
19.99
],
"xaxis": "x",
"y": [
0,
10064,
13000,
13000,
5000,
6500,
14000,
14000,
4000,
4000,
16700,
3333,
9334,
13000,
12900,
3922,
3922,
6500,
13000,
5032,
6500,
12900,
6500,
0,
5682,
7000,
7000,
10000,
10000,
13000,
0,
10064,
6500,
6500,
15000,
10000,
10000,
5032,
13000,
13000,
6500
],
"yaxis": "y"
},
{
"hovertemplate": "RM=184 - Grayson<br>animation_frame=1994<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "184 - Grayson",
"marker": {
"color": "#FF6692",
"symbol": "circle"
},
"mode": "markers",
"name": "184 - Grayson",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
36,
36,
36,
40,
40,
40,
40,
40,
40,
36,
40,
40,
39.98,
40,
30,
37.99,
40,
40,
40,
39.34,
40
],
"xaxis": "x",
"y": [
8200,
8200,
11912,
5783,
8944,
9000,
8500,
12547,
15000,
30500,
25000,
11667,
7500,
70000,
0,
19500,
80000,
7500,
20000,
55000,
11667
],
"yaxis": "y"
},
{
"hovertemplate": "RM=276 - Foam Lake<br>animation_frame=1994<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "276 - Foam Lake",
"marker": {
"color": "#B6E880",
"symbol": "circle"
},
"mode": "markers",
"name": "276 - Foam Lake",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
37,
37,
40,
40,
1.92,
40,
39.96,
40.01,
40,
39.8,
39.8,
40.09,
40.09,
40,
8.69,
8.75,
8.75,
19,
19.25,
40,
39.75,
39.75,
39.57,
40,
40,
40,
40,
40,
40,
32,
31.61,
0,
31,
40,
40,
40,
40,
40,
40,
40,
40,
19.93,
21,
20.92,
39.75,
39.75,
39.82,
40,
40,
40,
40,
40,
40,
40,
40.13,
1,
40,
40,
40,
40,
40,
40,
40,
10,
9.7,
40,
39.75,
39.75,
39.82,
40,
39.56,
40,
40,
39.84,
40,
39,
39,
40,
39.85,
39.85
],
"xaxis": "x",
"y": [
19140,
19140,
7500,
7500,
0,
7500,
33250,
25000,
8306,
12000,
50000,
23250,
40000,
5000,
2172,
750,
5000,
6000,
5000,
6250,
20473,
20473,
22500,
8500,
8500,
8500,
7500,
10000,
8000,
15400,
55125,
0,
0,
5310,
7125,
15835,
12500,
10000,
8000,
6930,
6250,
5100,
4000,
21700,
20473,
20473,
22500,
8500,
8500,
8500,
7500,
10000,
8000,
19600,
55125,
0,
5310,
7125,
15835,
12500,
10000,
6930,
6250,
4000,
10000,
4001,
15000,
24000,
22500,
19000,
55125,
5310,
7125,
45000,
9750,
15000,
32500,
12500,
40000,
80000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=305 - Invermay<br>animation_frame=1994<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "305 - Invermay",
"marker": {
"color": "#FF97FF",
"symbol": "circle"
},
"mode": "markers",
"name": "305 - Invermay",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
40.09,
39,
40,
39.62,
31,
31,
31,
40,
39.95,
40,
40.04,
40.04,
79.9,
39.95,
20.03,
30.44,
40,
40,
40,
40,
39.93,
40.06,
24,
40,
40,
40,
79.88,
39.94,
20,
40,
40.04,
16,
15.86,
40,
40,
40,
40,
39.88,
40,
40.03,
40,
40,
39,
39.94,
39.94,
40,
39.97,
40,
40.03,
0,
0,
0,
11,
11,
0,
10.62,
40,
40,
40,
40,
39.87,
40,
18.72,
36.76,
32.17,
32.17,
39.35,
39.35,
40,
39.98,
40.25,
40.25,
20.01,
26,
26,
26,
40,
39.87
],
"xaxis": "x",
"y": [
17850,
10000,
40000,
137500,
3174,
3174,
3174,
7500,
7500,
26000,
32000,
54600,
48666,
25000,
6943,
16460,
11400,
4500,
10000,
7500,
10000,
43811,
7440,
6500,
12500,
13000,
48666,
25000,
25000,
7667,
20400,
3993,
25000,
3180,
3180,
3180,
12640,
59200,
12000,
25165,
12500,
13000,
0,
35000,
35000,
10000,
20000,
7667,
20400,
14000,
7000,
100,
3500,
3500,
2000,
1500,
3180,
3180,
3180,
12640,
59200,
12000,
11762,
17500,
0,
251000,
35000,
35000,
10000,
20000,
3750,
3750,
10200,
3180,
3180,
3180,
12800,
59200
],
"yaxis": "y"
},
{
"hovertemplate": "RM=100 - Elmsthorpe<br>animation_frame=1994<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "100 - Elmsthorpe",
"marker": {
"color": "#FECB52",
"symbol": "circle"
},
"mode": "markers",
"name": "100 - Elmsthorpe",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
40,
40.45,
40.45,
19,
19,
19,
18.95,
39.52,
19.76,
40.06,
20,
19.87,
40,
20,
19.88,
39.93,
40.75,
40,
39.76,
39.94,
18.2,
40,
39.74,
39.95
],
"xaxis": "x",
"y": [
12500,
15000,
15000,
4250,
2,
4250,
7620,
6000,
3000,
0,
5000,
12300,
24833,
5000,
13250,
11325,
38500,
10000,
26500,
11325,
16500,
10000,
26500,
11325
],
"yaxis": "y"
},
{
"hovertemplate": "RM=275 - Insinger<br>animation_frame=1994<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "275 - Insinger",
"marker": {
"color": "#636efa",
"symbol": "circle"
},
"mode": "markers",
"name": "275 - Insinger",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
0,
40,
39.83,
37.51,
40,
39.86,
39.94,
39.9,
39.9,
40,
38,
37.58,
39.64,
40,
40,
40.03,
40.03,
40.03,
40,
40,
40,
39.77,
39.77,
39.77,
40,
40,
40,
39.89,
39.91,
39.91,
39.91,
40.14,
40.14,
40,
0,
40,
40,
40,
13.36,
40,
40,
40.18,
40,
39.92,
40,
39.85,
40,
39.07,
40,
40,
40,
13.38,
40,
40,
40.21,
40,
40,
39.91,
40,
10.31,
40,
39.78,
40,
40,
40,
39.59,
40,
39.78,
39.61,
40
],
"xaxis": "x",
"y": [
2500,
7500,
33150,
4526,
25000,
74250,
10500,
9450,
8815,
14000,
7000,
22500,
12500,
5813,
10000,
20000,
50000,
30000,
19000,
3000,
3000,
3000,
7500,
7500,
12500,
11000,
20250,
72687,
9450,
8815,
20000,
500,
15000,
7000,
7500,
7500,
9000,
20000,
2000,
16000,
16000,
16000,
8350,
7500,
17000,
17000,
10000,
21700,
9000,
40000,
15000,
2000,
16000,
16000,
16000,
10000,
17000,
17000,
10000,
700,
15000,
22500,
15000,
30000,
30000,
36000,
5500,
28482,
12500,
10000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=250 - Last Mountain Valley<br>animation_frame=1994<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "250 - Last Mountain Valley",
"marker": {
"color": "#EF553B",
"symbol": "circle"
},
"mode": "markers",
"name": "250 - Last Mountain Valley",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
38,
38,
38.18,
40,
40,
20,
19.98,
40,
40,
40,
40,
40,
40,
40,
40,
20,
40,
40,
40,
40,
40,
40,
40,
40,
20,
28,
27.86,
40,
40,
40,
40,
40,
40,
40,
40,
40,
20,
38.75,
40,
40
],
"xaxis": "x",
"y": [
400,
400,
8100,
6429,
0,
5000,
10000,
8750,
11250,
1508,
1508,
1508,
1507,
5000,
5000,
1057,
7378,
12350,
1508,
1508,
1508,
1507,
5000,
5000,
1507,
0,
6732,
7378,
12350,
1508,
1508,
0,
0,
1507,
5000,
5000,
1507,
9365,
7377,
12350
],
"yaxis": "y"
}
],
"name": "1994"
},
{
"data": [
{
"hovertemplate": "RM=213 - Saltcoats<br>animation_frame=1995<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "213 - Saltcoats",
"marker": {
"color": "#636efa",
"symbol": "circle"
},
"mode": "markers",
"name": "213 - Saltcoats",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
37,
37,
37,
40,
40,
40,
0,
39.89,
39.89,
40,
20,
20.01,
40,
40.33,
40.33,
39.89,
40,
0,
40.13,
40.27,
40.12,
0,
39.04,
39.04,
40,
41.11,
41.11,
41.11,
40,
40.19,
40,
41.49,
41.49,
41.49,
41,
41,
40.61,
32.37,
40,
39.94,
40,
40,
40,
40,
40.5,
39,
39.9,
40,
40,
39,
40.15,
0,
40.11,
35,
34.64,
34.64,
39.96,
40.12,
0,
39.93,
39.93,
39.9,
0,
40.08,
18.7,
18.7,
4.54,
14.16,
40,
40,
40.11
],
"xaxis": "x",
"y": [
0,
7500,
9500,
11213,
11212,
3750,
10000,
39610,
55020,
80000,
6000,
26000,
9000,
52182,
60283,
35750,
8333,
9575,
42500,
40000,
20000,
10000,
39610,
55020,
11456,
25000,
37900,
37900,
13750,
37500,
11431,
25000,
37900,
37900,
7000,
17500,
15000,
0,
13750,
37500,
11467,
10000,
7000,
17500,
15000,
13700,
37500,
11456,
10000,
13700,
37500,
9575,
42500,
2500,
21843,
21757,
40000,
20000,
10000,
39610,
55020,
45000,
9575,
42500,
200,
15999,
11250,
7000,
40000,
55000,
20000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=488 - Torch River<br>animation_frame=1995<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "488 - Torch River",
"marker": {
"color": "#EF553B",
"symbol": "circle"
},
"mode": "markers",
"name": "488 - Torch River",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
29.91,
40,
40,
40,
40,
40,
39,
40,
40,
40,
35.25,
35.25,
9,
1,
22,
32.01,
40,
79.98,
40,
40,
40,
40.23,
40.23,
40.23,
40,
20,
20,
19.64,
10,
40,
40,
40,
39.56,
40.04,
40.04,
40,
40,
39.81,
40,
40,
40.05,
40.05,
39,
78.6,
39.3,
40,
40,
34.53,
26,
25.54,
40,
39.8,
39.87,
37,
40,
40,
40,
40,
40,
40,
40,
40,
40,
39.9,
39,
39.28,
40,
40,
40,
36,
36.17,
39,
39.48,
39.87,
37,
40,
40,
40,
40,
40,
40,
39.92,
20,
3,
40,
40,
40,
40,
40,
40,
39.63,
40,
39.94,
19,
19.74,
39.3,
39.3,
40,
0,
37.49,
37.49,
3.37,
3.37,
39.94,
19.97,
19.97,
40,
39.52,
39.52,
40,
40.2,
20.1,
40.01,
40.01,
39.24,
39.96,
40,
39.93,
39.93,
39.72,
39.94,
8.04,
8.04,
8.04,
8.04,
40,
40.31,
40.31,
38.1,
40,
40,
39.93,
0,
28,
27.82,
40,
39.96,
40.23,
20.12,
0,
0,
0,
40,
39.97,
40,
40,
38.62,
40,
40,
40,
39.96,
39.96,
40,
39.94,
39.94,
39.73,
39.93,
40.21,
40.21,
39,
38.85,
38.85,
39.79,
20,
20,
19.96,
19,
18.82,
18.82,
18.82,
40,
39.9,
39.44,
40.27,
20.14,
0,
39,
39.42,
40,
40,
39,
39,
40,
40,
40,
39.95,
39.95,
39.93,
39.21,
39.21,
40,
40,
39.76,
40,
40,
39.92,
20,
20.06,
20.06,
20.06,
40,
33,
33.42,
39.46,
39.46,
40.22,
20,
19.7,
19.71,
36,
36.33,
40,
40,
39.95,
40,
40,
39.88,
39.88,
39.94,
39.94,
7.84,
7.84,
7.84,
40,
40,
38,
40,
40,
39.92,
0,
40,
7,
7.3,
40,
39.97,
39.97,
40.18,
0,
0,
20,
19.98,
19.98,
40,
39.87,
40,
40,
40.09,
40,
39.96,
39.48,
40,
0,
40,
40,
16.16,
16.16,
39.94,
40,
39.96,
39.96,
40,
40.14,
40,
40,
40,
40.09,
40,
39.88,
40,
39.09,
40,
20,
39.61,
40,
39.96,
39.96,
20
],
"xaxis": "x",
"y": [
35625,
25000,
25000,
25000,
25000,
15000,
30000,
19000,
19000,
22500,
12500,
12500,
0,
0,
0,
15000,
16500,
60000,
12500,
12500,
12500,
44625,
44625,
44625,
5000,
7500,
7500,
20000,
3750,
10000,
10000,
95000,
63000,
34550,
34550,
12000,
12000,
47500,
11500,
23020,
56051,
74800,
250,
10800,
10800,
7950,
2000,
0,
39000,
40000,
11500,
37000,
120000,
95000,
10000,
10000,
7926,
0,
13000,
7800,
30000,
0,
20350,
25000,
500,
500,
7950,
2000,
0,
39000,
185000,
11500,
37000,
40000,
15000,
26000,
26000,
0,
10000,
10000,
13000,
55625,
6500,
0,
7800,
30000,
0,
20350,
10000,
10000,
32800,
8750,
13815,
21000,
21000,
250000,
250000,
11250,
145001,
280000,
20000,
1200,
250,
37500,
20000,
20000,
15720,
41816,
66800,
10000,
15871,
7935,
31600,
31600,
24880,
12500,
25970,
59880,
59880,
122000,
150000,
8000,
8000,
8000,
8000,
22000,
21650,
21650,
25000,
540,
540,
18900,
40000,
19500,
19250,
10000,
62300,
15886,
7943,
18000,
30000,
75000,
35000,
50000,
55000,
38650,
24880,
10000,
18307,
10667,
10667,
47735,
25970,
59895,
59895,
122000,
7500,
18100,
18100,
22000,
21650,
21650,
25000,
540,
540,
9450,
44950,
85000,
45000,
45000,
30000,
27600,
62300,
15902,
7951,
75000,
35000,
50000,
55000,
75000,
9000,
9000,
10000,
18307,
10667,
10667,
47735,
7500,
18100,
18100,
18000,
20000,
25000,
540,
540,
18900,
44950,
85000,
45000,
45000,
20000,
30000,
23100,
43800,
74061,
29900,
115000,
152500,
328000,
22500,
20000,
9000,
9000,
12500,
18307,
10667,
10667,
47640,
14600,
14600,
7840,
7840,
7840,
18000,
20000,
80000,
540,
540,
18900,
40000,
20000,
500,
5050,
10000,
43800,
74063,
29900,
18000,
30000,
115000,
152500,
1000,
22500,
20000,
10000,
10000,
32800,
8750,
13815,
43000,
11250,
14999,
50000,
380000,
380000,
250,
37500,
15720,
42292,
67500,
10000,
22450,
10000,
10000,
13800,
21920,
8750,
4950,
20000,
43000,
11250,
120000,
37500,
15720,
42292,
67500,
5000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=336 - Sasman<br>animation_frame=1995<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "336 - Sasman",
"marker": {
"color": "#00cc96",
"symbol": "circle"
},
"mode": "markers",
"name": "336 - Sasman",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
40,
39,
25,
24,
40,
40,
39.84,
18,
17.48,
39.85,
40,
39.89,
39.12,
39,
1,
1.33,
40,
40,
40,
40,
40,
40,
40,
40.07,
30,
30.41,
39.87,
39.87,
39.87,
40,
40,
40.14,
40,
39.85,
38,
38,
40,
40,
40,
40,
40.08,
31,
30.52,
39.35,
39.35,
39.35,
39.38,
40,
40,
40.15,
39.32,
40,
39.85,
18.89,
18.89,
38,
38,
35.26,
40.82,
40.82,
40,
40,
40,
40,
0,
40,
40.03,
37,
40,
39.94,
1,
1,
40,
40,
20.01,
20.01,
40,
39.88,
19.6,
41.05,
41.05,
40,
79.96,
0,
40,
40,
40.13,
20.07,
20.07,
0,
0.15,
40,
40,
40,
39.22,
41.05,
41.05,
40,
79.98,
24.12,
12,
0,
38,
38,
38.37,
19.19,
19.19,
0,
40,
40,
40,
40.01,
19.67,
41.53,
41.53,
79.98,
20.97,
10.5,
0,
38,
38,
38.37,
19.19,
19.19,
40,
40,
41.55,
41.55,
79.96,
0,
31,
40,
40,
40.12,
20.06,
20.06,
15.07,
40,
20,
41.48,
41.48,
40,
40,
39.83,
0,
40,
40.03,
40.03,
3,
1.5,
40,
39.91,
0,
31,
40,
40,
20,
20,
40,
39.88,
41.47,
41.47,
34,
34,
40,
40,
39,
39.25,
39.25,
28,
39,
38.93
],
"xaxis": "x",
"y": [
6250,
6250,
0,
0,
12800,
7500,
26250,
3725,
5000,
8000,
11467,
40000,
55614,
0,
500,
200,
6250,
10900,
10000,
8775,
10000,
6285,
6285,
20000,
19300,
10000,
17230,
17230,
12520,
8667,
12500,
43750,
9600,
9600,
18150,
18150,
8775,
10000,
6285,
6285,
20000,
19300,
110000,
17240,
17240,
12520,
0,
8667,
12500,
43750,
0,
9600,
9600,
0,
3000,
0,
28000,
45000,
25000,
31282,
12000,
16667,
11812,
11000,
10000,
22500,
30000,
14800,
14000,
16950,
4717,
4717,
7000,
14375,
30580,
30580,
32837,
34682,
1000,
32500,
51250,
6650,
57116,
9975,
13300,
13300,
34500,
11700,
11700,
12500,
8000,
22500,
17000,
25000,
2000,
32500,
51250,
6650,
57116,
7014,
5850,
9975,
13300,
13300,
33000,
11175,
11175,
12500,
22500,
25000,
17500,
25000,
1000,
32500,
51250,
57116,
6100,
4500,
9975,
13300,
13300,
33000,
11175,
11175,
22500,
17500,
32500,
51250,
57116,
9970,
9970,
13300,
13300,
34500,
11700,
11700,
8000,
22500,
25000,
25000,
31283,
12000,
16666,
40000,
10000,
22500,
15000,
15000,
402,
0,
14000,
16950,
20000,
6250,
7000,
14375,
30572,
30572,
32820,
39418,
25000,
31283,
35000,
74900,
11812,
11000,
22500,
15000,
15000,
10800,
14000,
0
],
"yaxis": "y"
},
{
"hovertemplate": "RM=215 - Stanley<br>animation_frame=1995<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "215 - Stanley",
"marker": {
"color": "#ab63fa",
"symbol": "circle"
},
"mode": "markers",
"name": "215 - Stanley",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
40,
40,
40,
40.16,
39.89,
40,
40,
39,
38.95,
38.95,
38.95,
40,
40,
40,
40,
40,
40.18,
40,
40,
40,
40.03,
40,
40,
40,
40,
40.15,
39,
38.96,
40,
40.03,
39.89,
0,
40.23,
40.23,
40.05,
40.05,
40,
40,
36.58,
36.58,
40,
39,
39.78,
39.78,
40,
40,
39.9,
40.03,
40.03,
40,
39.9,
39.9,
0,
40,
39.84
],
"xaxis": "x",
"y": [
5063,
9000,
15000,
33000,
18750,
9667,
9333,
12500,
74100,
107714,
52130,
5063,
9000,
15000,
8333,
18667,
18000,
10750,
21250,
4375,
14600,
7500,
7000,
8333,
18666,
18000,
14250,
21250,
4375,
14600,
5000,
8750,
25000,
25000,
18000,
29000,
7500,
10000,
17000,
26500,
7000,
10000,
18000,
29000,
7500,
20000,
20000,
18000,
29000,
10000,
20000,
15000,
8750,
8750,
15000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=247 - Kellross<br>animation_frame=1995<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "247 - Kellross",
"marker": {
"color": "#FFA15A",
"symbol": "circle"
},
"mode": "markers",
"name": "247 - Kellross",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
40,
40,
40,
39.89,
39.89,
39.89,
20,
19.94,
19.94,
19.94,
10,
20,
19.76,
40,
38,
20,
20,
20,
39.53,
53.25,
40.02,
40.02,
39.32,
39.32,
39,
39.96,
39.96,
39.87,
40,
39.98,
20,
20,
20,
53.25,
40,
39.88,
39.88,
39.57,
39.57,
0,
19.98,
19.98,
19.93,
40,
39.99,
39.86,
39.86,
39.86,
0,
40,
40,
41,
40.73,
39.98,
39.98,
39.98,
39.64,
40,
40,
40,
41,
40.76,
39.99,
39.99,
39.99,
19.95,
20,
20.44,
39.98,
39.98,
39.98,
39.93,
20,
20.42,
19.99,
19.99,
19.99,
39.95,
19.93,
19.93,
19.93,
0
],
"xaxis": "x",
"y": [
10000,
11250,
7800,
32610,
36842,
36842,
5600,
21740,
24561,
24561,
2800,
8000,
8000,
15000,
0,
10000,
11250,
3900,
16250,
6667,
25000,
25000,
5000,
27500,
0,
12000,
15000,
29000,
5800,
8000,
0,
700,
3910,
6667,
0,
25000,
25000,
5000,
25500,
0,
7000,
15000,
14000,
5800,
8000,
10000,
10000,
17940,
5000,
10000,
10000,
18660,
18660,
27200,
28000,
29496,
51788,
2,
10000,
10000,
18660,
18660,
27200,
28000,
29503,
26064,
9400,
9400,
27200,
28000,
29496,
52153,
9400,
9400,
12400,
12850,
14748,
52179,
5000,
5000,
17940,
5000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=070 - Key West<br>animation_frame=1995<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "070 - Key West",
"marker": {
"color": "#19d3f3",
"symbol": "circle"
},
"mode": "markers",
"name": "070 - Key West",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
40,
40.01,
40,
40,
39.72,
19.99,
40,
0,
40,
40,
20,
20,
38.17,
20,
40,
40,
40.06,
19.82,
20,
20,
40.03,
40,
40,
40,
40,
20.04,
20,
40,
40,
40.07,
19.97,
20,
20,
40.04,
35,
40.08,
40,
20,
40.06,
40,
7.96,
7.96,
39.09,
39.09,
39.09,
40.01,
40.04,
40,
20.19,
40,
40,
35.94,
35.94,
35.94,
40.03,
40.03,
40,
40.14,
40,
40,
19.47,
19.47,
32,
31.94,
31.94,
31.94,
20.01,
40.03,
40,
40.13,
20,
20,
39.14,
39.14,
35,
34.86,
34.86,
34.86,
20,
20.02,
20,
20.19,
40,
40,
40.08,
20,
39.99,
40.06,
20,
40,
40.08,
40,
39.98,
20.04,
40
],
"xaxis": "x",
"y": [
15000,
13000,
5032,
13000,
12900,
6500,
0,
5682,
7000,
7000,
4000,
4000,
16700,
3333,
30000,
18337,
13000,
6400,
3922,
3922,
13000,
14000,
14000,
4000,
4000,
8300,
3333,
30000,
18337,
13000,
6500,
3922,
3922,
13000,
5380,
24543,
5032,
6500,
13000,
5000,
5000,
7809,
10000,
10000,
23250,
13000,
13000,
6880,
6600,
24403,
24403,
10000,
10000,
23250,
13000,
13000,
6880,
13000,
24428,
24428,
10000,
15500,
1,
10000,
10000,
23250,
6500,
13000,
6880,
13000,
12217,
12217,
20000,
31000,
1,
10000,
10000,
23250,
6500,
6500,
6880,
6600,
24409,
24409,
24167,
5032,
13000,
13000,
2000,
5400,
24161,
5032,
13000,
6500,
12000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=184 - Grayson<br>animation_frame=1995<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "184 - Grayson",
"marker": {
"color": "#FF6692",
"symbol": "circle"
},
"mode": "markers",
"name": "184 - Grayson",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
39.32,
40,
31.69,
40,
40,
40,
40,
40,
40.11,
40.11,
40,
40,
40,
40,
40,
40,
40.08,
40.08,
40,
38,
40,
40,
30,
30,
40,
39.68,
40,
40,
40.01,
40,
40,
40,
40,
41,
41.02,
40,
39.96,
39,
40.02,
39,
39.19,
39.19,
40,
40,
41,
41.35,
40,
39.92,
39,
40,
39,
38.94,
38.94,
40,
41,
41.32,
40,
40,
39.98,
39,
39,
40,
41,
40.98,
40,
38,
37.89,
41,
40.72,
40,
38,
37.67
],
"xaxis": "x",
"y": [
35000,
11667,
16500,
5783,
8944,
9000,
8500,
9200,
15640,
38415,
6730,
16825,
9535,
9535,
8500,
9200,
15640,
38385,
6730,
16825,
10000,
35000,
10000,
10000,
17000,
18700,
10559,
12666,
10000,
9000,
10000,
8500,
8250,
16650,
18350,
8955,
8955,
12667,
10000,
15500,
26350,
37720,
8500,
8250,
16650,
18350,
8948,
8948,
77000,
78500,
15500,
26350,
37480,
10000,
16650,
18350,
10559,
12667,
10000,
9500,
10500,
10000,
16650,
18350,
11318,
17500,
36000,
17000,
18700,
9535,
17500,
36000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=276 - Foam Lake<br>animation_frame=1995<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "276 - Foam Lake",
"marker": {
"color": "#B6E880",
"symbol": "circle"
},
"mode": "markers",
"name": "276 - Foam Lake",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
35,
40,
40,
19.9,
19,
18.74,
40,
39.76,
39.76,
39.81,
39,
38.67,
40,
40,
39.84,
40,
40,
40,
40,
40,
40,
39.8,
35,
34.55,
28,
40,
39.95,
40,
39.73,
39.99,
39.86,
40.09,
40.09,
37.44,
37.44,
18.5,
18.5,
40,
40,
39.74,
39.74,
39.74,
13.33,
0,
0.49,
6,
6,
40,
39.95,
40,
39.81,
40,
39.87,
40.09,
40.09,
23.32,
23.32,
11,
11,
40,
35,
34.93,
32.13,
32.13,
32.13,
11.67,
40,
37,
37,
40,
40,
40,
39.9,
40.03,
6,
6,
40,
39.95,
40,
6.66,
19.99,
19.99,
19.99,
13.33,
39.79,
40,
39.89,
39.7,
40,
39.94,
40,
6.66,
19.99,
19.99,
13.33,
39.89,
40,
20,
20.48,
40,
39.93,
40.05,
40.05,
39.9,
40,
40.05,
23,
23,
40,
39.94,
40.06,
40.06,
12.19,
40,
40,
39.76,
39.76,
20,
20,
40,
40
],
"xaxis": "x",
"y": [
60000,
6930,
6250,
5100,
4000,
19500,
4001,
15000,
24000,
22500,
18800,
55125,
5310,
7125,
45000,
9750,
15000,
7500,
12500,
10000,
8000,
5100,
4000,
35900,
10000,
7500,
33250,
19250,
59888,
25000,
35000,
23250,
40000,
11000,
11000,
1392,
1392,
9000,
27000,
50000,
50000,
20000,
8000,
150,
5000,
5000,
5000,
7500,
33250,
19400,
59889,
25000,
35000,
23250,
40000,
6710,
6710,
1392,
1392,
9000,
27000,
50000,
10000,
10000,
10000,
8000,
6250,
19140,
19140,
7500,
7500,
7500,
5690,
16500,
0,
534,
21600,
23000,
8850,
1500,
4500,
4500,
4500,
2950,
26030,
7500,
5690,
16500,
21600,
24000,
8850,
1500,
4500,
4500,
2950,
26100,
11000,
10000,
21000,
17500,
24000,
24000,
19150,
26110,
11000,
16500,
0,
533,
17500,
23000,
24000,
19150,
7980,
7500,
7500,
20473,
20473,
10440,
10440,
7500,
7500
],
"yaxis": "y"
},
{
"hovertemplate": "RM=305 - Invermay<br>animation_frame=1995<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "305 - Invermay",
"marker": {
"color": "#FF97FF",
"symbol": "circle"
},
"mode": "markers",
"name": "305 - Invermay",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
40,
15.1,
37.68,
38.92,
38.92,
78.8,
39.4,
20.01,
40,
40.25,
40.25,
8,
8,
1,
8,
7,
40,
39.87,
40,
40.08,
40,
38.93,
38.93,
38.93,
78.88,
39.44,
40.25,
40.25,
20.03,
40.11,
40,
40,
40,
30,
40,
27,
9.71,
40,
40,
40,
39.58,
40,
38.95,
38.95,
38.95,
40.25,
40.25,
40.06,
40.11,
40,
40,
40,
8,
10,
32.38,
40,
39,
39,
38.74,
39.99,
39.99,
39.96,
38.03,
38.9,
40,
39,
5,
5,
5,
0,
39.95,
39.96,
0,
40,
38.03,
38.03,
19.96,
19.97,
40,
39.69,
35,
34.72,
39.37,
40,
40,
0,
0,
27,
26.97,
40,
40,
39.96,
39.96,
39.96,
37.03,
37.03,
37.03,
19.96,
19.97,
40,
39.71,
40,
39.56,
39.14,
39.46,
39,
40,
40,
39,
26,
26,
26,
40,
40,
39.98,
39.98,
39.97,
0,
0,
29,
28.54,
38.99,
38.99,
38.99,
20,
40.08,
12,
40.14,
39.99,
40,
40,
39.97,
39,
40,
40,
39,
0,
0,
33,
33.23,
34,
34,
34,
39.96,
0,
39.99,
40.03,
40.03,
20,
40.08,
35,
34.75,
40.37,
40.03,
40,
40,
39.95,
40,
40,
0,
0,
39,
38.87,
13,
13,
39.98,
39.98,
39.96,
40.03,
40.08,
40,
40,
27,
27,
27,
0,
39.94,
23.5,
40,
40,
0,
39.98,
39.96,
38.91,
77.82,
38.91,
38.91,
38.91,
40.08,
15,
15.42,
15.42
],
"xaxis": "x",
"y": [
12000,
9492,
17500,
0,
252000,
40000,
20000,
25000,
7667,
3750,
3750,
0,
3180,
1590,
3180,
1590,
12800,
59200,
12000,
25196,
32000,
0,
27200,
54600,
40000,
20000,
3750,
3750,
6939,
21700,
1250,
1250,
21250,
8700,
4500,
10000,
10622,
5500,
15000,
15000,
19754,
30600,
0,
27200,
54600,
3750,
3750,
13886,
21690,
1250,
1250,
21250,
2300,
9500,
35421,
5500,
15000,
15000,
19330,
22500,
22500,
20150,
24000,
17850,
10000,
12500,
1587,
1587,
1587,
12500,
62000,
2480,
8400,
16000,
16000,
75000,
10000,
40000,
8500,
20312,
6500,
7000,
14000,
10000,
10000,
8750,
8750,
8051,
36814,
12150,
12150,
20000,
20000,
62500,
0,
16000,
37500,
10000,
40000,
8500,
20312,
6000,
400000,
40000,
15000,
16000,
10000,
10000,
0,
1587,
1587,
1587,
12150,
12150,
20000,
20000,
62500,
12500,
12500,
12500,
38957,
0,
16000,
37500,
5000,
23437,
6000,
14500,
15000,
24300,
24300,
30000,
16000,
10000,
10000,
0,
8750,
8750,
9917,
45358,
1587,
1587,
1587,
2480,
8400,
16000,
16000,
75000,
5000,
23437,
6500,
7000,
14500,
15000,
36400,
36400,
20000,
10000,
10000,
8750,
8750,
11600,
53058,
1150,
3400,
22500,
22500,
20150,
24000,
17850,
10000,
12500,
1587,
1587,
1587,
12500,
62000,
32078,
3640,
10600,
6450,
11500,
20150,
0,
32000,
16000,
35000,
35000,
17850,
27700,
20000,
83500
],
"yaxis": "y"
},
{
"hovertemplate": "RM=100 - Elmsthorpe<br>animation_frame=1995<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "100 - Elmsthorpe",
"marker": {
"color": "#FECB52",
"symbol": "circle"
},
"mode": "markers",
"name": "100 - Elmsthorpe",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
38.47,
38,
40,
39.73,
39.94,
40.75,
39.73,
39.73,
40,
40,
39.7,
39.76,
39.76,
40,
40,
40.44,
40.44,
38,
38,
38,
38.01,
39.91,
19.96,
40.08,
40,
40,
39.58,
40,
39.71,
39.71,
39.58,
39.58,
20,
40,
40.06,
40.06,
40,
40.07,
39.87,
39,
39,
38.31,
40,
39.5,
39.5,
39.61,
39.61,
39,
0,
40,
40.11,
40.11,
39.85,
40,
40,
39.91,
20,
39.89,
39.89,
39,
20.06,
20.06,
40,
39.85,
40,
40,
39.93,
40,
39.83,
39.83,
39.95,
39.95,
39,
40,
40.06,
40.06,
40,
39.87,
20,
40,
40.48,
40,
39.58,
19.95,
9.98,
40.02,
20,
40,
34.98,
40,
39.6,
38,
37.74,
18.87,
37.75
],
"xaxis": "x",
"y": [
36500,
2,
10000,
26500,
11325,
38500,
26850,
25380,
24833,
10000,
24700,
26877,
25405,
14062,
12500,
20000,
20000,
8550,
2,
8550,
14950,
3000,
1500,
0,
11111,
11111,
56919,
3907,
22699,
25365,
18750,
34375,
5715,
5750,
23675,
25595,
12000,
65000,
11250,
11111,
11112,
55092,
3906,
22688,
25240,
18750,
34375,
2,
17140,
5750,
23725,
25630,
11250,
11111,
11111,
50892,
3906,
18750,
34375,
5715,
11865,
12820,
6500,
11250,
11111,
11111,
50892,
3906,
23135,
25445,
18750,
34375,
5715,
5750,
23675,
25595,
6500,
11250,
14062,
15000,
19887,
8600,
15900,
3000,
1500,
20000,
14062,
15000,
15412,
8600,
15600,
0,
6000,
3000,
40000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=275 - Insinger<br>animation_frame=1995<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "275 - Insinger",
"marker": {
"color": "#636efa",
"symbol": "circle"
},
"mode": "markers",
"name": "275 - Insinger",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
40,
39.91,
39.1,
40,
40,
39.79,
13.37,
39.61,
40,
39.78,
39.61,
40,
39.95,
40,
39.85,
38.99,
40,
25.09,
40,
40,
39.9,
20,
40,
39.65,
40,
40,
40.01,
40.01,
40.01,
40,
39.78,
39.85,
40,
40,
40,
39.89,
39.9,
39.89,
39.89,
39.89,
40,
40,
0,
40,
40,
40,
39.92,
20,
40,
39.65,
40,
31.95,
31.95,
31.95,
40,
39.75,
39.86,
40,
40,
40,
39.9,
39.9,
0,
0,
0,
40,
40,
39.69,
39.69,
39.69,
40,
0,
40,
39.96,
40,
0,
40,
39.83,
6.39,
38,
37.88,
39.92,
39.89,
39.89,
39.98,
37.8,
40,
0,
40,
39.92,
39,
39.82,
40,
40,
39.99,
39.97,
39.9,
40,
0,
40,
39.93,
40,
40,
39,
39,
39.33,
39.33,
39.81,
40,
40,
39.99,
40,
39.98,
40,
39.94,
20,
40,
40,
40,
39.89,
39.89,
39.8,
40,
40,
39.99,
40,
39.99,
40,
39.93,
20,
39.81,
40,
40,
39.98,
39.96,
40,
40,
40,
39.83,
39.83,
23.08,
40,
39.95,
39.91,
39.9,
39.9,
0,
0,
39,
39.24,
40.02,
40.02,
40,
39.83,
39.83
],
"xaxis": "x",
"y": [
17000,
17000,
0,
9000,
15000,
22500,
2000,
36000,
5500,
28482,
12500,
8350,
7500,
17000,
17000,
0,
9000,
10500,
10000,
12920,
33750,
5000,
20000,
12500,
5813,
10000,
20000,
50000,
30000,
12500,
16665,
30000,
11000,
11000,
20250,
72687,
4260,
9450,
8815,
20000,
12500,
7000,
7500,
7500,
10000,
12920,
33750,
5000,
89000,
62500,
10000,
92000,
80000,
54000,
12500,
16666,
30000,
11000,
11000,
20250,
72687,
4260,
12240,
11672,
20000,
12500,
11900,
22500,
22500,
37500,
7000,
7500,
7500,
30000,
129900,
2500,
7500,
33150,
771,
25000,
74250,
10500,
9450,
8815,
15000,
12649,
7650,
6250,
11700,
11700,
0,
9750,
11000,
19000,
13750,
15000,
13351,
7650,
6250,
11700,
11700,
3500,
6000,
0,
9603,
19495,
20000,
9750,
11000,
19000,
13750,
18620,
51250,
7650,
33000,
6250,
3000,
6000,
9738,
19775,
20000,
28210,
11000,
19000,
13750,
18620,
51250,
7650,
33000,
6250,
28210,
11000,
19000,
13750,
30000,
16293,
46500,
4000,
20045,
20045,
2784,
1995,
11438,
10500,
12240,
11673,
10000,
40000,
16294,
45750,
25000,
50000,
16000,
20045,
20045
],
"yaxis": "y"
},
{
"hovertemplate": "RM=250 - Last Mountain Valley<br>animation_frame=1995<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "250 - Last Mountain Valley",
"marker": {
"color": "#EF553B",
"symbol": "circle"
},
"mode": "markers",
"name": "250 - Last Mountain Valley",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
40,
40,
40,
40,
40,
40,
40,
20,
23.98,
40,
40,
40,
40,
40,
16.34,
40,
39.96,
40,
39.81,
20,
20,
19.87,
39.85,
0,
80.12,
39.83,
39.83,
39.83,
39.83,
39.82,
0,
80.18,
37.9,
37.9,
37.9,
37.9,
0,
40,
80.1,
38,
0,
40,
80.04,
40,
40,
40,
39.71,
8,
3,
8,
5,
5,
3,
7.2,
7.2,
0.75,
1.25,
37,
37,
36.79
],
"xaxis": "x",
"y": [
1508,
0,
1508,
0,
1507,
5000,
5000,
1507,
5795,
7377,
12350,
6429,
0,
11250,
0,
5000,
10000,
11250,
23050,
2600,
2600,
4200,
23075,
7500,
21000,
14700,
14700,
32300,
32300,
23050,
7500,
21000,
14700,
14700,
32300,
32300,
7500,
8000,
31600,
7500,
7500,
8000,
31600,
7500,
6500,
6500,
8400,
0,
650,
1300,
650,
4180,
3000,
11590,
11590,
750,
1045,
6500,
6500,
7800
],
"yaxis": "y"
}
],
"name": "1995"
},
{
"data": [
{
"hovertemplate": "RM=213 - Saltcoats<br>animation_frame=1996<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "213 - Saltcoats",
"marker": {
"color": "#636efa",
"symbol": "circle"
},
"mode": "markers",
"name": "213 - Saltcoats",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
39.93,
4.62,
40,
40.42,
40.42,
39.92,
40,
40,
40,
40,
39.09,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
34.38,
40,
40,
40,
40,
40,
40,
40,
160,
161,
160.82,
160,
80.21,
40.11,
80,
161,
161,
160.37,
160.37,
160,
160,
159.84,
160.55,
160.35,
161,
162,
160,
160.3,
163,
161.58,
161.58,
160.5,
160.65,
160.02,
107,
107,
107,
107.2,
101.18,
85.57,
160,
160.82,
160,
0,
160,
158.09,
160,
159,
159.11,
109.7,
0,
152,
160,
159.99,
159.99,
160.08,
160,
160,
160.14,
160.14,
161,
160.66,
160,
159.83
],
"xaxis": "x",
"y": [
35750,
5000,
9000,
52285,
60402,
35750,
25000,
35000,
11250,
6000,
3750,
11250,
10000,
11456,
4700,
4700,
9250,
10000,
10000,
11456,
11250,
9250,
10000,
10000,
11456,
5965,
11250,
10000,
10000,
10000,
11456,
5965,
4700,
4700,
10000,
10000,
2500,
6000,
3750,
6525,
25000,
35000,
6525,
8333,
35500,
78840,
160000,
55000,
75000,
37500,
27500,
30000,
49000,
120000,
87325,
100000,
35000,
150000,
164000,
223000,
21800,
65000,
38300,
160000,
30000,
209000,
218750,
280000,
176000,
242500,
32500,
57000,
50000,
50000,
0,
95000,
36000,
67300,
8260,
10900,
22500,
150000,
37356,
77805,
160000,
19800,
21500,
48643,
30918,
120800,
123015,
187500,
20000,
35000,
199800,
240000,
61000,
75000,
50000,
180000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=488 - Torch River<br>animation_frame=1996<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "488 - Torch River",
"marker": {
"color": "#EF553B",
"symbol": "circle"
},
"mode": "markers",
"name": "488 - Torch River",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
40.11,
40,
40,
40,
40.05,
40.05,
39,
39.32,
40,
19.98,
19.98,
19.98,
39,
39,
19,
18.94,
40.08,
40,
40.07,
40.07,
40,
39.92,
20,
20,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
39.52,
39.52,
40,
40,
40,
40,
40,
40,
40,
40,
39.49,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40.25,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40.25,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40.25,
40,
40,
40,
40,
40,
40,
40,
40,
40.25,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
4,
141.29,
141.29,
161,
161,
159.35,
158,
158.53,
158.97,
155.04,
159.8,
160,
160,
160,
160,
157.7,
315.4,
157.7,
157.29,
157.29,
159,
159.4,
160,
159.66,
159.66,
159.66,
120,
120,
120.45,
153.28,
7,
160.37,
159,
160,
160,
160,
160,
159.04,
159,
161,
160,
160,
160,
159.72,
159.72,
160,
160,
159.84,
159.84,
159,
159.49,
160,
160,
161,
151,
157.99,
157.99,
157.83,
160.01,
159.07,
159.07,
160,
161,
160,
159.91,
151.73,
160.55,
160,
159.74,
160,
160,
160.05,
160.05,
160,
160,
319.52,
160,
160,
160
],
"xaxis": "x",
"y": [
22450,
10000,
10000,
23020,
56053,
74800,
500,
500,
7950,
13750,
13750,
10000,
10000,
10000,
5500,
18000,
33440,
110000,
30240,
30240,
13000,
55625,
6500,
7800,
0,
11070,
0,
11070,
0,
7000,
0,
0,
60000,
0,
0,
12667,
4000,
0,
12720,
12720,
10000,
10000,
13000,
13000,
17500,
5500,
9167,
12667,
12720,
12720,
0,
13000,
13000,
17500,
5500,
9167,
10184,
12667,
11900,
11900,
12500,
0,
0,
50000,
20500,
20500,
5500,
9167,
10184,
105000,
4000,
0,
11900,
11900,
12500,
10000,
10000,
15000,
20500,
20500,
5500,
0,
0,
11070,
0,
11070,
60000,
0,
6500,
12500,
0,
0,
11070,
0,
11070,
10000,
105000,
6500,
12500,
7000,
11500,
7500,
5000,
18000,
10000,
50000,
50000,
75000,
14500,
14500,
2670,
150000,
150000,
54000,
82500,
150000,
0,
120000,
24000,
25000,
35000,
24000,
40300,
18000,
18000,
165000,
336000,
185000,
50000,
77000,
14500,
70880,
55500,
76117,
76117,
128970,
20000,
98500,
155000,
0,
890,
171000,
35000,
5000,
37000,
37000,
37000,
0,
51100,
25000,
42700,
50000,
35040,
40000,
75000,
9960,
3000,
45000,
45000,
14850,
173280,
19360,
50000,
0,
105000,
15000,
25920,
0,
140000,
157300,
157300,
34900,
60000,
40000,
150000,
164000,
82500,
65000,
153200,
10000,
87000,
168155,
222200,
2500,
19910,
39820,
8614,
10000,
10000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=336 - Sasman<br>animation_frame=1996<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "336 - Sasman",
"marker": {
"color": "#00cc96",
"symbol": "circle"
},
"mode": "markers",
"name": "336 - Sasman",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
38.93,
0,
40,
40,
20.02,
20.02,
40.04,
35.08,
40,
40,
40,
40.08,
40.08,
0.07,
0.07,
0.07,
18,
18.01,
19.66,
29,
28.67,
20,
19.45,
19.45,
28,
40,
40,
39.22,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
23.88,
23.88,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
9,
9,
4.4,
4.4,
10,
10,
9.46,
9.46,
158,
158,
158,
158,
157.78,
157.78,
159.4,
8,
161,
161,
160,
160.46,
160,
160,
160,
159.98,
78.75,
78.75,
78.5,
78.5,
78.5,
159,
159,
159,
25,
117,
142,
141.84,
161,
160,
160.43,
160.43,
160,
161,
160.66,
160,
160.16,
159,
159,
159,
158.72,
158,
157,
156.97,
156.97,
159.36,
159.36,
159,
159,
159,
159,
159.06,
159,
160,
160.1,
161,
160.54,
160.54,
160.54,
160,
160,
161,
161,
159,
317.46,
158.73,
160
],
"xaxis": "x",
"y": [
16950,
20000,
7000,
14375,
30603,
30603,
40000,
36472,
8775,
10000,
11550,
15000,
20000,
1,
1,
12520,
0,
0,
0,
9600,
9600,
7000,
0,
3450,
12000,
12500,
12500,
30000,
30000,
11333,
30667,
8333,
11250,
11250,
6650,
8000,
8000,
7000,
15500,
8333,
11250,
11250,
6650,
8000,
8000,
7000,
15500,
10000,
11250,
11250,
8750,
5000,
6400,
6400,
0,
8333,
11250,
11250,
8750,
5000,
8000,
8000,
0,
11333,
30667,
12500,
12500,
11333,
14000,
7175,
6719,
6719,
11812,
4000,
0,
3000,
25700,
25700,
30000,
55000,
42500,
36080,
312000,
1000,
50000,
60000,
49313,
45000,
60000,
71500,
115000,
115000,
22000,
22000,
22000,
22000,
22000,
70000,
0,
0,
0,
0,
0,
150000,
90000,
65000,
50000,
50000,
39000,
70000,
185000,
62700,
419000,
55000,
55000,
77000,
168000,
10000,
0,
37800,
25920,
200000,
16300,
52000,
52000,
33055,
68000,
275000,
57000,
85000,
150000,
32500,
175000,
175000,
170000,
20000,
20000,
37900,
25000,
33000,
150000,
75000,
50000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=215 - Stanley<br>animation_frame=1996<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "215 - Stanley",
"marker": {
"color": "#ab63fa",
"symbol": "circle"
},
"mode": "markers",
"name": "215 - Stanley",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
40.24,
0,
40,
39,
39,
39.03,
39.03,
39.03,
40,
40,
40,
40,
40,
40,
39.06,
40,
40,
39.06,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
158.61,
63,
63,
63,
160,
159.58,
60.58,
17.73,
155,
3,
160.19,
160,
160,
159.07,
138,
160,
160,
159,
15.8,
15.82,
136.06,
134,
134,
134,
158.98,
160,
160,
160.18,
160,
160,
160.88,
159.66,
159.66,
159.66,
157.67,
0,
156.78,
156.78,
160,
160,
153.8,
160,
160,
144.72,
146,
146,
145.43,
159.77,
159.77,
160,
160,
159.56,
158.28,
158.28,
160,
141,
141,
141,
141.19,
141.19,
141.19
],
"xaxis": "x",
"y": [
33100,
8750,
8750,
11235,
11235,
60000,
60000,
37500,
14600,
11500,
11328,
5000,
11328,
5000,
3750,
11368,
2500,
3750,
11368,
2500,
3750,
13303,
3500,
3750,
13303,
1000,
3500,
11328,
11328,
97000,
15000,
20000,
65525,
65000,
328000,
3180,
17000,
91900,
100,
142000,
27000,
45000,
221609,
40000,
24000,
60000,
45000,
24799,
70021,
7000,
19000,
21850,
21850,
95000,
126025,
250000,
350000,
31524,
50000,
145000,
674090,
475000,
455000,
43680,
0,
50000,
50000,
21000,
12500,
66000,
29950,
43000,
35000,
48484,
50000,
80000,
4000,
163257,
45313,
50000,
39000,
135000,
135000,
27500,
32323,
40000,
40000,
267900,
389426,
205660
],
"yaxis": "y"
},
{
"hovertemplate": "RM=247 - Kellross<br>animation_frame=1996<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "247 - Kellross",
"marker": {
"color": "#FFA15A",
"symbol": "circle"
},
"mode": "markers",
"name": "247 - Kellross",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
0,
35,
35,
40.1,
40.1,
19.94,
19.94,
0,
39.97,
39.97,
19.95,
20,
19.98,
40,
39.3,
40,
40,
40,
40,
39.3,
40,
40,
40,
40,
0,
10,
5,
9.98,
9.98,
9.98,
5,
4.94,
0,
9.99,
9.99,
10,
10.23,
45,
44.77,
159,
158.97,
158.97,
160,
160.2,
157.01,
156,
156,
156.04,
156.04,
156.04,
59.63,
160,
160,
160,
135,
135,
159,
156.81,
157,
157.18,
160,
157.7,
157,
156.93,
160.17,
160.15,
160.15,
158.48,
0,
0,
0,
0,
0,
156.15,
160,
110,
110,
110,
0,
160,
160,
160.15,
160.15,
160,
160,
157.68,
159.73,
159.73,
160,
159.7,
155.78,
155.78,
155.78,
159.97,
53.28,
159.83,
161,
161,
161,
160,
160,
160,
160
],
"xaxis": "x",
"y": [
5000,
4000,
6639,
25000,
25000,
5000,
25500,
0,
12000,
15000,
14000,
5800,
8000,
6000,
4000,
8750,
8750,
5000,
8750,
4000,
5000,
8750,
6000,
4321,
5000,
2800,
1400,
10870,
24561,
24561,
2000,
2000,
0,
5000,
15000,
4700,
4700,
13700,
28380,
35000,
100000,
100000,
40000,
160000,
20000,
25000,
25000,
60000,
60000,
100000,
72000,
33600,
33600,
33600,
18001,
18001,
28700,
0,
43200,
43200,
46230,
212043,
90000,
100000,
90000,
60000,
60000,
10000,
0,
0,
7000,
7000,
7000,
27210,
27210,
7000,
7000,
7000,
14000,
29085,
29085,
100000,
130000,
33850,
33850,
120000,
121500,
121500,
30500,
38000,
97830,
105105,
105105,
19000,
12000,
36000,
30000,
27400,
27400,
32000,
32500,
32500,
32500
],
"yaxis": "y"
},
{
"hovertemplate": "RM=070 - Key West<br>animation_frame=1996<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "070 - Key West",
"marker": {
"color": "#19d3f3",
"symbol": "circle"
},
"mode": "markers",
"name": "070 - Key West",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
20.08,
40,
40,
40,
40,
20.03,
40,
34,
19.97,
40,
40,
20.02,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
10.03,
10,
9.97,
10.01,
10,
10,
10.08,
10.03,
10.01,
161,
160,
160,
160.12,
160.12,
160.12,
159,
159,
159.63,
159.63,
159.63,
160.01,
159.76,
160,
159,
159.43,
160,
160,
159.69,
160,
160,
160.29,
160.29,
160.18,
160,
160,
159.81,
159.4,
159.4,
158.06,
158.06,
158.06,
157,
39.22,
117.65,
117.65,
117.65,
156.87,
156.87,
157,
159,
159,
161.27,
158.96,
158.96,
159,
159.06,
160,
160,
160.18,
159.97,
159,
160,
159.1,
158.84,
160,
152.98,
152,
152.06,
152.06,
158,
160,
160,
80,
157,
157,
157,
159.6
],
"xaxis": "x",
"y": [
6500,
14000,
14000,
4000,
4000,
8300,
3333,
18666,
6500,
3922,
3922,
6500,
2714,
0,
4750,
2714,
0,
4750,
1900,
1900,
7000,
7250,
1900,
1900,
7000,
7250,
2714,
0,
4750,
3300,
3300,
3200,
3300,
5032,
1000,
3300,
3300,
3300,
40000,
34000,
40500,
50000,
104635,
77232,
25000,
25000,
185000,
185000,
191125,
29100,
50000,
26250,
28300,
69285,
30000,
30000,
110000,
10000,
13250,
70000,
90000,
82420,
48900,
25000,
95000,
85661,
134100,
5000,
5500,
14000,
14000,
10000,
45000,
45000,
45000,
62000,
104000,
14000,
80000,
40000,
75800,
30000,
60000,
4000000,
643333,
40000,
55000,
67900,
28000,
39600,
30000,
57000,
30000,
23000,
45000,
73334,
83000,
237299,
50000,
35500,
14500,
8550,
22000,
50000,
50000,
75000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=184 - Grayson<br>animation_frame=1996<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "184 - Grayson",
"marker": {
"color": "#FF6692",
"symbol": "circle"
},
"mode": "markers",
"name": "184 - Grayson",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
40,
40,
40,
40,
40,
34,
5,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
161,
158.68,
161,
161,
162,
162,
162.03,
160,
163,
162.58,
162.58,
160,
160,
160,
4,
160,
160,
160,
0,
170,
170,
159.35,
160,
160,
161,
161,
160,
160,
161.2,
161,
160.53,
161,
161,
161,
160,
158.94,
159,
159,
158.55,
161,
161,
159.85,
160,
160,
160,
158.94,
159.78,
160.63,
160,
0,
0,
0,
0,
0,
160,
160,
161,
161,
161,
160.03,
160,
160,
160,
160,
160,
159,
160,
161,
161.4,
161.4,
160,
158.86,
158.86,
161,
161,
161,
116,
2,
117.9,
159.05,
159.05,
160,
156,
156,
160.09,
160,
166
],
"xaxis": "x",
"y": [
6400,
6400,
13245,
9535,
12548,
45500,
100,
25000,
9535,
8333,
10659,
20000,
3750,
10659,
5667,
12667,
5000,
3750,
5783,
8944,
5667,
12667,
5000,
7333,
7500,
7000,
5783,
8944,
77000,
7333,
9025,
7500,
7000,
10659,
5667,
12667,
5000,
9025,
3750,
10659,
8333,
3750,
9535,
8333,
9535,
8500,
15000,
34000,
20000,
75000,
75000,
75615,
75615,
75615,
34500,
34400,
34400,
167970,
28000,
25000,
25000,
0,
45000,
45000,
33500,
52,
33448,
33450,
14000,
35000,
46320,
30000,
20000,
51490,
51490,
27000,
34252,
165862,
29000,
24000,
27000,
25000,
150000,
56225,
56225,
100000,
18000,
35000,
48000,
82135,
22000,
40000,
33460,
32300,
90000,
27000,
6100,
44622,
4583,
4583,
46000,
39866,
39866,
40000,
48900,
49250,
152000,
36000,
48485,
36000,
36000,
80248,
0,
14335,
45428,
126200,
92000,
36560,
95000,
107790,
40000,
0,
30000,
0,
0,
6100,
125000,
156000,
35000,
34350,
34350,
136000,
34000,
46320
],
"yaxis": "y"
},
{
"hovertemplate": "RM=276 - Foam Lake<br>animation_frame=1996<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "276 - Foam Lake",
"marker": {
"color": "#B6E880",
"symbol": "circle"
},
"mode": "markers",
"name": "276 - Foam Lake",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
8.16,
39.96,
40.02,
39.79,
39.79,
40.1,
40.1,
6.87,
6.75,
6.75,
37.82,
37.82,
19,
19,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
30.6,
40,
40,
40,
40,
40,
30.6,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
2,
2,
3.85,
3.85,
10,
159.9,
159.42,
159,
159.61,
159.61,
159.61,
159.61,
160,
159,
159.44,
160,
160,
158.66,
158.97,
158.97,
158.97,
159,
146.36,
160,
159,
159,
161,
161,
161,
159.77,
160,
160,
159,
159,
158,
158.03,
158.03,
160,
159.18,
140,
14,
158.13,
158.13,
158.13,
158.13,
158.82,
145.31,
147.53,
161,
160,
160,
160,
159,
160,
158,
160,
156,
156,
156,
156,
160,
159,
159.06,
160,
159.88,
106,
103.63
],
"xaxis": "x",
"y": [
0,
33250,
25000,
12000,
50000,
23250,
40000,
1717,
1250,
5000,
11000,
11000,
1392,
1392,
6250,
6000,
6500,
6000,
6500,
7500,
10000,
1000,
7105,
3750,
10000,
4972,
7500,
10000,
6000,
7105,
11500,
4972,
6000,
6250,
6250,
3000,
11500,
1000,
6250,
6250,
3000,
3750,
10000,
7000,
7000,
7500,
8306,
5000,
1392,
1392,
1000,
1000,
1500,
100000,
95000,
43000,
80000,
80000,
80000,
150000,
44175,
60000,
125000,
40000,
38000,
15000,
22833,
30000,
43000,
46000,
0,
35000,
47900,
31000,
18900,
18900,
0,
65000,
38000,
38000,
61000,
54600,
48000,
140094,
182400,
7500,
120000,
99900,
1100,
7500,
7500,
7500,
0,
60000,
15000,
116000,
32500,
20940,
20940,
45000,
83150,
34000,
50000,
38000,
45000,
95000,
171000,
264947,
40000,
0,
181700,
34746,
30085,
27500,
0
],
"yaxis": "y"
},
{
"hovertemplate": "RM=305 - Invermay<br>animation_frame=1996<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "305 - Invermay",
"marker": {
"color": "#FF97FF",
"symbol": "circle"
},
"mode": "markers",
"name": "305 - Invermay",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
39,
39,
39,
40,
39.94,
27.96,
40,
40.04,
40.04,
79.9,
39.95,
40.07,
19.33,
36,
2.56,
2.56,
40,
39.93,
38.8,
7,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
28,
40,
40,
40,
40,
28,
40,
40,
10.01,
6,
6,
6,
10.01,
8,
4,
1,
1,
1,
160,
160.16,
159.11,
158,
158,
158.35,
159,
157.79,
0,
0,
3,
6,
3,
0,
0,
0,
2.53,
0,
0,
0,
160,
160,
159.2,
159.89,
156.99,
160,
161,
160.79,
159.85,
160,
160
],
"xaxis": "x",
"y": [
1587,
1587,
1587,
7500,
7500,
38165,
27000,
32000,
54600,
48668,
25000,
13890,
10450,
10300,
15000,
27000,
10000,
10000,
42444,
2100,
20200,
90000,
6750,
6250,
3523,
6000,
6750,
6250,
8333,
3523,
4450,
5000,
10000,
13250,
14500,
10500,
81,
7000,
4450,
5000,
10000,
8333,
13250,
7500,
14500,
10500,
81,
7000,
7500,
5000,
10000,
8333,
7500,
9500,
10500,
6000,
7500,
5000,
10000,
8333,
9500,
10500,
6000,
6750,
6250,
8333,
2250,
6750,
6250,
3523,
6000,
2250,
4500,
7500,
3469,
3180,
3180,
3180,
3469,
2300,
500,
1587,
1587,
1587,
51605,
314204,
30195,
65000,
65000,
79022,
25000,
0,
200,
200,
900,
0,
250,
50,
300,
2000,
1100,
11143,
100,
100,
10000,
35000,
22000,
110000,
55000,
9000,
50000,
145000,
95000,
48000,
48000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=100 - Elmsthorpe<br>animation_frame=1996<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "100 - Elmsthorpe",
"marker": {
"color": "#FECB52",
"symbol": "circle"
},
"mode": "markers",
"name": "100 - Elmsthorpe",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
40,
39.72,
39.49,
39.49,
40,
40,
39.63,
40,
39.72,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
9.96,
9.96,
10,
10.03,
10.03,
10,
9.98,
4.99,
160,
160,
160,
40.25,
160,
160,
159,
159.18,
159.18,
160,
160,
160,
160,
160,
152.75,
76.16,
152.32,
76.16,
152.32,
158,
158,
158.07,
160,
159,
159.08,
159.08,
158,
158.21,
158.21,
158.21,
158.23,
157.74,
157.74,
4,
155.94,
161,
161,
161,
161,
161,
161,
158.69,
157.94,
161,
161.37,
121.03,
160,
160,
159.71,
159.71,
160,
159,
159.45,
159.45,
159.45,
160,
160,
159.78,
159.78,
160.02,
160,
160,
160,
160,
320,
160,
160,
160.44,
160.44,
160,
80.39,
40.19,
159,
156,
155,
159,
159.13,
159.13,
159.13,
160,
160,
160,
159,
159,
158.25,
158.55,
162,
159.33,
160,
161,
160.9
],
"xaxis": "x",
"y": [
10000,
24700,
26695,
25230,
4671,
10000,
6975,
10000,
6975,
10000,
6975,
11443,
4000,
5000,
10000,
6975,
11443,
4000,
5000,
4671,
4671,
5786,
6365,
2875,
5927,
6400,
14062,
3000,
1500,
42000,
63720,
50000,
7500,
34000,
34000,
10000,
91000,
91000,
54500,
17000,
17000,
17000,
17000,
20000,
34269,
179474,
89737,
179474,
37200,
37200,
216000,
48000,
54000,
20000,
38333,
25000,
40000,
75000,
92316,
32500,
45500,
13898,
500,
53560,
39000,
39000,
30000,
30000,
30000,
30000,
47520,
237500,
16000,
39720,
29790,
0,
75000,
88900,
160000,
29000,
25000,
40000,
75000,
92316,
30000,
30000,
56700,
153538,
40000,
90000,
90000,
90000,
90000,
20000,
22000,
15000,
30000,
67000,
60115,
45000,
22500,
0,
15625,
25000,
23100,
81476,
134100,
134100,
50000,
50000,
0,
43000,
40000,
101635,
24090,
50000,
90000,
21542,
40000,
110000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=275 - Insinger<br>animation_frame=1996<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "275 - Insinger",
"marker": {
"color": "#636efa",
"symbol": "circle"
},
"mode": "markers",
"name": "275 - Insinger",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
40.17,
40,
39.96,
39.93,
39.8,
39.8,
38,
37.57,
39.63,
40,
40.05,
40.05,
40.05,
40,
40,
40,
39.75,
39.75,
39.75,
40,
40,
40,
39.9,
0,
0,
0,
40.15,
40.15,
40,
39.7,
39.7,
39.7,
0,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
40,
39,
40,
40,
40,
40,
39,
40,
40,
39.9,
40,
160,
156,
156,
160.57,
157,
157,
160,
158,
159.86,
159.86,
159,
158.84,
157,
157,
160,
157.2,
76.82,
76.82,
153.64,
153.64,
77,
74.99,
160,
160,
160,
160,
160,
160,
160,
159.96,
159.96,
79.98,
80,
160,
160,
160,
160,
160,
160
],
"xaxis": "x",
"y": [
4847,
1995,
11438,
10500,
12290,
11723,
23000,
22500,
77200,
10000,
20000,
50000,
30000,
18000,
3000,
3000,
3000,
7500,
7500,
12500,
11000,
20250,
72687,
12240,
11672,
20000,
500,
15000,
11900,
22500,
22500,
37500,
7500,
7500,
6000,
5000,
5000,
14000,
3000,
14000,
11000,
4000,
9750,
14000,
11000,
9750,
6000,
11000,
6000,
4000,
11000,
6000,
3000,
3000,
1000,
6000,
5000,
5000,
3000,
1000,
14000,
5813,
4260,
7000,
25000,
74900,
74900,
71000,
75000,
45000,
21000,
0,
135500,
150000,
35000,
92000,
0,
140000,
30000,
80000,
41200,
41200,
290000,
290000,
45500,
54205,
10500,
15000,
40000,
72500,
76440,
76440,
35000,
55800,
55800,
27900,
27750,
15000,
15000,
34000,
50000,
24300,
24300
],
"yaxis": "y"
},
{
"hovertemplate": "RM=250 - Last Mountain Valley<br>animation_frame=1996<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "250 - Last Mountain Valley",
"marker": {
"color": "#EF553B",
"symbol": "circle"
},
"mode": "markers",
"name": "250 - Last Mountain Valley",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
40,
40.01,
40,
40,
40,
40,
39.75,
40,
40,
40,
39.75,
40,
40,
39.24,
39.24,
40,
40,
40,
40,
40,
39.24,
39.24,
40,
40,
38.05,
39.75,
39.75,
39.75,
39.75,
40,
39.72,
40,
39.72,
40,
40,
40,
1.85,
158.93,
160,
159,
79.33,
79.33,
79.33,
79.5,
79.5,
159,
159,
160,
159.92,
160,
160,
160.19,
160.19,
155.69,
160,
160,
159.89,
160,
160,
160,
160,
159.95,
161,
160,
160,
160,
160,
160,
159,
159,
55,
85,
139.89,
160,
160,
159,
130,
130,
31,
20.67,
159.18,
160,
160,
160,
159,
159,
159.22,
159.22,
159.22,
160,
160,
160,
151.2,
151.04,
151.04,
151.04,
151.04,
160,
160,
160,
160.27,
160,
319.24,
159.62,
159.87,
160,
149,
149,
160,
159,
159,
159.07,
159.07,
159.07,
160,
161,
161,
161,
161,
161,
161,
160,
160.66,
160.66,
160.66
],
"xaxis": "x",
"y": [
5000,
10000,
11250,
7100,
7100,
9250,
9250,
7100,
7100,
9250,
9250,
7100,
7100,
12500,
7500,
3450,
5450,
6250,
7100,
7100,
12500,
7500,
3450,
5450,
6250,
12500,
7500,
12500,
7500,
9250,
9250,
9250,
9250,
6429,
0,
8750,
0,
40000,
53500,
40500,
32799,
32799,
32799,
18000,
18000,
40000,
55000,
39000,
126923,
12000,
6000,
49200,
36900,
125000,
40000,
50000,
74000,
26000,
47200,
47200,
47200,
63334,
50000,
110000,
65000,
65000,
180000,
180000,
20000,
42500,
10000,
40000,
100000,
30000,
1384231,
210854,
29500,
29500,
76445,
66667,
75000,
0,
30000,
25000,
39000,
39000,
155000,
124508,
190000,
12000,
18000,
18000,
25000,
115400,
115400,
249000,
249000,
30000,
30000,
50000,
50000,
55000,
215020,
107510,
130000,
40000,
15000,
38000,
35000,
39000,
39000,
155000,
124391,
190000,
46000,
30000,
30000,
30000,
30000,
30000,
30000,
15000,
100000,
100000,
105000
],
"yaxis": "y"
}
],
"name": "1996"
},
{
"data": [
{
"hovertemplate": "RM=213 - Saltcoats<br>animation_frame=1997<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "213 - Saltcoats",
"marker": {
"color": "#636efa",
"symbol": "circle"
},
"mode": "markers",
"name": "213 - Saltcoats",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
160,
159.93,
159.28,
157.1,
157.1,
160,
148.61,
148.61,
147.86,
162.94,
162.94,
144.23,
160,
161,
160.55,
160.55,
160,
159.92,
160.1,
160,
160,
160,
160,
161,
160,
160,
160,
160,
159.7,
159.7,
159.7,
160,
161,
161,
160,
160,
160,
160,
160,
158,
160,
159.34,
159.34,
160,
160.31,
160,
161,
160,
161,
161,
160.74,
159.88,
160,
153,
152.99,
159,
159,
159,
160,
160,
160,
159.63,
159.63,
160,
160.19,
161,
160,
160,
160,
160,
161,
160.93,
160.93,
160.72,
160.72,
159.78,
161,
160,
160,
160,
159.75,
159.75,
160.64,
161.09,
160.75,
160,
160,
161,
160.67,
159.86,
159.86,
160,
160,
163.32,
139,
74,
74,
73.37,
73.37,
157,
160,
159.97,
160,
160,
160.83,
160.83,
160,
161,
161,
140.83,
140.83,
141.11,
160,
161,
161,
161,
161,
161,
161,
160.82,
160,
158,
158,
158.4,
158.4,
161,
140.96,
141.4,
160.33,
160,
161,
160,
131.4,
132,
132,
132,
77
],
"xaxis": "x",
"y": [
37170,
194800,
25000,
80000,
80000,
28500,
116700,
114229,
187500,
244597,
150000,
0,
28000,
55000,
118000,
175750,
42667,
167858,
100000,
33000,
34000,
43000,
16667,
25000,
36000,
36736,
36736,
40000,
127400,
127409,
187500,
48860,
180000,
180000,
32000,
45000,
55000,
35000,
42770,
42770,
25000,
206190,
235472,
30000,
235000,
25000,
25000,
90000,
50080,
50080,
98000,
1,
80000,
30100,
159980,
48000,
70850,
71072,
30000,
55250,
30000,
206565,
235901,
45808,
187500,
77580,
26000,
27000,
59700,
25000,
37500,
82000,
76080,
45000,
45000,
31600,
35000,
42000,
61490,
61682,
206721,
236079,
205170,
151250,
200000,
56000,
56000,
225000,
154000,
206863,
236241,
30400,
2200,
102000,
40000,
15000,
16800,
62500,
85000,
24000,
30909,
167000,
26250,
35000,
64100,
64100,
30000,
30000,
59700,
15384,
0,
100000,
20000,
35000,
40740,
40740,
40740,
40740,
79245,
160000,
45000,
36000,
70000,
204973,
236795,
100000,
180000,
134500,
60000,
40000,
67300,
39700,
24000,
0,
35000,
55000,
0
],
"yaxis": "y"
},
{
"hovertemplate": "RM=488 - Torch River<br>animation_frame=1997<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "488 - Torch River",
"marker": {
"color": "#EF553B",
"symbol": "circle"
},
"mode": "markers",
"name": "488 - Torch River",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
161,
161,
160,
160,
160,
160,
160.85,
160,
160,
160,
80,
80,
80,
53.33,
26.67,
160,
160,
160,
160.5,
156,
155.66,
155.66,
161,
160,
160,
160,
159,
79.5,
160,
159.51,
160,
160,
159,
159,
160,
160,
159,
159,
160,
160,
161,
160,
161.14,
150,
149.73,
2.61,
147.13,
160,
160,
160,
158.97,
158.69,
160,
160,
160,
159.93,
160,
159.7,
158,
158,
159.61,
159.61,
320.2,
160,
160,
160.2,
160.08,
160.08,
161,
161,
160.86,
53.62,
160,
160,
160.16,
160,
78.74,
142.33,
142.33,
6.19,
160,
159.85,
159.85,
159.75,
159,
158.76,
158.76,
159.15,
160,
159.15,
158,
159.82,
159.4,
159.4,
160,
159.77,
159.77,
160,
159,
159,
159,
159.15,
159,
159,
159,
159.16,
157,
157,
160.66,
24.47,
24.47,
24.47,
160,
155.8,
155,
138,
294.4,
155.28,
154.09,
154.09,
153,
153,
152.98,
305.96,
159.69,
159.69,
160,
146,
146.13,
146.13,
158.72,
158.8,
158.8,
159,
159.47,
160,
158.81,
159.57,
159.57,
161,
158,
158,
152,
159.97,
160,
159,
144.78,
154,
154,
155.68,
77.9,
154,
77.08,
74.07,
74.07,
155,
160,
159.88,
159.88,
158.97,
159,
159.62,
159.62,
160,
160,
160.17,
160.17,
158.97,
158.97,
318.72,
161,
161,
161.24,
161.24,
161.24,
160,
79,
79,
78.91,
158.1,
141.02,
9,
154,
153.22,
155,
154.53,
160,
160.7,
155.81,
158.97,
158.97,
158.97,
160,
160,
159.97,
318.94,
159.47,
160.03,
160.03,
160.01,
160,
160.07,
154,
154,
152.66,
154.1,
154,
154.4,
113.79,
113.79,
113.79,
154.06,
159,
159.01,
159.01,
158,
158,
159.21,
154,
153.85,
153.85,
158.69,
159
],
"xaxis": "x",
"y": [
70000,
77500,
60000,
9000,
50000,
0,
70000,
8000,
90000,
90000,
25000,
25000,
45000,
8000,
8000,
27000,
33000,
33000,
59100,
45000,
120800,
213500,
50000,
0,
30000,
0,
42700,
23500,
25930,
100000,
46000,
46000,
100000,
100000,
113000,
78577,
48600,
158100,
50000,
60000,
55000,
75000,
150000,
90000,
127500,
100,
0,
7225,
25000,
25000,
138000,
94850,
24000,
22500,
25000,
125000,
40000,
1,
53700,
125000,
49653,
83540,
198740,
67000,
67000,
238192,
112400,
112400,
35000,
35000,
117000,
39000,
5000,
69000,
60000,
10000,
106500,
40000,
40000,
3300,
60000,
152000,
220000,
87000,
83333,
168155,
230200,
15000,
15000,
28800,
46900,
75000,
8000,
8000,
25000,
49653,
48875,
100000,
79335,
78000,
78000,
238191,
64000,
68000,
68000,
95000,
46000,
46000,
55000,
24464,
24464,
24464,
70000,
40000,
68250,
0,
400000,
0,
70000,
70000,
35000,
20000,
65000,
130000,
92200,
92200,
0,
36000,
103000,
220000,
70000,
95000,
255000,
12100,
136960,
31000,
134300,
49653,
89140,
51225,
40907,
55000,
0,
57000,
19000,
60500,
7000,
53000,
82500,
0,
12500,
45000,
45000,
0,
0,
100000,
38400,
90000,
91000,
30000,
40000,
49653,
77727,
56566,
74000,
74000,
224000,
28650,
0,
212000,
0,
12500,
30000,
90000,
90000,
0,
39800,
39800,
71128,
74745,
40000,
4450,
56900,
50000,
99120,
80000,
50000,
127000,
85000,
0,
30000,
0,
19000,
55000,
15000,
60000,
58330,
85000,
143300,
335000,
20000,
47040,
19700,
19700,
80000,
65000,
65000,
332000,
0,
168155,
225000,
27500,
55000,
55000,
137500,
0,
20200,
12000,
87000,
168155,
246500,
65400,
42500
],
"yaxis": "y"
},
{
"hovertemplate": "RM=336 - Sasman<br>animation_frame=1997<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "336 - Sasman",
"marker": {
"color": "#00cc96",
"symbol": "circle"
},
"mode": "markers",
"name": "336 - Sasman",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
158.97,
158.53,
160,
160,
158,
157.51,
158.78,
158.74,
161,
161.27,
161.27,
161,
160.51,
160,
160,
160.06,
160,
160,
159.28,
159.28,
159.28,
150,
37.5,
159.7,
159.7,
159.7,
160,
161,
80.33,
80.33,
80.33,
80.33,
80.5,
80.5,
40,
160,
160,
160,
160.15,
160,
157,
159,
159.7,
158.47,
160,
160,
160,
160,
160,
159,
160,
160,
160.33,
160.33,
160.33,
160,
158.88,
106.41,
160,
150,
160,
159,
159.3,
80.15,
80,
158.15,
157.91,
159.82,
159,
159,
158.91,
158.91,
158.91,
159.23,
157,
157,
157,
156.69,
146.7,
159,
159,
159,
159.2,
159.2,
158.89,
141.88,
160,
163,
160,
160.48,
160.48,
160,
160,
160,
160,
160.09,
156,
78,
77.5,
79,
158.97,
158.97,
0,
0,
138,
160,
158,
148,
147.58,
323.82,
160,
156.26,
156.26,
160,
159.51,
159,
159,
158,
78.82,
78.82,
157.63,
158.96,
157,
157.22,
157.22,
157.22,
0,
139,
0,
139.16,
160,
126.79,
154.35,
160,
160,
159.99,
159.99,
160,
160,
156,
156,
156.45,
126.44,
158.86,
158.86,
159,
151,
75.58,
75.5
],
"xaxis": "x",
"y": [
50000,
174400,
40000,
40000,
51000,
150000,
52200,
71314,
80000,
224000,
224000,
52600,
150000,
75000,
59900,
89400,
33000,
33000,
94400,
94400,
110887,
52000,
13000,
90000,
90000,
55000,
34000,
38000,
14250,
28500,
62500,
62500,
40000,
19000,
8000,
0,
59963,
70850,
234080,
30000,
48200,
45400,
46900,
0,
30000,
51000,
51000,
51000,
68150,
72000,
60000,
40000,
160000,
352000,
352000,
50000,
160513,
0,
65000,
0,
49000,
67475,
41200,
49900,
24950,
42000,
100000,
80000,
0,
350000,
900000,
786912,
786912,
38480,
45000,
45000,
62300,
62300,
145500,
35000,
54500,
54500,
200000,
15680,
200000,
90000,
26000,
26000,
55100,
55100,
55100,
5500,
45000,
45000,
50000,
130000,
54144,
27072,
0,
29250,
45000,
0,
1,
1,
65000,
65000,
80000,
0,
80000,
700000,
75075,
45000,
45000,
34700,
166000,
25000,
25000,
0,
66000,
66000,
132000,
60000,
40000,
155000,
341000,
341000,
0,
0,
500,
21000,
110000,
240000,
42500,
90000,
93840,
45000,
45000,
40000,
115944,
0,
150000,
90000,
0,
50000,
50000,
65000,
0,
86750,
30000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=215 - Stanley<br>animation_frame=1997<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "215 - Stanley",
"marker": {
"color": "#ab63fa",
"symbol": "circle"
},
"mode": "markers",
"name": "215 - Stanley",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
141.19,
160,
160,
160,
161,
69,
160,
161,
160,
160,
159.46,
159.46,
159.41,
146.14,
146.14,
156,
156,
160,
160,
158,
160.53,
160,
160,
160,
160,
161,
161.17,
161.17,
160,
160,
160,
155,
160,
160,
160,
160,
159.42,
159.42,
159.42,
160,
161,
160,
160,
160,
160,
153.79,
160,
159.88,
160,
126,
126,
160,
161,
161,
160,
160,
159.07,
162,
159,
159,
138.44,
138.44,
160,
160,
161,
161,
160.83,
160,
159,
158,
158,
158.21,
158.21,
158.21,
138,
160,
160,
153.98,
153.98,
155,
155,
154.84,
160,
161,
161.09,
161,
161,
159.01,
160,
160,
159,
160,
160,
39,
85,
159.48,
159.48,
159.67,
160,
160,
160,
159.78,
157.82,
160.02,
159,
159,
159,
92.5,
160,
161,
151,
151,
50.33,
160.66,
160,
160,
159.63,
159.63,
159.63
],
"xaxis": "x",
"y": [
205000,
35000,
40000,
62500,
26000,
0,
41395,
41395,
45313,
33000,
115720,
170000,
42295,
50000,
87600,
35000,
35000,
35000,
72500,
72500,
62000,
29000,
5525,
45500,
30000,
76600,
93225,
150000,
25900,
58100,
58100,
84500,
25000,
43200,
43200,
25000,
150000,
150000,
160000,
40000,
85000,
48180,
50000,
71430,
84900,
25550,
30500,
21360,
40000,
34500,
40000,
38100,
32000,
32000,
33333,
30000,
175000,
60000,
43500,
43500,
72000,
108000,
35000,
30000,
40000,
40000,
61000,
60000,
20000,
24242,
40000,
44145,
64170,
155740,
15700,
44015,
0,
93500,
72910,
48484,
50000,
80000,
35000,
30000,
65000,
32000,
39500,
100000,
30500,
35000,
28500,
80000,
35000,
35000,
35000,
94000,
124000,
73200,
35000,
40000,
70000,
85000,
66000,
56200,
25125,
0,
25125,
50000,
40000,
50000,
30000,
30000,
11000,
130000,
48200,
48200,
80000,
80000,
150000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=247 - Kellross<br>animation_frame=1997<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "247 - Kellross",
"marker": {
"color": "#FFA15A",
"symbol": "circle"
},
"mode": "markers",
"name": "247 - Kellross",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
159.19,
159.19,
160,
160,
159,
159,
53,
53,
53,
160,
157,
157,
53.09,
159.27,
160,
150.82,
150.82,
150.82,
158.46,
158.38,
159.86,
159.86,
159.86,
158.36,
159,
160,
160,
319.4,
159.7,
159.7,
160,
159,
159,
159.33,
158.11,
158,
157.91,
159.99,
159.99,
160.77,
160.77,
160.77,
160,
160,
160,
160,
159.96,
159.96,
158.06,
157,
313.94,
0,
0,
159.42,
160,
160,
160,
158.45,
161,
161,
80,
160,
160,
160,
160.01,
160,
157.59,
157.59,
157.59,
157.4,
160,
159,
159,
159,
157.64,
157.64,
155.75,
158.45,
158.45,
158.45,
158.45,
149.98,
149.98,
148.57,
148,
29,
45,
160,
160,
155,
155,
160,
160.31,
159,
159,
157.97,
160,
159,
159,
158.62,
158.62,
158.62,
158.45,
160,
155.92,
160,
160,
156.19,
156.19,
158.69,
158.69,
160,
160,
160,
160.08,
160.08,
160.08,
162,
149.4,
150,
144.75,
144.75,
144.75,
148.63,
147.49,
148,
160,
160,
159.34,
160,
160,
160,
158.4,
158.4,
160,
157,
157.31,
148.44,
148.44,
148.44,
157.15,
156.21,
157.24,
148,
147.73,
160,
154.4,
154.4,
155.02,
158.06
],
"xaxis": "x",
"y": [
140000,
140000,
32500,
0,
30000,
30000,
18333,
18333,
18333,
25000,
40909,
45000,
44500,
133500,
18000,
10870,
12727,
12727,
28920,
134400,
12000,
26000,
17000,
105000,
25000,
56000,
56000,
150000,
120000,
114334,
30500,
28000,
28000,
165000,
30000,
47400,
48000,
111000,
111000,
98538,
109422,
109422,
34700,
34700,
30000,
60000,
100000,
100000,
30000,
51800,
94000,
0,
0,
116000,
15000,
15000,
20000,
45000,
35778,
35778,
17500,
32000,
25000,
25000,
100000,
32000,
113705,
113705,
105000,
115000,
46000,
46000,
46000,
95000,
0,
140000,
56875,
36000,
37250,
37250,
0,
110000,
221000,
60350,
26795,
10000,
250,
27500,
32500,
0,
70000,
40000,
140000,
40000,
40000,
27090,
43000,
42200,
42200,
8500,
69230,
0,
130000,
15000,
100500,
36000,
32000,
140000,
220000,
78000,
78000,
40000,
40000,
30000,
119000,
119000,
137500,
43000,
50000,
54780,
65220,
69317,
69317,
36150,
0,
34470,
35000,
35000,
120000,
0,
25000,
25000,
1000,
99900,
25000,
25000,
30000,
65220,
69317,
69317,
38000,
110000,
29520,
50900,
50900,
30310,
31000,
30000,
50000,
33000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=070 - Key West<br>animation_frame=1997<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "070 - Key West",
"marker": {
"color": "#19d3f3",
"symbol": "circle"
},
"mode": "markers",
"name": "070 - Key West",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
160,
160.36,
160,
159.85,
159.85,
160,
160,
160,
160.51,
159.86,
159.86,
160.09,
159,
159,
159.3,
161,
161,
159.98,
159.98,
160,
159.87,
158.76,
160,
160,
160,
160,
159.66,
158,
158,
158,
4,
154,
157.73,
155.73,
156,
159.97,
159,
159.33,
159.13,
160,
158.98,
157.14,
158.84,
158,
158,
158,
158.2,
160,
157,
157,
157,
157,
157,
156.54,
19,
132.31,
158.48,
158.48,
159.05,
159.05,
159,
159,
160.29,
158.52,
158.52,
158.52,
141.52,
158.25,
157,
314.76,
52.46,
158.98,
159,
159,
159.97,
155.63,
93,
100.97,
160,
160,
160,
158.75,
158.75,
160.59,
10,
36,
122,
0,
0,
140.54,
140.54,
160.43,
160.43,
158.09,
158.09,
160.09,
160,
160,
160,
159,
157.8,
157.88,
157.88,
149.83,
158,
159.13,
159.15,
159.15,
158.33,
155.59,
155,
158.06,
158.06,
156.53
],
"xaxis": "x",
"y": [
35000,
55950,
26000,
90000,
96270,
42666,
40000,
1500,
51195,
132700,
72700,
15000,
15000,
15000,
114686,
32050,
19250,
59900,
59900,
50000,
25000,
65500,
25000,
23400,
78125,
78125,
121250,
33000,
33000,
54000,
1250,
55000,
56250,
0,
57500,
32000,
54000,
30000,
186687,
52000,
20833,
135000,
44775,
30000,
78125,
78125,
121250,
41250,
23000,
23000,
35200,
44000,
51000,
90000,
40000,
40000,
89000,
75000,
33000,
33000,
22000,
52172,
52100,
83200,
82200,
83200,
36000,
9250,
27000,
93080,
15513,
0,
40000,
40000,
52000,
36430,
18900,
25000,
25300,
25300,
33000,
75100,
75100,
105000,
0,
0,
0,
0,
0,
12500,
200000,
76000,
75000,
55000,
179000,
52000,
24000,
20000,
35000,
30000,
25925,
147400,
147400,
60613,
45000,
55000,
53000,
224000,
51500,
13840,
30000,
79151,
134100,
134000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=184 - Grayson<br>animation_frame=1997<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "184 - Grayson",
"marker": {
"color": "#FF6692",
"symbol": "circle"
},
"mode": "markers",
"name": "184 - Grayson",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
161,
116,
160.29,
153.88,
154,
154,
154.07,
154.07,
154.07,
160,
160,
160,
160,
164,
160,
160,
160,
160,
160,
160,
160,
161,
160,
140,
161,
160.5,
160.5,
160.5,
160.19,
160,
158,
160,
161,
161,
160,
160,
160.39,
169,
169,
160,
160,
159.86,
158.86,
162,
162,
162,
159.45,
160,
160,
160,
160,
160,
159,
159,
159.39,
163,
163,
163,
158.89,
158.89,
160,
159,
159.45,
158,
158,
160,
160.23,
159,
159.71,
159.57,
160,
156.5,
155.5,
161,
161,
160,
160,
140.65,
160,
160,
160,
161,
158,
158,
158.33,
155.39,
160,
145,
145.2,
159
],
"xaxis": "x",
"y": [
45100,
3,
0,
15000,
47500,
15000,
100000,
112000,
113000,
44475,
44475,
25000,
35000,
58500,
34337,
35878,
35878,
35000,
40000,
38140,
38140,
32850,
36320,
228000,
25500,
95100,
125000,
85000,
90450,
20000,
46320,
38140,
34950,
34950,
40000,
77051,
89841,
17500,
23500,
28000,
25000,
35000,
25000,
58250,
41400,
41750,
138000,
40000,
27000,
28000,
32250,
32250,
50000,
77051,
89841,
34132,
38425,
38425,
139000,
134500,
45500,
66600,
73400,
42000,
41000,
29000,
182500,
42000,
160000,
350000,
25400,
33500,
33500,
43884,
43884,
37500,
70000,
40000,
33230,
33230,
32000,
62000,
73400,
80000,
130000,
30000,
33000,
34000,
78000,
46320
],
"yaxis": "y"
},
{
"hovertemplate": "RM=276 - Foam Lake<br>animation_frame=1997<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "276 - Foam Lake",
"marker": {
"color": "#B6E880",
"symbol": "circle"
},
"mode": "markers",
"name": "276 - Foam Lake",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
161,
161,
160.52,
160.52,
160,
159,
159.4,
159.4,
159.4,
155.98,
160,
160,
157,
157.17,
157.17,
159.34,
160,
159.69,
160,
160,
159,
160,
160,
160,
160,
160,
160,
159,
162,
0,
159,
159.46,
79.58,
160,
160,
160,
160,
157,
159,
159,
159,
159.19,
159.19,
158.76,
155.38,
159.03,
159.03,
79.72,
159.43,
159.43,
159.43,
159,
160,
132.08,
160,
160,
53.49,
160,
160,
158,
158,
148.47,
136.92,
136.92,
108,
108,
11,
11,
108,
11,
19.31,
159,
159,
158.19,
159.5,
159.69,
161,
161,
160,
160,
160,
160,
159.7,
159,
159.25,
160,
160.12,
160,
159,
159,
159,
160,
160,
160,
159,
157,
1,
160,
159,
159.43,
159.72,
159,
159.37,
158.78,
158,
158.48,
159.39,
159.39,
159.49,
152,
151.71,
159,
159,
160,
160,
160,
159,
160,
156,
160,
159.91,
161,
160,
160.35,
160,
160,
159,
160,
160,
160,
159.53,
158.62,
158.62,
159,
160,
160,
160,
156.87,
156.87,
160,
159.16,
160,
160,
159.83,
160,
160,
159,
160,
159,
159.25,
159.09,
159,
159,
158.99,
158.99,
160,
159,
155.78,
155.05,
144,
144.24,
152.17
],
"xaxis": "x",
"y": [
28760,
28760,
108000,
160000,
30000,
75000,
65600,
65600,
100000,
35000,
36000,
35700,
75000,
109905,
200000,
50000,
40000,
416500,
45440,
45100,
35000,
15000,
25000,
37700,
85920,
85920,
100750,
30000,
34000,
34000,
31300,
31450,
46000,
46000,
27000,
27000,
38000,
38000,
23815,
23815,
40000,
49700,
49700,
26667,
115000,
18500,
18500,
21950,
60000,
60000,
60000,
56200,
17300,
60000,
22330,
22300,
54900,
32000,
33500,
50000,
125000,
0,
22500,
22500,
29000,
29000,
3000,
3000,
44700,
4400,
525,
46000,
46000,
53700,
37000,
47750,
60000,
0,
37500,
35000,
45000,
8000,
15000,
40000,
160100,
60430,
163000,
32000,
115000,
60000,
27000,
10000,
30000,
41324,
75000,
0,
0,
40000,
65000,
150000,
64900,
99400,
99400,
141500,
58943,
168000,
90000,
90000,
110000,
47101,
136900,
46000,
46000,
42000,
48000,
0,
55000,
47000,
49500,
10000,
40000,
41520,
52203,
131000,
17460,
15250,
25903,
30000,
30000,
40000,
130000,
159000,
159000,
75000,
32426,
47250,
24000,
97000,
105300,
25000,
100000,
45900,
45900,
135000,
15000,
50000,
83200,
35000,
94082,
158000,
265725,
50000,
95000,
158000,
262092,
38577,
44000,
34746,
38555,
70200,
201000,
20000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=305 - Invermay<br>animation_frame=1997<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "305 - Invermay",
"marker": {
"color": "#FF97FF",
"symbol": "circle"
},
"mode": "markers",
"name": "305 - Invermay",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
160,
159,
159.19,
158.33,
158,
121,
121,
121,
120.77,
120.77,
160,
160,
160.41,
53.28,
53.28,
53.28,
53.28,
158.86,
158.07,
157.74,
160,
160,
160,
160,
160.39,
80.02,
80.02,
158,
157.99,
157.99,
157.71,
158,
160,
160,
160,
143.08,
143.08,
0,
103,
102.97,
160,
160.25,
158.82,
103,
158.8,
158.8,
160,
142.93,
83.89,
58.57,
160,
160,
160,
158.17,
159,
158.53,
159,
156.18,
158.85,
158.77,
154.04,
0,
138,
137,
137,
1
],
"xaxis": "x",
"y": [
37000,
75000,
75000,
97900,
38500,
35000,
35000,
35000,
90000,
75000,
40000,
16000,
40000,
30000,
30000,
35000,
35000,
22000,
31000,
160000,
23000,
15000,
21500,
21500,
59515,
108500,
108500,
47300,
57000,
54900,
45000,
108000,
40000,
48000,
48000,
19300,
19300,
15000,
33000,
78210,
41000,
186000,
40000,
35000,
99870,
35000,
270000,
25000,
49500,
58000,
15000,
54000,
25000,
130000,
13000,
50000,
57000,
33660,
35000,
250000,
23000,
2,
5800,
38000,
47000,
3000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=100 - Elmsthorpe<br>animation_frame=1997<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "100 - Elmsthorpe",
"marker": {
"color": "#FECB52",
"symbol": "circle"
},
"mode": "markers",
"name": "100 - Elmsthorpe",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
160,
157.79,
157.79,
158,
157.64,
159.99,
160,
160,
160,
160.59,
160,
159,
160,
157.26,
157.26,
160,
160,
159.42,
159.42,
160,
160,
160,
160,
160,
159,
160,
160,
160,
159.23,
159,
159,
159.49,
158.56,
160,
157.82,
159.52,
159.52,
159.52,
160,
157,
160,
160.22,
160.22,
161,
115.05,
159.02,
160,
159.53,
160.18,
160,
161.85,
160,
160,
152,
152.08,
152.08,
156.79,
156.79,
160,
160.84,
160,
158.93,
159,
159,
159,
159,
153.95,
153.95,
153.95,
159.45,
159.45,
159.45,
157.68,
157.68,
157.68,
43.42,
43.42,
43.42,
43.42,
43.42,
43.33,
160,
162,
160,
160,
7,
152,
152.65,
152.65,
13.94,
6.97,
6.97,
152.65,
159.62,
160,
161,
160.69,
160.69,
159,
159.38,
80,
79.88,
79.88,
158,
158,
3,
160.73,
160.73,
160,
160,
160.42,
159.27,
160,
158.85,
158.92,
158.92,
158.53,
160,
159,
159,
157.84,
157.84,
157.84,
153.74,
161,
161,
160.55,
160.55,
163,
150,
0,
150,
149.97,
160.62,
160.62
],
"xaxis": "x",
"y": [
47379,
42800,
47000,
70632,
155600,
30000,
90000,
52000,
52000,
134400,
29365,
50000,
47379,
60000,
60000,
30000,
15000,
64300,
103820,
28000,
65640,
65640,
65640,
65640,
28000,
33000,
39490,
30000,
40320,
59000,
58850,
120248,
60500,
55000,
30000,
39064,
25350,
23350,
48398,
42000,
25850,
46300,
38180,
23250,
59887,
36720,
55000,
55000,
60500,
55000,
30000,
13021,
18682,
16000,
50000,
82700,
100000,
108939,
14675,
42705,
38000,
25550,
100000,
100000,
30000,
30000,
66700,
66700,
66700,
22500,
0,
21000,
50000,
56700,
151567,
53336,
53336,
53336,
53336,
53336,
53336,
28000,
42000,
0,
44000,
1000,
0,
115800,
115800,
4944,
2472,
1000,
182500,
183500,
50000,
75000,
93600,
160000,
15000,
40000,
17000,
22000,
96362,
20400,
40000,
500,
105872,
105872,
8000,
0,
30000,
81000,
35000,
148995,
50000,
50000,
113000,
20000,
37700,
45000,
74284,
75000,
54000,
30935,
15000,
40000,
105216,
105216,
46000,
36800,
9200,
40000,
197000,
1,
62292
],
"yaxis": "y"
},
{
"hovertemplate": "RM=275 - Insinger<br>animation_frame=1997<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "275 - Insinger",
"marker": {
"color": "#636efa",
"symbol": "circle"
},
"mode": "markers",
"name": "275 - Insinger",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
160,
159,
158.56,
159,
159.44,
159.49,
159.49,
160,
159,
160,
159.78,
160,
155.29,
160,
159.89,
159.28,
158,
159.48,
159.51,
160,
160,
160,
160,
160,
160,
159,
159.47,
159.47,
159.47,
156,
156,
160,
160,
160,
160,
160,
160,
159,
159.21,
317.92,
160,
160,
158,
158,
159.77,
160,
160,
158.16,
158,
158,
160,
159.62,
159.62,
160,
160,
160,
160,
159,
160,
159.18,
159.18,
160,
159.58,
160,
157.56,
158.14,
158,
155,
144,
145.03,
160,
159,
159,
159,
159,
159.04,
159.04,
317.22,
132.48,
132,
27,
132,
158.15,
158.15
],
"xaxis": "x",
"y": [
70000,
42720,
85000,
20000,
61380,
27000,
27000,
25000,
21000,
30000,
245000,
30000,
200000,
58000,
99000,
23000,
63100,
150000,
76479,
30000,
50000,
50000,
82830,
24600,
24600,
22000,
120000,
133000,
133000,
38220,
38220,
30000,
23870,
26000,
26000,
32750,
24000,
71806,
96600,
100000,
17000,
17000,
0,
23000,
140765,
35000,
0,
37500,
74760,
74760,
35000,
85000,
250000,
25000,
30000,
22000,
22000,
0,
36900,
80000,
265000,
60000,
50000,
20000,
106250,
20000,
0,
250000,
0,
20000,
15000,
37000,
37000,
85000,
85000,
95000,
75000,
79000,
9000,
0,
0,
42750,
68000,
85000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=250 - Last Mountain Valley<br>animation_frame=1997<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "250 - Last Mountain Valley",
"marker": {
"color": "#EF553B",
"symbol": "circle"
},
"mode": "markers",
"name": "250 - Last Mountain Valley",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
159,
160,
158,
158,
160,
159,
159,
160,
160,
160.46,
160,
158.49,
158.49,
158.49,
159.9,
159.9,
160,
160,
160,
159.86,
160.16,
160.16,
159.63,
159,
161,
160.61,
159,
159,
160,
160,
160,
160,
160,
159,
159.47,
159.47,
160,
160,
159.84,
160,
160,
160,
160,
159.7,
161,
158,
158,
158,
158,
158,
79,
160,
160,
159,
160,
159.03,
160,
160,
80.09,
160.27,
161,
161,
161,
160,
160.23,
160,
159,
159,
162,
319.58,
160,
160,
159,
159,
160,
160,
161,
160.82,
160,
160,
158.81,
160,
159,
159.36,
160,
160,
159,
158.78,
158.78,
160,
161,
160,
160,
160,
160,
161,
161,
160,
160.26,
160.26,
160.26,
160,
159.32,
159.32,
160,
158.6,
317.2,
161,
160.58,
160.58,
160,
158,
158,
158,
157.67,
78.84,
78.84,
160,
159.92,
159,
160,
159,
160,
151,
151,
150.45,
150.45,
158,
160,
59.85,
160
],
"xaxis": "x",
"y": [
16000,
20000,
28000,
28000,
28687,
60000,
60000,
0,
33000,
150217,
40000,
136000,
150000,
150000,
159500,
192222,
45000,
45000,
70000,
70000,
161300,
160000,
20000,
20000,
40000,
40000,
31000,
38000,
30000,
18000,
39000,
55000,
30000,
23000,
117200,
105150,
37500,
30000,
50000,
36250,
12500,
46000,
48500,
56000,
67000,
76000,
72000,
115000,
185000,
192500,
36000,
25000,
30000,
20000,
31000,
200000,
49300,
68600,
34300,
130000,
15000,
13000,
23000,
30000,
155000,
36250,
12500,
38000,
40000,
80000,
40000,
50000,
10000,
30000,
25500,
40000,
50000,
208201,
34120,
34120,
50000,
21000,
21000,
45000,
35000,
35000,
22500,
42500,
60000,
40000,
54000,
8000,
7000,
23000,
8000,
106000,
96000,
24000,
110000,
110000,
110000,
20500,
50000,
50000,
25000,
20000,
40000,
26500,
42500,
60000,
38565,
38565,
38565,
40000,
92000,
92000,
130000,
40000,
45000,
43750,
14000,
50000,
27500,
40000,
40000,
40000,
40000,
40000,
35000,
152062,
25000
],
"yaxis": "y"
}
],
"name": "1997"
},
{
"data": [
{
"hovertemplate": "RM=213 - Saltcoats<br>animation_frame=1998<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "213 - Saltcoats",
"marker": {
"color": "#636efa",
"symbol": "circle"
},
"mode": "markers",
"name": "213 - Saltcoats",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
160,
162,
161.72,
160,
160,
160,
161,
161,
161,
160,
160.07,
160,
161,
160.12,
129,
129,
160,
160,
162,
162.43,
81.22,
160,
160,
161,
161,
160.26,
159,
159,
160,
160.01,
160.01,
160,
159.27,
159.27,
160.09,
160,
160.18,
160.55,
161,
160.96,
161,
160,
161,
160.51,
160.12,
160,
160.13,
160.13,
160.4,
160,
160.37,
160.37,
160,
159.9,
160,
162,
162.42,
161,
160.25,
160.25,
160.25,
160,
160,
159.78,
160,
160,
160.76,
160,
160,
160,
140.47,
140.47,
150,
149.24,
149.24,
161.42,
160,
160,
160,
158.55,
160,
160,
150.1,
150.1,
160,
160,
160,
160,
160.04,
160.04,
161
],
"xaxis": "x",
"y": [
41950,
76275,
160000,
33000,
55000,
32000,
50440,
76050,
76288,
40000,
83000,
40750,
31460,
170000,
20000,
20000,
15000,
40000,
39000,
120000,
127750,
35000,
50000,
32000,
19900,
27450,
73400,
73400,
69900,
168300,
168000,
80000,
250000,
250000,
120000,
50000,
180000,
134500,
60000,
134550,
44090,
30500,
38800,
214000,
171418,
29167,
112500,
131803,
187500,
36500,
71800,
71800,
30000,
166000,
14702,
44550,
138000,
28500,
112000,
128000,
134500,
15000,
31000,
171418,
59998,
36615,
172000,
22000,
0,
250000,
192000,
192000,
19400,
160000,
55500,
200000,
39440,
66040,
66247,
94500,
20000,
22000,
0,
161800,
5915,
35000,
36000,
30000,
190800,
159900,
65200
],
"yaxis": "y"
},
{
"hovertemplate": "RM=488 - Torch River<br>animation_frame=1998<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "488 - Torch River",
"marker": {
"color": "#EF553B",
"symbol": "circle"
},
"mode": "markers",
"name": "488 - Torch River",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
159.97,
159.97,
159,
158.69,
160,
159,
159,
158.85,
160.49,
160.49,
160,
154,
148,
156.09,
156,
156.04,
140.85,
140.85,
12.25,
12.25,
154.75,
154.75,
17.91,
48.67,
48.67,
158.97,
158.97,
159,
158.79,
158.79,
159,
158.54,
160,
160,
159,
159,
159.55,
159.55,
159.55,
159.7,
159.7,
0,
159.96,
160,
95.96,
155.13,
155.13,
158.66,
154.88,
154.89,
77.5,
154.77,
77.53,
155.06,
154.41,
154.41,
154.41,
142,
154.35,
150,
150,
150.08,
154.08,
154.08,
152,
152,
6.2,
158.97,
159,
158.78,
158.78,
157,
156.98,
78.49,
317.52,
158.76,
160,
157.82,
157.82,
159,
159,
159.56,
159.56,
159.56,
160,
157.37,
157.37,
157.37,
159,
157.04,
157.04,
157.47,
157.47,
161,
161,
160.6,
161,
161,
161,
158.53,
158.53,
158.97,
0,
160,
154.1,
154.1,
160,
160,
3.46,
141.19,
7,
7,
4,
150,
140,
159,
158.51,
160,
159.74,
159.74,
160,
78,
159,
159,
159,
157,
313.96,
159,
154.93,
154.93,
154.93,
154,
154.76,
64,
64,
64.17,
160,
160.29,
160.08,
160.08,
160.1,
160.41,
159.84,
159.72,
158.5,
158.5,
158.5,
158.5,
160,
159.94,
160,
142.65,
155,
155.08,
77.5,
159.73,
159.73,
159.73,
160,
159.7,
160,
160,
160,
160,
159,
158.53,
158,
158,
158.47,
160,
154,
154,
154,
154,
73,
135.18,
151.1,
153,
160,
158.02,
158,
157.79,
157.79,
159,
159.32,
159.32,
160,
159.02,
160,
159,
0.84,
158.7,
160,
160,
154.84,
160,
160,
160,
160,
159.69,
159.69,
147,
146.77,
146.77,
160,
158,
157.61,
159,
158.92,
158.74,
158.74,
158.74,
158.99,
160,
159.5,
319,
158,
78.38,
78.38,
161,
160,
160,
150,
160,
159.54,
158.92,
158.92,
1,
114.24,
161,
159,
160,
160,
160,
160,
160,
160,
161,
126,
23.61,
160,
160,
160,
159.97,
159.97,
159.97,
85,
85,
85,
83.04,
160,
160,
135,
160,
158.83,
158.83,
134.85,
134.85,
159,
158.69,
158.69,
79.53,
79.53,
79.5,
79.5,
79.5,
79.5,
160,
160,
160,
160,
159,
159,
160,
158.97,
158.97,
158.97,
156.5,
156.5,
160,
152,
135.87,
161,
161,
159,
159,
156.48,
156.48,
152,
160,
160,
160,
160,
159.55,
80
],
"xaxis": "x",
"y": [
27000,
23000,
32636,
175000,
120000,
52000,
50000,
150000,
47200,
47200,
90000,
65700,
40000,
30000,
40000,
60000,
0,
60000,
300,
285,
12000,
22250,
0,
19759,
40000,
35000,
53000,
69060,
168155,
315700,
35333,
43000,
15000,
15900,
35000,
33500,
84200,
84200,
128220,
0,
100000,
890,
57400,
65000,
50000,
64449,
64449,
230256,
80000,
80000,
40000,
47500,
44450,
88900,
35000,
0,
30000,
40000,
31500,
50000,
40700,
155000,
26145,
32000,
160000,
160000,
100,
25000,
58000,
150000,
220000,
60000,
92000,
41000,
249344,
125000,
33500,
92100,
134500,
19783,
22000,
88410,
88410,
132200,
47840,
120000,
150000,
175000,
45000,
0,
57000,
110000,
158500,
33000,
33000,
109820,
43000,
0,
64500,
111800,
111800,
36000,
890,
69060,
168155,
292400,
35000,
78000,
1400,
80000,
1166,
1400,
1000,
0,
50000,
38500,
416000,
72930,
168155,
277300,
29000,
20000,
40000,
40000,
45000,
25000,
280000,
55825,
60000,
0,
60000,
60000,
60000,
8500,
8500,
27170,
49300,
120880,
78400,
78400,
150000,
403000,
400000,
85720,
3000,
3000,
30000,
3000,
20000,
33500,
80000,
75000,
31400,
98000,
15700,
90912,
94700,
94700,
4000,
60000,
10000,
97500,
40000,
80000,
94775,
150000,
0,
50000,
150000,
210000,
0,
35000,
35000,
63440,
7000,
92500,
17000,
0,
60000,
1000,
1000,
70100,
85000,
68400,
168155,
320500,
5250,
92400,
30000,
5000,
100,
51500,
14000,
30000,
300000,
20960,
18500,
22000,
50000,
60000,
61500,
19250,
63300,
139000,
50000,
33040,
120000,
45000,
30000,
220000,
220000,
221000,
53000,
120000,
160000,
320000,
12000,
50000,
50000,
8000,
122000,
60000,
60000,
37500,
122000,
27000,
28000,
890,
90000,
0,
70000,
102500,
102500,
30000,
30000,
33000,
35000,
35000,
50000,
6300,
25000,
25000,
29500,
61250,
66666,
66668,
12400,
25000,
22500,
39700,
12500,
0,
44000,
20000,
103227,
103227,
95200,
95200,
55000,
191600,
264375,
41500,
41500,
21000,
30000,
40000,
40000,
4000,
40000,
0,
33000,
35000,
30000,
36000,
2000,
2000,
2000,
100,
2000,
26500,
43000,
0,
30000,
65000,
35000,
40000,
10000,
0,
50000,
32900,
41800,
16000,
27000,
144000,
13500
],
"yaxis": "y"
},
{
"hovertemplate": "RM=336 - Sasman<br>animation_frame=1998<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "336 - Sasman",
"marker": {
"color": "#00cc96",
"symbol": "circle"
},
"mode": "markers",
"name": "336 - Sasman",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
148.32,
148.32,
148,
159.85,
159,
159,
159.32,
159.48,
158.79,
159,
160.59,
160,
160,
160.34,
160.34,
160,
158.43,
159.72,
159.72,
159,
78.9,
79,
138.63,
138.63,
124.95,
160,
160,
160,
160,
159,
159,
19,
18.65,
159,
160,
160,
320.34,
160.17,
157.14,
157.14,
160,
159,
158.85,
158.85,
158.85,
158.85,
160,
159.76,
160,
159,
160,
158.77,
158.53,
158.53,
0,
160.71,
159.77,
160,
160,
160,
159.67,
159.67,
140,
140,
160,
159,
158.76,
158.76,
158.76,
159,
159,
160,
160,
53.13,
160,
160.63,
160,
161,
160,
159.15,
159.15,
143.4,
143.4,
160,
160,
160,
159,
159.18,
159.18,
159.18,
158,
157.24,
158.8,
158.77,
160,
160,
159.94,
159.94,
160.43,
160,
160,
160.11,
160,
160,
143,
143,
143,
0,
0,
0,
159,
157,
160.8,
160.8,
161,
160,
159,
158.6,
160,
160,
0,
0,
0,
0,
0,
0,
160,
160,
157.59,
157.59,
157.59,
79,
78.81,
160,
159,
160,
160,
160,
160,
189,
188,
188.08,
160,
153.98,
153.98,
160,
160,
160
],
"xaxis": "x",
"y": [
0,
0,
30000,
76400,
100000,
40000,
140000,
150000,
40000,
24000,
80000,
30333,
28000,
50000,
50000,
37000,
38000,
30000,
30000,
60000,
86750,
30262,
42000,
42000,
160000,
25000,
25000,
45000,
45000,
70000,
59000,
1500,
1500,
45000,
60400,
45000,
250000,
125000,
68000,
68000,
60000,
50000,
155000,
341000,
341000,
341000,
30000,
195600,
53240,
44000,
50000,
200000,
112400,
192000,
14900,
85000,
113000,
52000,
52000,
52000,
152800,
165900,
0,
49900,
60000,
40000,
158000,
347600,
347600,
53400,
53400,
49000,
20500,
27000,
45000,
250000,
60000,
25000,
41500,
45000,
45000,
100000,
400000,
55000,
66000,
50000,
40000,
140000,
308000,
308000,
27700,
0,
65000,
130000,
32800,
80000,
210000,
210000,
170000,
675,
52000,
153600,
65000,
30000,
25000,
47100,
47100,
200000,
9815,
9815,
62500,
60000,
26000,
26000,
52500,
45000,
57000,
57000,
32000,
27000,
60000,
60000,
160000,
160000,
320000,
473325,
72540,
72540,
75000,
75000,
179600,
31250,
40000,
47630,
45000,
32000,
45000,
57100,
62802,
49000,
0,
275000,
81500,
92500,
300000,
55900,
55900,
55900
],
"yaxis": "y"
},
{
"hovertemplate": "RM=215 - Stanley<br>animation_frame=1998<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "215 - Stanley",
"marker": {
"color": "#ab63fa",
"symbol": "circle"
},
"mode": "markers",
"name": "215 - Stanley",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
159,
159,
159,
160,
16,
15.99,
159,
159,
159,
159,
159.44,
160,
161,
160.33,
160,
161,
160.58,
159,
159,
159,
160,
159.76,
162,
160,
160,
160.32,
142.75,
160,
159.25,
159.25,
159.25,
160,
160,
160,
161,
159.05,
159.05,
159,
158.5,
158.5,
158.5,
158.5,
157.9,
158.82,
158.82,
159,
159.26,
159.33,
161.49,
158,
158,
158.18,
159,
159,
159,
160,
141,
141.32,
160,
160.75,
160,
160.39,
159.56,
159,
159,
158.91,
158.08,
161,
141.01,
141.01,
157.97,
157.97,
160,
161,
161,
161,
161,
160.91,
160.91,
160.91,
159.03,
159.11,
159.11,
159.11,
159.11,
159.03,
159.41,
159.66,
159.66,
160,
160,
159.73,
159,
158,
158,
158,
161,
160,
160,
157.1,
157.1,
159,
159,
159,
160,
160,
159.85,
159,
159.25,
159.25,
160,
160,
138.83,
160,
160
],
"xaxis": "x",
"y": [
25000,
54000,
66000,
30000,
19200,
36724,
30100,
40000,
50250,
50250,
265300,
60000,
21250,
40000,
80000,
125000,
350000,
27000,
27000,
25000,
45000,
65000,
39032,
41000,
45000,
130030,
40100,
46000,
160000,
160000,
150000,
21250,
40000,
41666,
65000,
24640,
24640,
35400,
70000,
304000,
441902,
139040,
38500,
72000,
124000,
46000,
72000,
41000,
176820,
50100,
50100,
55200,
20000,
28600,
22250,
65000,
0,
40000,
37000,
75000,
45000,
65000,
152000,
38000,
38000,
60000,
120000,
65000,
72000,
97500,
50000,
100000,
32250,
48485,
51000,
51000,
51000,
56285,
81817,
260650,
30000,
45000,
304000,
441902,
200460,
10000,
56500,
126100,
120000,
40000,
67500,
67500,
33000,
27500,
67200,
67200,
25000,
25000,
25000,
65000,
122000,
30000,
40000,
45000,
26500,
34000,
80000,
30000,
73000,
200000,
43520,
50000,
100000,
42500,
60000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=247 - Kellross<br>animation_frame=1998<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "247 - Kellross",
"marker": {
"color": "#FFA15A",
"symbol": "circle"
},
"mode": "markers",
"name": "247 - Kellross",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
160,
138.79,
0,
136,
45,
160,
160,
158.46,
158.46,
158.22,
78.58,
155.44,
154.52,
54.17,
8,
8,
45,
158.37,
157.35,
158,
157.81,
44,
160,
155,
155,
155.76,
154.6,
152,
152,
152,
152,
159.22,
158,
158,
156.68,
153,
160,
160.02,
156.78,
160,
160.43,
160.43,
160.43,
159.46,
160,
160,
160,
159.66,
160,
160,
160,
160,
160,
160,
160,
160,
160,
160,
160,
0,
160,
159.71,
157,
156.68,
158.78,
158.31,
157.12,
159.56,
159.08,
161,
80.5,
160.42,
1443.78,
159.11,
159.11,
159.32,
159,
157,
157.67,
158.92,
160,
158.56,
160.4,
160.4
],
"xaxis": "x",
"y": [
44200,
63400,
61950,
0,
10000,
34510,
34000,
132000,
132000,
36500,
75000,
35000,
40000,
72000,
0,
700,
11880,
27607,
55000,
15000,
15000,
8450,
33963,
29999,
37500,
116000,
34000,
40000,
40000,
28800,
29000,
35000,
46250,
46250,
28000,
12500,
45400,
170000,
20000,
30000,
100000,
140000,
145000,
38333,
0,
0,
41668,
135000,
28000,
40909,
40909,
40909,
30000,
24000,
24000,
24000,
45000,
35000,
35000,
148700,
28000,
85000,
40000,
47800,
35000,
75000,
30000,
29000,
133000,
39000,
19500,
150000,
1350000,
20000,
20000,
25000,
40909,
24500,
62500,
116000,
21767,
80000,
22564,
22564
],
"yaxis": "y"
},
{
"hovertemplate": "RM=070 - Key West<br>animation_frame=1998<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "070 - Key West",
"marker": {
"color": "#19d3f3",
"symbol": "circle"
},
"mode": "markers",
"name": "070 - Key West",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
161,
161,
161,
160,
160,
156.6,
159,
158.74,
158.59,
138,
158.97,
159,
140.67,
160,
161,
158.59,
158.59,
0,
158.17,
158.17,
158.17,
158.59,
160,
159.61,
160,
159.89,
159.91,
160,
160.52,
160.52,
160.52,
153.03,
150.76,
150.76,
160,
160.44,
160,
160,
160.07,
160.07,
157.92,
161,
161,
159,
159,
159,
157.84,
157.84,
161,
160.53,
159.08,
159.08,
160.5,
160,
319.18,
159.59,
160,
160,
158.99,
158.92,
159.89,
160,
160,
157.14,
159.96,
159.01,
157,
160,
160.5,
160,
320,
160,
160,
160,
160,
160,
160,
160,
160,
158,
158,
158,
158,
158,
159.91,
158,
153.06,
153,
152.9,
152.9,
160,
160,
160,
160,
80,
160,
160,
320.8,
158,
158,
158,
154,
154,
154,
78,
78,
62.22,
62.22,
77.87,
160,
160,
160,
160,
160,
159.78,
159.78,
160,
160,
159.97,
158.57,
158.57,
158.57,
155,
144
],
"xaxis": "x",
"y": [
40000,
38000,
47500,
10000,
20925,
129000,
56400,
30000,
186688,
34500,
35000,
41756,
13600,
33600,
57000,
28300,
17000,
39400,
30000,
0,
25500,
67175,
35000,
55000,
62760,
293325,
189500,
36000,
84100,
84100,
96815,
40000,
90000,
90000,
32000,
95391,
20000,
20000,
60000,
165000,
51300,
40000,
30000,
35000,
41100,
45000,
86700,
86700,
25000,
75000,
114800,
114800,
23500,
24000,
83980,
80000,
37000,
50280,
46625,
149000,
52000,
25000,
30000,
49667,
43800,
17500,
37000,
35491,
23500,
29000,
100360,
50180,
50000,
40000,
40000,
40000,
269000,
269000,
32000,
27000,
27000,
27000,
27000,
48820,
52000,
31875,
20000,
3,
32812,
33007,
42300,
25000,
31000,
31000,
36676,
12000,
12000,
44000,
26300,
26300,
33000,
1,
49950,
75922,
16600,
25000,
24518,
31010,
43500,
40000,
25000,
25000,
25000,
25000,
132600,
598785,
27000,
44938,
52000,
65550,
65550,
95640,
36250,
1
],
"yaxis": "y"
},
{
"hovertemplate": "RM=184 - Grayson<br>animation_frame=1998<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "184 - Grayson",
"marker": {
"color": "#FF6692",
"symbol": "circle"
},
"mode": "markers",
"name": "184 - Grayson",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
160,
160,
161,
161,
162,
0,
61.75,
160.5,
156.25,
156,
159.97,
158.63,
160,
160,
160.35,
160,
160,
162,
160,
160,
80.17,
80.17,
161,
160,
160,
160.21,
160,
161,
161,
160.51,
158,
156.73,
160,
160,
161,
159.9,
160,
160,
160,
160,
160,
160,
160,
160,
158.56,
158.56,
163.36,
161,
161,
160,
159,
159,
160,
160,
155,
155,
154.9,
158.33,
157.57,
157.57,
156.4,
169,
168.75,
160,
161,
161,
161,
161.11,
160,
161,
160.39,
160.39,
160.39,
8,
158.49,
156,
160,
160,
160.31,
159.7,
159.7,
160,
160.86,
161.26,
161.26,
161.26,
161,
154.93,
155,
155,
155.1,
153,
153,
142.16,
142.16,
158.25,
159,
159.37,
160,
160,
159.43,
159,
159,
160,
160,
160.41,
159.86,
159,
159
],
"xaxis": "x",
"y": [
16000,
10750,
34000,
27000,
98556,
19000,
35000,
25000,
35000,
31874,
350000,
565000,
21000,
30000,
80000,
39025,
35000,
46320,
73400,
73000,
71312,
71312,
48400,
38925,
38925,
38925,
20000,
32999,
44000,
85000,
32750,
106000,
25000,
31140,
24000,
182500,
55000,
55000,
34000,
34000,
35000,
147000,
85000,
33414,
35000,
41000,
120000,
35385,
35385,
32000,
32000,
62000,
22500,
13000,
29499,
44000,
85000,
33414,
20000,
25000,
25356,
25356,
25356,
24236,
31220,
31220,
34000,
182500,
27720,
27720,
39900,
38800,
39900,
0,
25000,
43333,
26000,
27000,
220000,
136000,
134500,
37000,
160000,
75000,
95200,
70000,
28500,
22000,
32900,
32900,
32900,
40000,
40000,
0,
100000,
40000,
29000,
130000,
28000,
28000,
182500,
25000,
75000,
54010,
54010,
75000,
80500,
2500,
25000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=276 - Foam Lake<br>animation_frame=1998<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "276 - Foam Lake",
"marker": {
"color": "#B6E880",
"symbol": "circle"
},
"mode": "markers",
"name": "276 - Foam Lake",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
3.78,
156.34,
161,
161,
160,
160,
160,
160,
160,
159.28,
159.28,
160,
159,
159.34,
160,
159,
160,
158.89,
159.24,
160,
159.72,
160,
160,
159,
161,
159.7,
160,
160,
159.42,
159.42,
159.42,
159.42,
159.42,
159.23,
160,
148.41,
160,
160,
160,
160,
160,
156,
160,
159,
159.85,
159.85,
159.88,
159.88,
159.88,
160,
160,
119,
119,
159.41,
160,
159,
79.7,
160,
160,
160,
160.35,
160,
160,
160,
160.61,
160,
160,
160.03,
160,
160,
159.85,
160,
160.14,
160,
160,
160,
150,
160,
158.97,
160,
159,
158.72,
160,
160,
106.86,
79.52,
79.5,
156.88,
160,
159.93,
160,
160,
160.99,
160,
161,
159.24,
158.07,
160,
159.54,
160,
159,
159.22,
159.22,
160,
107,
106.57,
106.92,
106.92,
155.27,
155,
155,
160,
133,
160,
159.08,
159.08,
159.08,
158.89,
158.89,
160,
159.31,
160,
152.98,
159,
159,
159,
155.93,
160.03,
160.03,
160,
160.8,
160.8,
154.82,
155,
160,
160,
80,
159,
159.24,
160,
158,
157.78,
79,
160,
159,
160,
159.31,
159,
96,
95.5,
95.5,
158,
161,
161,
160,
160,
160,
162.96,
160,
149,
160
],
"xaxis": "x",
"y": [
0,
124800,
39000,
39000,
36000,
36000,
36000,
10000,
15000,
42400,
65000,
26000,
25000,
35000,
65000,
75000,
50000,
104700,
36000,
66000,
146000,
17000,
17000,
25000,
28000,
141300,
28000,
18000,
112200,
112200,
112200,
112200,
123000,
154500,
45000,
170000,
4000,
22000,
0,
25000,
25000,
40000,
14000,
80000,
100000,
186900,
80000,
80000,
168000,
40000,
25100,
37000,
55000,
39800,
64260,
108604,
79900,
24000,
24000,
52000,
103120,
55000,
69000,
42000,
93800,
10000,
10000,
23000,
20000,
22500,
45000,
32670,
300000,
37229,
75000,
30000,
27500,
35000,
154500,
50000,
38000,
108270,
37800,
27800,
160000,
100000,
18000,
75000,
25000,
50000,
48200,
48200,
180000,
0,
12000,
160000,
35000,
35730,
148000,
27000,
95000,
158000,
264867,
15000,
72800,
160000,
160000,
201633,
30000,
58400,
58400,
65085,
65000,
22400,
134200,
134200,
200000,
150000,
87000,
60000,
29000,
21504,
27000,
46000,
46000,
106000,
45000,
135000,
135000,
36000,
193000,
193000,
0,
60000,
0,
38400,
19200,
39400,
39400,
50000,
52650,
71000,
52000,
23000,
57300,
55000,
80000,
12000,
40000,
40000,
40000,
44000,
47880,
21926,
35000,
35000,
64160,
211300,
15000,
25000,
46600
],
"yaxis": "y"
},
{
"hovertemplate": "RM=305 - Invermay<br>animation_frame=1998<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "305 - Invermay",
"marker": {
"color": "#FF97FF",
"symbol": "circle"
},
"mode": "markers",
"name": "305 - Invermay",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
159,
159,
159,
160,
157,
157,
154.53,
50.32,
158,
158,
158,
157,
159.27,
158.47,
157.7,
157.7,
160,
159,
161,
161,
160.73,
160,
160,
160.26,
160,
159.94,
159.94,
159.94,
159.94,
79.11,
160,
160,
160,
159.17,
161,
160.39,
160.39,
159,
160,
160,
160,
160.1,
160.1,
160.1,
1430.37,
158.93,
159.92,
160,
157,
157,
156.75,
0,
158,
158,
160,
160,
160,
159.64,
104,
104,
103.5,
103.5,
160,
160,
159,
160,
160,
160,
160,
160,
160.38,
160,
130,
129.64,
0,
18,
18,
18,
18,
0.99,
18.43,
160,
132.4,
160,
160,
160
],
"xaxis": "x",
"y": [
40000,
30000,
30000,
50000,
40000,
40000,
13000,
40000,
60000,
38200,
38200,
35000,
6000,
40000,
0,
0,
36300,
59500,
30000,
31200,
100200,
4000,
4000,
36691,
80100,
80100,
80100,
240000,
239112,
100000,
29700,
40000,
40000,
32000,
19600,
30000,
65900,
58000,
8000,
8000,
46000,
150000,
150000,
150000,
1800000,
200000,
104500,
41000,
67200,
78000,
279800,
12500,
20400,
18400,
41000,
62500,
28400,
87875,
53500,
54785,
62500,
140518,
32000,
38000,
60000,
5000,
32130,
50000,
50000,
27000,
80000,
12470,
32000,
30000,
0,
0,
10352,
10352,
10352,
1,
26380,
20000,
77900,
12000,
12000,
25000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=100 - Elmsthorpe<br>animation_frame=1998<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "100 - Elmsthorpe",
"marker": {
"color": "#FECB52",
"symbol": "circle"
},
"mode": "markers",
"name": "100 - Elmsthorpe",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
160,
160,
160,
161.36,
161.36,
160,
158.43,
158.43,
157,
157.38,
157.38,
79.02,
79.02,
39.51,
159,
159.25,
159.25,
136.24,
67.36,
33.68,
160,
160,
160,
40,
161,
161,
161.39,
161.39,
160,
160,
160,
160,
160.21,
160,
79.97,
39.99,
160,
159.52,
159,
159,
158.4,
160,
160,
159.99,
160,
159.6,
159.6,
158.99,
160,
160,
159.58,
160,
160.06,
154.05,
154.05,
154,
154.34,
160,
160,
160,
160,
160,
160,
159.86,
159.86,
160,
156.14,
156.14,
160,
160,
160,
158.26,
158.26,
159.03,
159.03,
159,
0,
159.03,
119.27,
159.37,
155,
158.58,
158.58,
157,
157,
157,
156,
155.63,
155.63,
157.07,
157,
157,
157,
157,
161,
162.75,
160,
160,
160,
160.07,
160,
162,
162.17,
162.17,
162.17,
160,
159.1,
322.82,
160.72,
161,
160,
160,
160.14,
160,
159,
159.23,
156.62,
156.62,
160,
160,
160,
159.67,
158,
153,
153.01,
158.4,
158.4,
160,
160,
160.5,
160,
160.45,
160,
160.59
],
"xaxis": "x",
"y": [
41275,
62548,
50000,
46300,
46300,
23000,
75000,
63300,
10000,
106000,
106000,
32500,
33120,
16560,
29380,
47000,
76360,
39490,
45000,
22500,
35800,
54270,
26000,
5000,
29812,
35714,
75000,
68600,
53333,
29000,
29000,
32000,
65000,
35000,
87500,
43750,
50000,
209500,
50000,
50000,
62000,
64000,
93000,
57000,
10000,
110000,
110000,
44640,
30000,
40000,
40000,
48000,
247000,
13000,
13000,
43665,
43600,
42000,
0,
30000,
53000,
9450,
42400,
47000,
133083,
34500,
102586,
102586,
35625,
24550,
43000,
112000,
112000,
40000,
0,
2,
60,
250000,
187497,
35000,
25000,
28000,
53690,
25000,
0,
19000,
30000,
85860,
99435,
22000,
43671,
43671,
43671,
43671,
15000,
100000,
49170,
50000,
50000,
115000,
25000,
75000,
82000,
150000,
160000,
25746,
40800,
191000,
50000,
20000,
29720,
80000,
100000,
40000,
49835,
49000,
47600,
47600,
25358,
24500,
25000,
32500,
50000,
38300,
104500,
10000,
56180,
31568,
28362,
110000,
24000,
252700,
20000,
115000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=275 - Insinger<br>animation_frame=1998<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "275 - Insinger",
"marker": {
"color": "#636efa",
"symbol": "circle"
},
"mode": "markers",
"name": "275 - Insinger",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
157,
161,
160.78,
160.78,
159.83,
158,
53.36,
160,
160.5,
160.5,
160,
160,
159,
159.96,
159.96,
159,
159.26,
157.23,
159,
159,
158.68,
158.68,
158.68,
160,
160,
160,
159,
159.09,
160,
159,
159.41,
160,
160,
160,
160,
159.71,
159.73,
159.73,
159.14,
160,
131,
131,
130.73,
159,
159.63,
159.63,
159.09,
159,
159.24,
160,
160,
160,
160,
159.64,
0,
0,
158.22,
158,
157.65,
160,
160,
160,
159,
158.73,
160,
160,
159,
160.39,
155,
155,
154.86,
154.86,
160,
160,
0,
139,
139.24,
139.24,
160,
160,
160,
159.5,
159.5,
155.17
],
"xaxis": "x",
"y": [
95000,
261500,
134500,
237156,
50000,
0,
8000,
60000,
180000,
200000,
34000,
34000,
42500,
100000,
140000,
54000,
84000,
37998,
8000,
8000,
8000,
20000,
20000,
50000,
56000,
46000,
40000,
40000,
25000,
34000,
205500,
45000,
42000,
30000,
61000,
61000,
84300,
90000,
45810,
10000,
35000,
35000,
35000,
40000,
104900,
97500,
111020,
30000,
120000,
25500,
44700,
94000,
94000,
122329,
13500,
13500,
35903,
32500,
200000,
20000,
14000,
18000,
30000,
65000,
17500,
17500,
46000,
250000,
15180,
20000,
75000,
85000,
35000,
30000,
28000,
35000,
75000,
96000,
8000,
28000,
38942,
79045,
77500,
40000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=250 - Last Mountain Valley<br>animation_frame=1998<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "250 - Last Mountain Valley",
"marker": {
"color": "#EF553B",
"symbol": "circle"
},
"mode": "markers",
"name": "250 - Last Mountain Valley",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
159.64,
159.64,
159,
159,
158.66,
159,
157.1,
159,
158.77,
79.95,
79.95,
79.95,
159.89,
80,
160,
160,
159.81,
149.82,
149.82,
160,
140.54,
140.66,
160,
160,
160,
160.42,
160,
160,
161,
158,
160,
160.14,
159,
159.3,
159.74,
160,
160.11,
160.11,
160,
160,
159.85,
160,
158,
160,
80.07,
80,
80,
160,
160,
143.05,
160,
159.96,
161,
161,
161,
158.94,
158.94,
160,
160,
159.71,
159.71,
159,
159,
159,
160,
157.99,
157.99,
158.58,
158.58,
158.58,
158.58,
158.58,
160.38,
150,
150,
149.53,
160,
160,
160.09,
160,
161,
161,
160.92,
160.92,
159,
159,
79.5,
158,
160,
160,
159.33,
159,
159,
161,
159,
158.67,
157.99,
157.99,
156.82,
160,
160,
160,
160.15,
160,
160,
159,
159,
160,
160,
131,
131.14,
131.14
],
"xaxis": "x",
"y": [
50000,
125000,
44100,
44100,
146508,
36000,
50000,
40000,
105000,
29000,
57500,
57500,
115000,
20000,
12000,
55800,
62500,
59250,
164135,
45000,
0,
140100,
0,
40000,
90000,
80000,
118500,
45000,
50000,
26100,
30000,
37400,
45000,
159790,
120000,
21850,
128427,
128427,
23361,
263000,
35000,
50000,
78620,
15000,
15000,
3750,
3750,
42500,
25000,
206666,
45100,
68000,
1,
1,
30000,
125000,
125000,
25000,
0,
50000,
75000,
25000,
25000,
25000,
50000,
37500,
37500,
65000,
65000,
160000,
160000,
279000,
64000,
84000,
84000,
84000,
40000,
45250,
81000,
40000,
80000,
80000,
80000,
63333,
45000,
45000,
30000,
45000,
35000,
35000,
37500,
24000,
24000,
30000,
65000,
150000,
37000,
61666,
82500,
7500,
21400,
21400,
85000,
37000,
37000,
39000,
27500,
47500,
40000,
0,
120000,
166864
],
"yaxis": "y"
}
],
"name": "1998"
},
{
"data": [
{
"hovertemplate": "RM=213 - Saltcoats<br>animation_frame=1999<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "213 - Saltcoats",
"marker": {
"color": "#636efa",
"symbol": "circle"
},
"mode": "markers",
"name": "213 - Saltcoats",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
175,
139,
139,
139,
160,
160,
159.74,
149.6,
149.6,
160,
160.34,
160.34,
160,
160,
160,
160,
160,
54,
53.51,
160,
160,
159.32,
143,
143.3,
143.3,
71.5,
3.49,
160,
160,
160,
160,
80.25,
160.5,
158.64,
160,
160,
160,
158.88,
158.88,
157.5,
157.5,
78.75,
160,
160.56,
160,
159.89,
160,
160,
160,
160.36,
160.36,
159,
158.59,
158.31,
161,
160,
160,
160.11,
160,
161,
160,
160,
160,
157.47,
157,
160,
159.86,
159.86,
159.86,
147.89,
147.89,
160,
160.2,
160.2,
160.16,
160,
160,
160,
160.34,
160,
160,
161,
160,
160.1,
152,
17,
135,
153.26,
153.26,
53.44,
160.46,
160,
160,
160,
160,
160.84,
160.05,
160.05,
53.33,
160,
159.97,
158.22,
158,
157.55,
160,
160,
140,
140,
140,
160,
160,
160,
160.09,
160,
160,
160,
160,
160,
160.3
],
"xaxis": "x",
"y": [
176500,
30000,
61620,
61813,
56000,
56000,
155000,
120000,
122000,
40595,
187500,
236000,
36000,
80000,
25000,
50000,
10000,
25000,
50000,
25000,
54800,
35000,
40000,
105000,
126000,
22500,
3300,
15000,
9498,
51800,
19000,
55754,
111508,
38000,
40000,
75000,
69900,
162500,
180000,
119000,
119000,
74500,
26217,
172000,
39460,
93000,
36000,
40880,
55000,
178400,
260000,
49830,
155000,
130300,
200000,
36550,
79515,
160000,
32500,
163500,
15000,
55000,
51000,
34000,
40000,
40000,
40000,
134000,
126000,
0,
170500,
30283,
115900,
127409,
187500,
15350,
12000,
12000,
14000,
25000,
25000,
32615,
17500,
35000,
30000,
12500,
12500,
100000,
90000,
27766,
90000,
28500,
39000,
56000,
60000,
206250,
73500,
73500,
11200,
15000,
100000,
40000,
219990,
538650,
90000,
63000,
0,
28500,
37000,
36890,
36890,
69200,
187000,
19000,
150000,
149900,
16000,
38600,
62500
],
"yaxis": "y"
},
{
"hovertemplate": "RM=488 - Torch River<br>animation_frame=1999<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "488 - Torch River",
"marker": {
"color": "#EF553B",
"symbol": "circle"
},
"mode": "markers",
"name": "488 - Torch River",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
160,
158,
161,
160.36,
160.36,
160.2,
147.69,
155,
155,
154.94,
154.94,
159,
159.13,
161,
161,
161,
161,
160.58,
160.58,
160.58,
158.99,
158.84,
158.84,
160,
159.82,
5,
159.19,
153,
152.72,
152.72,
110,
159.6,
160,
160,
140,
159.8,
160,
160,
159.67,
160,
159.71,
159.71,
160,
160,
159,
159,
149,
161,
160.59,
160.59,
160.59,
155,
155,
154.84,
157.03,
157.03,
142,
142,
142.49,
152,
152,
152,
152.29,
159.99,
160,
160,
160,
160,
0,
158,
159,
158.97,
158,
156,
156,
156,
160,
158,
158,
158.26,
158.26,
160,
160,
147.62,
147.62,
159.69,
159.7,
159.85,
160,
141,
141.49,
160,
160,
160,
159.81,
0,
133,
132.95,
66.48,
158.84,
158,
157.97,
160,
160,
158.97,
158.97,
79,
39.5,
160,
160,
158.75,
158.24,
160,
159.65,
158,
158.25,
68,
68.23,
160,
160,
159.83,
157,
157.05,
159.54,
159.54,
159.54,
160.72,
159,
161,
160.86,
150.87,
158.8,
160,
159,
159,
159,
158.93,
158.93,
158.98,
158.47,
159,
159,
160,
160.38,
158.97,
79.25,
158.49,
159,
150,
160,
160,
159.67,
158,
86,
86,
0,
135.18,
159.08,
159,
159.26,
160,
160,
159.5,
159.5,
158.85,
158,
158,
158.35,
160,
160,
158.42,
158.29,
158.29,
160,
159,
158.52,
160,
160,
157,
157.38,
160,
160,
160,
155.76,
161,
161,
160,
160,
160.39,
158.71,
82,
159,
159,
159,
149.12,
159,
160,
160,
159.94,
159.74,
160,
160,
159.2,
160,
159,
159,
159.22,
147,
159.19,
159,
159,
160,
160,
160,
160,
159.88,
159.88,
159.88,
160,
160
],
"xaxis": "x",
"y": [
23500,
28000,
100000,
175000,
175000,
55000,
290760,
30000,
30000,
95190,
120950,
0,
50000,
44000,
51000,
51000,
51000,
153000,
153000,
153000,
3500,
67276,
67276,
31000,
159800,
890,
33390,
63880,
168155,
253500,
0,
30000,
11200,
11200,
18000,
80000,
35000,
0,
75000,
70253,
168155,
272100,
45300,
15000,
28000,
18000,
46500,
84700,
240855,
240855,
111300,
100000,
100000,
110000,
169290,
138700,
19000,
60000,
60000,
30000,
30000,
30000,
159600,
0,
80000,
80000,
93000,
58000,
8000,
110000,
70000,
50000,
80000,
36700,
40000,
95000,
45000,
60000,
62888,
175000,
230550,
33200,
33200,
65000,
91800,
34500,
112500,
175000,
37000,
35000,
30000,
16000,
31480,
31480,
187000,
1,
1,
52494,
26247,
72000,
37050,
13500,
0,
105500,
0,
7000,
14400,
7200,
70000,
48000,
30000,
105000,
42500,
62000,
38000,
170937,
0,
131100,
15700,
22000,
95000,
65000,
50000,
100000,
180000,
180000,
160000,
60000,
58100,
225280,
131000,
180000,
35000,
35000,
36900,
36900,
68000,
85000,
28000,
180000,
75000,
61297,
15000,
40000,
25000,
27500,
147000,
0,
25000,
30000,
75000,
78334,
85000,
19000,
19000,
0,
40000,
22550,
67480,
150000,
42000,
42000,
400000,
400000,
70000,
49500,
49500,
168020,
11760,
40000,
187500,
65000,
65000,
35000,
29900,
60000,
10000,
13280,
22000,
81683,
44400,
24000,
49230,
867600,
90000,
90000,
40000,
40000,
250000,
250400,
14000,
40000,
40000,
65000,
0,
58500,
7000,
50000,
80000,
110000,
48650,
15000,
200000,
40390,
33000,
33000,
48800,
50000,
0,
50000,
59360,
30000,
30000,
45000,
55617,
76222,
76222,
134030,
90000,
200000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=336 - Sasman<br>animation_frame=1999<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "336 - Sasman",
"marker": {
"color": "#00cc96",
"symbol": "circle"
},
"mode": "markers",
"name": "336 - Sasman",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
160,
160,
159.83,
159.53,
159.53,
160,
159,
160,
159.41,
160,
160.59,
160,
160.44,
160.44,
160,
160,
160,
160,
159.62,
159.14,
158,
157.52,
158.85,
158.85,
158.85,
157,
156.81,
156.81,
157.13,
160,
160,
160,
160,
160.38,
160.38,
160,
160,
160,
160,
146,
157,
158.88,
158.88,
160,
160,
157,
157.4,
157.4,
157.4,
79,
160,
160,
157.35,
159,
159,
158.61,
158.61,
157.89,
156,
156.06,
155.82,
155.86,
161,
161,
0,
108,
158.97,
74.41,
74.41,
74.5,
160,
159.86,
159.86,
159.86,
160,
160,
160,
159,
157.68,
158.97,
158.97,
157,
155,
155,
157,
78.71,
78.71,
159.83,
160,
160,
160,
155.86,
155.86,
160,
0,
160,
160,
159.6,
159.6,
158.97,
157,
157,
156.74,
156.74,
159.06,
157,
157,
157.02,
161,
161,
160.69,
160.69,
108,
109,
109,
159.25,
155.44,
160
],
"xaxis": "x",
"y": [
35000,
50000,
75000,
200000,
15020,
35000,
40000,
39000,
88600,
49700,
85000,
38000,
200000,
200000,
43500,
38000,
38000,
38000,
38000,
60000,
0,
60000,
28400,
28400,
28500,
0,
148000,
125000,
69000,
34000,
50000,
50000,
50000,
90000,
137265,
30200,
30200,
75000,
46000,
45000,
0,
40000,
40000,
40000,
40000,
43000,
95000,
99000,
80000,
0,
48560,
69560,
270000,
42000,
42000,
200000,
250000,
60000,
0,
125000,
45000,
225000,
50000,
83000,
45000,
35300,
38700,
53300,
26650,
26650,
32000,
60000,
60000,
67500,
26000,
30000,
30000,
52334,
0,
25000,
55000,
0,
0,
60000,
0,
75000,
75000,
118600,
60000,
60000,
50000,
20500,
20500,
65000,
55000,
40000,
40000,
78500,
78500,
55600,
0,
55600,
224000,
224000,
50000,
0,
0,
112000,
84800,
84800,
68080,
68080,
16000,
0,
44750,
100000,
266000,
58000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=215 - Stanley<br>animation_frame=1999<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "215 - Stanley",
"marker": {
"color": "#ab63fa",
"symbol": "circle"
},
"mode": "markers",
"name": "215 - Stanley",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
160,
160,
160,
160.33,
160,
120,
120,
159.86,
159.86,
161,
161,
161,
161,
59.14,
160,
160,
160,
143,
143,
142.65,
142.65,
142.65,
142.65,
159.06,
155.95,
159.78,
160,
160,
161,
161,
160,
159.72,
155,
155,
145.41,
142,
142,
142,
158.46,
155,
159,
158,
155,
154.73,
154.73,
154.73,
160,
160,
161,
160,
160,
160,
159.89,
160,
160,
142,
159,
161,
161,
159.31,
157.19,
157.19,
147.19,
160,
160,
160,
159.67,
156,
156,
156,
158,
158,
157.97,
157.5,
161,
160,
157.19,
157.19,
160,
160,
159,
159,
160,
158.13,
159,
159,
159.39,
158.17,
161,
161,
161,
160.44,
160.44,
160.44,
158.49,
156.38,
160,
156,
156,
159.24,
158.44,
158.44,
158.44,
159,
159.27,
159.27,
159.27,
159.27,
158,
158,
158,
136,
160,
160.08,
163.6,
159.49
],
"xaxis": "x",
"y": [
27000,
15000,
45000,
45000,
36720,
25000,
25000,
74000,
125000,
45600,
45600,
45000,
34000,
12680,
34450,
34450,
26145,
24242,
40000,
40000,
271700,
394950,
198120,
52500,
160300,
58666,
55000,
43470,
43000,
50000,
20790,
118500,
60000,
60000,
35000,
50000,
50000,
65000,
34240,
29440,
54000,
90000,
52500,
292600,
425331,
188500,
39780,
43000,
50000,
29800,
35000,
35000,
77500,
42000,
42000,
24000,
15000,
45000,
45000,
40000,
209000,
180000,
0,
43376,
44750,
48300,
125000,
30750,
26400,
31000,
42500,
70000,
135000,
95000,
15000,
41000,
172500,
172500,
25000,
30558,
54000,
60000,
40000,
23000,
40000,
13000,
104343,
170980,
41000,
41000,
41000,
121000,
121000,
120000,
151100,
73500,
58800,
0,
50000,
200000,
30170,
31000,
31000,
33000,
70002,
305900,
444664,
168820,
80000,
80000,
70000,
0,
70000,
87500,
250000,
105000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=247 - Kellross<br>animation_frame=1999<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "247 - Kellross",
"marker": {
"color": "#FFA15A",
"symbol": "circle"
},
"mode": "markers",
"name": "247 - Kellross",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
159,
159,
159.21,
160,
160,
159.44,
160,
159,
157.35,
157.35,
157.35,
159.91,
160,
159.72,
158,
158,
158.17,
159.52,
159,
159,
157,
157,
157.26,
159.07,
159.07,
157.39,
116.34,
113,
113,
112.28,
112.28,
155,
155,
155,
155.33,
159.33,
31.87,
157.89,
158.32,
158.32,
157,
160,
160,
160,
159.59,
160,
160,
157.27,
1415.43,
158.76,
155,
155,
157.8,
159,
159,
160,
160,
159.47,
79.5,
163,
163,
163.41,
163.41,
163.41,
165.2,
165.2,
165,
148,
147.99,
160,
159.53,
159.53,
159.53,
158.99,
158,
158,
160,
160,
149.45,
159,
159,
159.07,
159.13,
160,
157.53,
155.6,
158.29,
158.29,
75,
75,
75,
157.19,
160,
160,
159.71,
160,
160,
159,
156,
156,
157.95,
157.95,
159.37,
160,
159.06,
158,
157.79
],
"xaxis": "x",
"y": [
31500,
31500,
58750,
17500,
17500,
80000,
43200,
38786,
100000,
250000,
250000,
20500,
50200,
50200,
22500,
80000,
80000,
25000,
25000,
25000,
24000,
32727,
60500,
34000,
34000,
30000,
38000,
30000,
85000,
0,
105470,
38000,
38000,
66000,
66000,
100000,
20000,
100000,
133685,
133685,
46626,
37000,
37000,
84000,
84000,
39550,
39550,
150000,
1350000,
22000,
40500,
170000,
66500,
20000,
20000,
31950,
25000,
74000,
37000,
36500,
69279,
103440,
103440,
120547,
29800,
29800,
0,
38300,
38300,
30000,
100000,
140000,
145000,
45000,
32000,
32000,
32000,
30000,
80000,
100000,
80000,
90000,
30000,
30000,
30000,
34000,
151800,
170000,
2,
40000,
40000,
35000,
35000,
36250,
51800,
23500,
23500,
45000,
39000,
41800,
133365,
133365,
44000,
36000,
40000,
99000,
99000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=070 - Key West<br>animation_frame=1999<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "070 - Key West",
"marker": {
"color": "#19d3f3",
"symbol": "circle"
},
"mode": "markers",
"name": "070 - Key West",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
158.6,
160,
160,
160,
113.35,
113.35,
160,
160,
159.98,
158,
158,
160,
159,
158,
158,
158,
158,
158,
158.24,
161,
160,
160,
160,
158.47,
160,
158,
158.88,
158.88,
158.92,
158.92,
159,
159,
159,
159,
159,
161,
161,
161,
108.08,
160,
160,
160,
150,
160,
159.8,
160,
160,
154,
154.31,
158.91,
160,
159,
159,
158.77,
158.77,
159,
159,
159,
158.93,
160,
160,
160,
149.36,
158.56,
158.56,
159.93,
160,
160,
319.88,
160,
158,
159,
158.68,
158.68,
158.08,
158.08,
157,
157,
156,
161,
161,
160.23,
160,
158,
158.8,
156.98,
160,
159,
155.61,
155.61,
156,
150.6,
151,
6,
159.84,
159.84,
160,
160,
160,
160.01,
160,
159,
159,
158.77,
158.91,
158
],
"xaxis": "x",
"y": [
2000,
40000,
20000,
32300,
25000,
143000,
0,
34700,
52000,
56600,
58000,
16600,
15500,
11667,
30000,
30000,
37900,
56250,
56250,
0,
28000,
40000,
40000,
40000,
25000,
72752,
16500,
24400,
44700,
44700,
47700,
47700,
59625,
60000,
60000,
44000,
55000,
55000,
66500,
60000,
70750,
0,
0,
35000,
80000,
30000,
28000,
31875,
185000,
35000,
35000,
55400,
55400,
45045,
79380,
32300,
48000,
79200,
125000,
32900,
23870,
48500,
275000,
90000,
89760,
52000,
29000,
29000,
110400,
25000,
38750,
35420,
93325,
228800,
0,
25600,
26200,
40000,
27600,
20000,
33000,
112200,
50000,
35000,
100000,
228800,
23800,
41000,
17840,
17840,
24000,
20000,
30000,
0,
40000,
40000,
25000,
0,
23400,
30000,
20000,
45000,
43750,
69290,
20500,
23000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=184 - Grayson<br>animation_frame=1999<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "184 - Grayson",
"marker": {
"color": "#FF6692",
"symbol": "circle"
},
"mode": "markers",
"name": "184 - Grayson",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
159.13,
158.59,
158.59,
158,
79,
79,
160,
160,
160.08,
160,
159.28,
159.28,
159,
159.27,
159,
159,
161,
152.88,
152.88,
161,
160,
159.94,
160,
157,
157,
157.07,
160,
160.02,
160,
158.37,
160,
160,
160,
161,
160.72,
160,
160,
160,
159.24,
159.24,
159.24,
159,
159,
159.16,
160,
160,
160,
161,
147.61,
146.81,
146.81,
146.81,
161,
161,
80.3,
80.3,
160,
160,
160,
160,
159.59,
160,
160,
160,
156,
160,
160,
160,
160,
160,
160,
160,
160,
159.9,
159.9,
161,
161,
161,
160.82,
160.82,
160,
159.8,
160,
137.9,
137.9,
137.9,
160,
159,
160,
160,
152.01,
152.01,
159.04,
153.62,
151,
110,
41,
150.79,
156.88,
159.84,
160,
0,
120,
160,
160,
160,
165,
165,
160,
160,
162,
162,
160,
159.92,
159.92,
159.92,
158,
156.43,
156.43,
156,
156,
156.08,
160.87,
160.87,
160.87,
161,
160,
160,
159.52,
162,
162,
162,
162,
160,
159,
163,
160,
159.76,
150.39,
160,
159.21
],
"xaxis": "x",
"y": [
40000,
30000,
32500,
64413,
30000,
40000,
24000,
24000,
130000,
30000,
136000,
134500,
42000,
0,
39690,
39690,
35000,
25200,
25000,
25000,
28500,
100000,
30000,
35300,
55000,
141800,
25000,
130000,
26000,
437500,
26400,
26400,
33000,
40000,
108000,
30000,
30000,
25000,
20000,
20000,
24500,
35000,
50000,
97000,
32045,
32045,
25000,
175000,
27000,
117432,
74750,
151675,
73400,
73000,
67238,
67238,
36000,
36000,
41667,
77050,
89840,
20000,
0,
27000,
27000,
23450,
23450,
0,
18000,
30840,
33410,
38500,
38500,
77500,
170500,
36666,
36666,
22000,
80000,
60950,
19000,
112500,
34000,
109762,
120100,
142479,
65000,
160000,
41100,
41100,
40000,
40000,
120000,
38000,
0,
65000,
34000,
111790,
1750000,
110000,
40000,
15000,
30000,
45958,
45958,
43120,
43120,
43120,
34550,
85000,
35980,
35979,
35000,
100000,
100000,
192000,
0,
43000,
85900,
27000,
27000,
27000,
120000,
120000,
120000,
40000,
36276,
36276,
28078,
84000,
84000,
84000,
175000,
39000,
39000,
33500,
20000,
128000,
5000,
30000,
192500
],
"yaxis": "y"
},
{
"hovertemplate": "RM=276 - Foam Lake<br>animation_frame=1999<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "276 - Foam Lake",
"marker": {
"color": "#B6E880",
"symbol": "circle"
},
"mode": "markers",
"name": "276 - Foam Lake",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
159,
159,
159,
160.8,
158,
158.67,
160,
160,
160,
158.87,
158.87,
159.15,
159.15,
159.14,
160,
159,
159.1,
160,
158,
157.87,
160,
161.62,
158,
160,
159,
160,
159.77,
160,
159.53,
159.53,
159.53,
160,
160,
159,
158.96,
159.04,
159.04,
159.04,
159.04,
159,
159,
159.14,
79.5,
79.5,
159,
159.01,
157,
157.27,
157.27,
156,
156,
2,
156,
159.44,
160,
160,
160,
160.04,
147,
160,
80,
159,
159.32,
159.32,
159.32,
159,
159,
160,
159,
159.31,
160,
160,
158.68,
159,
159,
160,
153.44,
153,
160,
160,
160,
159.82,
160,
159.82,
159.07,
160,
160,
160,
158,
158,
158,
158.47,
155.56,
156.4,
156.4,
160.07,
160,
160,
159.71,
159.71,
159.21,
160,
159.71,
159.71,
160,
160,
160,
159,
160,
160,
160,
160,
160.21,
160,
160,
160,
159.32,
159.6,
157,
156.58,
160.36,
159,
159,
159,
160,
79.5,
160,
159,
159.15,
160,
159,
158.8,
158.75,
32,
32,
160,
159.37,
159.37,
160,
160.22,
154,
153.39,
159.58,
158.36,
158.6,
158.6,
158.6,
160,
159.69,
159.69,
159
],
"xaxis": "x",
"y": [
185000,
218856,
40000,
42000,
56381,
163356,
35000,
35000,
15000,
250000,
205000,
64200,
64200,
125000,
50750,
25000,
60000,
40000,
0,
163100,
40000,
150935,
0,
44320,
58500,
10000,
40000,
100000,
135000,
200000,
275000,
40000,
59431,
46000,
46000,
55000,
55000,
105000,
105000,
50000,
50000,
200000,
25000,
25000,
55000,
152000,
0,
27060,
27060,
40000,
50000,
0,
0,
75000,
31430,
28500,
21250,
45000,
27000,
16000,
24450,
59700,
59700,
59700,
125000,
25000,
25000,
55000,
40000,
142400,
25000,
53336,
146000,
41040,
36720,
80000,
18900,
40000,
23333,
35000,
40000,
62600,
49710,
131000,
400000,
20000,
33725,
60000,
80000,
45000,
40000,
320000,
70000,
81400,
99800,
140000,
52000,
28000,
97000,
116400,
72500,
36122,
146802,
161600,
25000,
23000,
75000,
55000,
95000,
32000,
64700,
64700,
100000,
38000,
48000,
48000,
100000,
17040,
19000,
60000,
54000,
35200,
35200,
43300,
27706,
20000,
35000,
40000,
40000,
42500,
63443,
158000,
189303,
0,
9000,
12000,
86000,
86000,
42000,
55000,
25000,
185625,
42000,
60000,
102500,
68500,
125000,
24400,
113931,
113931,
70000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=305 - Invermay<br>animation_frame=1999<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "305 - Invermay",
"marker": {
"color": "#FF97FF",
"symbol": "circle"
},
"mode": "markers",
"name": "305 - Invermay",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
160,
160,
160,
160,
160,
157.99,
160.23,
157.56,
160,
159.76,
159.11,
160,
160,
160,
29.16,
160.43,
160.43,
159,
160.15,
160,
159.31,
159.31,
40.05,
40.05,
40.05,
159,
159,
80,
160,
160,
160,
159.87,
160,
160,
160,
160,
158,
161,
161,
159,
160,
159.9,
160,
159.34,
160,
160,
160,
158.58,
112,
112,
112,
111.78,
160,
160,
160,
160,
160,
160,
159.62,
159,
159.43,
160,
158,
158.26,
155.8
],
"xaxis": "x",
"y": [
19200,
19200,
19200,
19000,
22000,
88500,
18300,
140400,
50000,
280700,
80100,
18000,
18000,
18000,
500,
87000,
87000,
58009,
34400,
55000,
110000,
110000,
5000,
12500,
12500,
46000,
67500,
22500,
45100,
26000,
26000,
26000,
68000,
43000,
64000,
64000,
42500,
25000,
50000,
55000,
25000,
161000,
20000,
214300,
25000,
19000,
20250,
140000,
22800,
22800,
22800,
42300,
48000,
25000,
110000,
21000,
12500,
12500,
88500,
24000,
36000,
45000,
45000,
320000,
62200
],
"yaxis": "y"
},
{
"hovertemplate": "RM=100 - Elmsthorpe<br>animation_frame=1999<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "100 - Elmsthorpe",
"marker": {
"color": "#FECB52",
"symbol": "circle"
},
"mode": "markers",
"name": "100 - Elmsthorpe",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
160,
159,
159,
160,
158.53,
161,
160,
160,
160,
160,
160,
159.01,
159,
159.52,
160,
47,
158.97,
159,
161,
160.9,
161.02,
161.02,
158,
158.57,
158.57,
168,
167.76,
152.95,
160.29,
160.29,
160,
160,
160,
158.5,
154.89,
148,
148,
159.25,
158.89,
158.89,
159.01,
161,
161,
155,
155.47,
116.6,
158.97,
160,
159.62,
159.62,
160,
160,
160,
53.77,
160,
160,
160,
15.6,
155.77,
0,
0,
1.68,
160,
159.56,
158,
158,
160,
159.04,
159.04,
160,
156,
156,
156,
156,
159.94,
159.94,
159.46,
160,
160,
156.11,
160,
154.63,
154.63,
162,
162,
161.54,
161.54,
159.06,
161,
160,
160,
157,
156.83,
160,
156.28,
156.28,
156.28
],
"xaxis": "x",
"y": [
22500,
22500,
22500,
29600,
60000,
35000,
39000,
43600,
43600,
43600,
43600,
35000,
44660,
37375,
70000,
0,
40000,
51500,
50335,
49200,
124200,
124200,
21000,
31500,
60580,
30200,
70500,
128100,
30000,
96200,
16750,
16750,
20300,
1000000,
0,
0,
25000,
0,
40000,
40000,
139400,
20000,
20000,
27500,
44760,
33570,
48680,
43800,
75000,
92316,
201400,
85000,
20500,
33300,
31000,
31000,
35020,
30000,
570000,
1,
1250,
1000,
25000,
45000,
33000,
33000,
36500,
75000,
92316,
23750,
1,
50000,
50000,
50000,
105216,
105216,
176700,
71450,
60000,
299260,
44048,
34166,
34166,
30420,
35714,
75000,
68600,
60000,
63480,
84000,
89100,
136000,
280000,
33250,
28500,
86200,
86200
],
"yaxis": "y"
},
{
"hovertemplate": "RM=275 - Insinger<br>animation_frame=1999<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "275 - Insinger",
"marker": {
"color": "#636efa",
"symbol": "circle"
},
"mode": "markers",
"name": "275 - Insinger",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
159.62,
155.94,
155.94,
160,
159,
159.57,
160,
160,
159,
159,
160,
160,
160.37,
159,
159.2,
158.46,
158.46,
160,
160,
159.31,
159.31,
160,
159.83,
160,
160,
159,
142,
161,
161,
161,
160.6,
160,
155.82,
144.2,
145,
145,
144.09,
160,
159.73,
160,
159,
159.33,
159,
159,
159,
160,
160,
158.98,
160,
156.2,
159,
79.7,
160,
158.97,
160,
159.96,
159.96,
132,
132.66,
159.4,
159.4,
159.4,
160.07,
160,
160,
161,
160,
160,
160,
160.15,
160,
159.4,
160,
155.98,
155,
159.38,
160,
160,
159.51,
159.51,
159.3,
159,
159,
159.71,
160,
160,
159,
159.26,
159.26,
157.71,
157.71,
157.71,
157.71,
158,
158
],
"xaxis": "x",
"y": [
16940,
76500,
270000,
24610,
25960,
71821,
15974,
30000,
45000,
45000,
50000,
25000,
125000,
41514,
88000,
18000,
18000,
31425,
31425,
107915,
107915,
49000,
120000,
19662,
5000,
20000,
45000,
25000,
35000,
35000,
63240,
30330,
130000,
43000,
40000,
55000,
190360,
15000,
50000,
7000,
30000,
34000,
20000,
20000,
20000,
30330,
30000,
100000,
35000,
80000,
18150,
45000,
50000,
30000,
30000,
35000,
57000,
28700,
142000,
47200,
47200,
165000,
85000,
37000,
40000,
46000,
68000,
60000,
60000,
60000,
52687,
120900,
50000,
7000,
17950,
33500,
50000,
50000,
120000,
120000,
30950,
23000,
23000,
65000,
28333,
39400,
75100,
89850,
90000,
27500,
49600,
49600,
49600,
20000,
21000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=250 - Last Mountain Valley<br>animation_frame=1999<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "250 - Last Mountain Valley",
"marker": {
"color": "#EF553B",
"symbol": "circle"
},
"mode": "markers",
"name": "250 - Last Mountain Valley",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
159,
161,
160,
320.34,
160.35,
159,
159,
159.25,
160,
159.75,
159.75,
160,
159.37,
151.37,
79.5,
160,
158,
158.06,
158.06,
149,
148.77,
160,
160.02,
160,
157.97,
157.69,
158,
158,
26.33,
156,
159.14,
159.14,
159.15,
157.63,
159,
159,
159.37,
159.37,
104.79,
51.76,
158.49,
158.49,
158,
158.2,
158.91,
158.93,
158.93,
158.37,
156,
158,
158,
160,
160,
160,
160,
159,
159,
159,
79.5,
159,
158.61,
157.96,
157.96,
158,
159,
160,
156.21,
156.21,
156.21,
156.21,
159.4,
159.4,
159,
159.24,
160,
160,
160,
159.11,
159.09,
159.09,
158.62,
129.01,
160,
159.36,
159.36,
159.36,
160,
160,
159.86,
152,
152,
159,
159.2,
159.2,
79.75,
159,
158.98,
158.41,
1425.69,
158.41,
159,
160,
159.31,
159.99,
159.99,
158.23,
160,
159,
159.28,
318.56,
159.3,
159.31,
158.95,
159.6,
157.93,
158.97,
1419.66,
157.74,
157.74,
158,
160,
160,
160,
160,
158,
158,
160,
158.67,
158.7,
158.7,
159.15
],
"xaxis": "x",
"y": [
25750,
16000,
32000,
80000,
90000,
40000,
0,
35000,
106000,
170000,
210000,
25000,
59100,
0,
18750,
50000,
70000,
70000,
201120,
30000,
50490,
17500,
64000,
44000,
40000,
128000,
30000,
30000,
20000,
60000,
50000,
50000,
48000,
32000,
16000,
16000,
125000,
125000,
5700,
60000,
105400,
79050,
16000,
31100,
78000,
35000,
0,
73000,
35000,
23000,
30000,
6030,
0,
6030,
0,
6030,
20000,
20000,
6030,
30000,
73800,
65000,
100000,
40000,
30000,
25000,
85800,
85800,
188500,
188500,
40000,
61666,
32500,
56099,
20000,
20000,
49000,
170000,
36000,
36000,
13145,
130000,
30000,
35000,
192226,
192226,
65000,
20000,
112500,
32100,
32100,
80000,
80000,
138000,
117200,
25000,
45000,
140000,
1260000,
138000,
44300,
40000,
39545,
166650,
200000,
37230,
26000,
28000,
40000,
80000,
110000,
41600,
75000,
85000,
33360,
53476,
1436400,
159600,
185000,
35000,
40000,
39560,
0,
50000,
42000,
42000,
43000,
40000,
50000,
50000,
50000
],
"yaxis": "y"
}
],
"name": "1999"
},
{
"data": [
{
"hovertemplate": "RM=213 - Saltcoats<br>animation_frame=2000<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "213 - Saltcoats",
"marker": {
"color": "#636efa",
"symbol": "circle"
},
"mode": "markers",
"name": "213 - Saltcoats",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
160,
160.34,
160,
161,
161,
161,
159,
159,
159.44,
79.5,
155.33,
156,
157.09,
137.05,
53.32,
160.51,
125.46,
160,
160,
160,
159.61,
160,
159.63,
160.27,
160.32,
160,
159,
160,
160,
160,
160,
160,
160,
160,
160.35,
160.18,
160.18,
160,
159.88,
160,
121,
161,
161,
161,
161,
160,
160,
159.73,
160,
164,
164,
160,
160.07,
160.07,
160.07,
156.98,
156.98,
156.98,
160,
160,
160,
147,
158,
158,
160,
160,
160,
160,
160,
160.42,
160.42,
160.42,
153,
160,
160,
0,
0,
160,
160,
160,
160,
160.07,
159.97,
79.99,
160,
160,
158,
158.15,
0,
160
],
"xaxis": "x",
"y": [
30000,
181000,
35000,
30000,
44800,
44800,
35000,
25600,
77500,
17500,
11130,
18020,
121650,
0,
27766,
100000,
0,
45000,
65800,
40000,
45000,
20000,
58333,
224375,
303966,
26000,
32000,
25000,
25000,
45000,
45000,
54500,
44900,
65000,
76000,
68400,
101100,
40000,
166000,
35000,
29999,
42703,
36500,
36500,
35000,
20000,
120000,
200000,
40000,
56000,
56000,
45000,
126900,
127409,
187500,
88228,
110000,
171000,
16900,
16900,
16900,
55000,
56000,
56000,
34000,
38000,
36500,
34000,
32000,
80000,
110000,
202000,
45569,
25000,
35000,
55000,
130000,
40969,
49586,
49586,
88020,
160000,
100000,
44550,
49350,
44000,
0,
116700,
40000,
40000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=488 - Torch River<br>animation_frame=2000<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "488 - Torch River",
"marker": {
"color": "#EF553B",
"symbol": "circle"
},
"mode": "markers",
"name": "488 - Torch River",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
147.42,
147.42,
147.42,
147.42,
161,
160,
156,
161,
161,
161,
161,
159.87,
159,
159,
159,
159,
160,
160,
158,
157.95,
160,
160,
159,
159.08,
159,
158.44,
160,
160,
160.39,
160,
158,
157.83,
142.11,
8.96,
157.39,
157.39,
157.39,
151,
161,
161,
161,
160.65,
160,
160.13,
160.13,
158.68,
160,
161,
161.01,
160,
160,
160,
160,
159.85,
159.85,
159.86,
78.71,
160,
160,
158,
158.16,
79.56,
159.12,
160,
160,
160,
158,
158,
157.8,
159,
157.41,
144.39,
160,
160.29,
160.29,
160.26,
160,
159.58,
160,
0,
160,
160.21,
320.42,
160.21,
160,
160,
160.14,
159,
159,
159,
159.84,
159.84,
79.92,
159.52,
160,
160,
160,
159.67,
80,
160,
160,
159.67,
159.67,
159.67,
160,
160,
149,
159.11,
148.24,
159,
159.17,
160,
160,
160.47,
160,
160,
160.32,
160.32,
160.32,
159.87,
160,
160,
159.64,
319.28,
159.64,
160,
159.54,
159,
160,
159.92,
160,
160,
160,
159,
160,
160,
160,
159.71,
159.71,
160,
160,
159.16,
160,
160,
160,
160,
160,
159.66,
160.48,
160,
160,
160,
159.46,
160,
160.04,
161,
161,
161,
160.66,
160.66,
160,
160,
160,
160,
159.98,
159,
79.64,
159,
159,
159,
159,
160,
160,
160,
160,
160,
159.58,
159,
158.77,
158.77,
160,
159.47,
160,
162,
80,
160,
160.2,
160,
160,
160.06,
160.06,
159,
159,
159.68,
159.68,
160,
160,
160,
160,
160,
160.19,
160.19,
160.21,
159.91,
159.91,
160,
159,
159,
160,
160,
160.2,
155.21,
160,
160,
160,
160.49,
160.49,
159,
159.39,
159.39,
155.76,
159,
160.3,
160,
160,
160,
79.87,
160.53,
160.53,
160,
160,
160,
159.92,
160,
79.31,
39.65,
79.5,
79.5,
157.43,
157.43,
157.43,
78.72,
160,
160,
160,
160,
160,
0,
0,
0,
0,
0
],
"xaxis": "x",
"y": [
147000,
147000,
340400,
340400,
76000,
0,
0,
10000,
15000,
30000,
40000,
47000,
70000,
50000,
50000,
50000,
30000,
27600,
46000,
43000,
19000,
19000,
26910,
75000,
34000,
416000,
36900,
45000,
120000,
23440,
23440,
52500,
80000,
1000,
0,
20000,
0,
120000,
40000,
40000,
40000,
101000,
93500,
235435,
261690,
112500,
45000,
37650,
100000,
31000,
38000,
40000,
69480,
168155,
286600,
111000,
22500,
25000,
25000,
38750,
416000,
100000,
200000,
27000,
25000,
0,
35000,
62000,
57500,
65250,
495600,
0,
61000,
61000,
200000,
100000,
50000,
50000,
62500,
21000,
60000,
48000,
96000,
135000,
13500,
13500,
225000,
32000,
32000,
32000,
134900,
134900,
50000,
375000,
95000,
28840,
42000,
202875,
21000,
35000,
55617,
76122,
76122,
133060,
25500,
50381,
65200,
160000,
225000,
50000,
119807,
30000,
46000,
86976,
18000,
18000,
70000,
67000,
67000,
44000,
69500,
40000,
58000,
116000,
135000,
75300,
170000,
60000,
30000,
95600,
25000,
25000,
20000,
25000,
27000,
10000,
10000,
45320,
47368,
37000,
35500,
12375,
0,
39840,
39840,
46000,
60000,
290000,
95000,
18000,
18000,
18000,
72560,
89750,
235302,
6000,
45405,
42200,
140000,
220000,
40000,
66000,
66000,
45000,
159000,
71000,
110000,
33040,
53000,
53000,
40000,
60000,
9000,
16000,
40000,
75000,
78333,
25000,
22250,
22250,
60000,
118080,
7000,
92500,
16664,
50000,
113200,
38640,
38640,
29535,
29535,
9770,
55000,
195000,
220000,
35000,
25000,
30000,
43650,
40000,
188800,
140000,
87000,
91500,
100000,
31000,
13000,
25600,
66000,
66000,
240000,
0,
60000,
47000,
41400,
168155,
166600,
85250,
234361,
260497,
217000,
26500,
158300,
0,
21000,
50000,
45000,
60000,
77500,
15000,
20000,
65000,
148000,
35000,
65000,
32500,
12250,
12250,
65000,
92000,
92000,
46000,
0,
52900,
20000,
20000,
23000,
0,
0,
55000,
55000,
260000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=336 - Sasman<br>animation_frame=2000<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "336 - Sasman",
"marker": {
"color": "#00cc96",
"symbol": "circle"
},
"mode": "markers",
"name": "336 - Sasman",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
160,
79,
159.44,
157,
156.89,
157,
156,
159,
158.61,
160,
160.21,
160,
160,
160,
160.33,
145.09,
145.09,
124,
123.7,
12.14,
159,
160,
159.03,
159.03,
160,
161,
161,
158.79,
159,
159,
160,
160.19,
160,
159.05,
160,
142.28,
160,
160,
159,
160,
159.03,
160,
161,
160.74,
160.74,
160.7,
159.06,
160,
160,
92,
159,
155,
160,
159,
79.68,
79.68,
79.68,
158.97,
158.97,
160,
161,
161,
160.6,
160.6,
160,
160,
160,
160.61,
160,
160,
159,
159,
159.13,
159.13,
159.13,
160,
158.97,
119,
141.32,
158.19,
160.27,
160.27,
160,
160,
153.75,
158.97,
158,
0,
85,
160,
160,
158,
158,
158,
160,
159.16,
158.66,
159.54,
159.54,
161,
161,
158,
157.76,
160.15,
160.15,
0,
152,
152.1,
160,
160,
160,
137.87,
137.87,
160,
159.78,
0,
0,
153,
153,
152.9,
159,
159,
160,
154,
153.69,
153.69,
153.69,
160,
160,
160,
159.63,
160,
160,
147,
147,
160
],
"xaxis": "x",
"y": [
26500,
0,
0,
0,
400000,
60000,
0,
39500,
72000,
45500,
100000,
45000,
50900,
46000,
59000,
35000,
35000,
1,
78500,
78500,
50000,
50000,
112500,
192000,
36000,
36000,
36000,
50000,
50000,
76600,
50000,
50000,
50580,
20600,
46200,
31430,
48500,
97500,
55000,
40500,
78400,
36000,
100000,
300000,
288056,
160200,
100000,
30000,
30000,
32700,
1,
49480,
31000,
37000,
62500,
62500,
62500,
29000,
32000,
67500,
25000,
25000,
36000,
36000,
55000,
55000,
60000,
100000,
33600,
70001,
70000,
50000,
155000,
341000,
341000,
25000,
12000,
98240,
123802,
150000,
100000,
100000,
37500,
37500,
63150,
29000,
0,
40000,
69593,
60000,
50000,
34000,
34000,
50000,
5000,
60000,
185000,
175000,
175000,
54000,
90000,
60000,
60000,
50400,
50400,
2,
0,
300000,
60000,
60000,
42000,
90000,
250000,
44200,
210000,
70000,
70000,
128600,
165500,
273300,
50000,
45000,
60000,
38500,
45000,
45000,
150000,
33069,
22980,
24900,
114912,
130896,
36500,
47808,
47808,
30000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=215 - Stanley<br>animation_frame=2000<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "215 - Stanley",
"marker": {
"color": "#ab63fa",
"symbol": "circle"
},
"mode": "markers",
"name": "215 - Stanley",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
150,
149.75,
161,
159.96,
79.98,
79.98,
159.96,
166.65,
166.65,
158.05,
157.17,
157.17,
316.48,
160,
160,
157.52,
160,
160,
160,
159.84,
159.32,
159.32,
159.32,
159,
159.93,
161.11,
161.11,
160,
159.4,
161,
159.27,
156.18,
156.18,
156.18,
160,
160,
160,
149.23,
0.6,
149.23,
164,
160,
161,
160.68,
135.39,
135.39,
135.39,
14,
160.59,
162,
159,
158.63,
158.63,
158.63,
158.63,
160,
160,
155,
155,
154.83,
159.97,
159,
0,
0,
318.58,
159,
159,
160,
160,
160,
160,
158.84,
159.65
],
"xaxis": "x",
"y": [
27950,
92000,
59870,
50000,
25000,
25000,
50000,
50000,
82300,
36000,
45000,
45000,
300000,
17000,
49500,
148000,
45000,
41650,
71586,
55000,
207300,
207300,
285000,
200000,
20000,
30000,
120600,
23680,
158840,
80000,
139500,
131500,
131500,
130000,
30000,
16320,
95000,
97000,
1000,
96000,
43000,
30000,
80000,
150000,
20000,
26000,
26000,
0,
165350,
42000,
58000,
100000,
155000,
155000,
155000,
38960,
37500,
40000,
46500,
124750,
43920,
40000,
33000,
33000,
200000,
60000,
60000,
22120,
26250,
56700,
32000,
186000,
100000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=247 - Kellross<br>animation_frame=2000<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "247 - Kellross",
"marker": {
"color": "#FFA15A",
"symbol": "circle"
},
"mode": "markers",
"name": "247 - Kellross",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
158.85,
157,
43,
43.46,
155,
155,
155,
155,
160,
160,
159,
159,
159,
159.39,
160,
158.94,
29,
106,
29,
106,
155,
160,
160,
158,
158.1,
158.1,
160,
160,
160,
160,
160,
160,
160,
159.84,
99,
160,
158.97,
157,
160,
156.5,
155.91,
160,
159.61,
159.61,
159.02,
158.06,
158,
160,
157,
157.3,
157.3,
159,
159,
160,
160,
160.15,
160.15,
160.15,
149,
149,
148.65,
148.65,
160,
160.1,
159.67,
22.64,
159,
159,
159,
158.98,
160,
160,
158.61,
158.61,
158.61,
159.08,
159.08,
159.08,
160,
160,
159,
0,
159,
159,
158,
158,
158,
158,
160,
158.75,
158.13,
160,
160,
158.6,
158.6,
157,
143,
143.15
],
"xaxis": "x",
"y": [
0,
46667,
65000,
100000,
85000,
86250,
0,
34540,
40000,
45000,
50000,
50000,
50000,
50000,
45000,
155000,
4600,
17000,
4600,
17000,
40000,
47000,
47000,
25000,
42100,
55000,
32700,
32700,
29500,
30000,
30000,
32000,
27000,
150000,
25000,
32000,
50000,
37610,
20000,
25000,
63000,
40000,
171523,
171523,
30000,
110000,
42000,
29217,
40000,
41400,
100000,
34000,
34000,
25900,
25900,
100000,
102800,
118141,
40000,
40000,
60000,
50000,
50000,
50000,
21000,
5200,
35000,
30000,
80000,
80000,
36100,
22500,
12964,
12964,
12964,
300000,
300000,
18900,
25000,
0,
46667,
0,
40630,
96000,
50000,
67500,
67500,
200000,
27500,
29670,
29670,
37000,
20000,
75000,
36500,
36500,
52800,
52800
],
"yaxis": "y"
},
{
"hovertemplate": "RM=070 - Key West<br>animation_frame=2000<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "070 - Key West",
"marker": {
"color": "#19d3f3",
"symbol": "circle"
},
"mode": "markers",
"name": "070 - Key West",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
116,
116.17,
160.35,
160.35,
160.23,
159.35,
159.35,
0,
159.22,
118.85,
118.85,
160,
160,
160,
160,
160,
160,
160,
159.05,
158.96,
160,
160,
159.91,
157.89,
158,
158,
158,
160,
160,
159.51,
156.89,
40.25,
158.97,
158.97,
160,
160,
159.92,
159.02,
160,
160,
159,
159,
160,
160,
39.5,
160.71,
160,
123.05,
123.05,
159.5,
159.5,
160,
158.97,
159,
158.67,
160,
159.75,
159.75,
115.66,
115.66,
161,
160,
159.98,
160,
160,
160,
159.53,
159.53,
160,
160,
160,
160,
160,
160.13,
158.9,
159,
159,
160,
139.14,
160,
160,
159.95,
159.95,
160,
159.68,
159.91,
159,
159,
159,
151,
5,
156,
160,
160,
160,
159.84,
160,
160,
160,
160,
160,
159.81,
159.81,
159.66,
159.66,
159.66,
159.66,
157,
156.61,
160,
160,
160,
159.56,
159.7
],
"xaxis": "x",
"y": [
0,
61100,
98000,
75000,
145200,
0,
45000,
0,
168000,
35000,
35000,
17000,
18000,
30000,
13100,
19900,
48000,
16450,
20000,
172500,
35000,
30000,
66000,
19200,
35000,
46500,
25500,
50200,
50260,
300000,
228800,
13000,
32500,
40000,
25000,
30000,
139300,
32500,
30000,
28000,
45000,
42000,
135000,
135000,
13000,
55000,
88000,
113750,
92750,
160000,
153900,
29000,
49748,
37267,
119646,
27900,
48060,
72500,
80000,
95000,
15000,
15000,
152140,
30000,
30000,
73640,
70000,
94900,
25000,
62400,
35000,
120000,
84500,
296750,
19000,
55000,
55000,
33800,
0,
24800,
25000,
80667,
80667,
30000,
77000,
52000,
20000,
45000,
77655,
40000,
3000,
43000,
61400,
66275,
30000,
100000,
25000,
25000,
30000,
75000,
75000,
90000,
90000,
45200,
100000,
102500,
139000,
0,
28000,
19900,
38400,
38400,
228800,
18500
],
"yaxis": "y"
},
{
"hovertemplate": "RM=184 - Grayson<br>animation_frame=2000<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "184 - Grayson",
"marker": {
"color": "#FF6692",
"symbol": "circle"
},
"mode": "markers",
"name": "184 - Grayson",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
160,
159.98,
159.98,
162,
162,
160,
160,
160,
160,
160,
159,
160,
160,
159,
159.31,
159,
158.85,
156,
156,
160,
160,
159,
158.93,
160.36,
160,
164,
162,
80.91,
154.4,
154.4,
159,
159,
159.1,
160,
159,
159,
159.38,
160,
159.7,
159.7,
160,
162.59,
160,
159,
160,
160,
160,
160,
160,
159,
154.41,
154.41,
160,
161,
160.5,
161,
160,
160,
159.98,
110,
75,
41,
116.21,
159.3,
160,
159.82,
160,
159.28,
158,
0,
158,
159,
1420.38,
157.82,
163,
163,
162,
160,
161,
160,
160,
160,
161,
161,
161,
161.25,
160,
159.71,
154,
154.06,
160,
158.78,
106.67,
160,
160,
164,
160.95,
160.46,
160,
150.3,
150.3,
160,
160,
160,
160,
160.06,
160,
160,
160,
160,
160,
160,
154,
160,
160.04,
160.04,
150.26,
151.52,
159.72,
158,
160,
157,
160,
160,
160,
160,
159.4,
160,
160,
161,
161,
0,
160,
163,
160,
159.86,
156.17,
156.17,
159.38,
159.38,
159.38,
151,
151.36,
160
],
"xaxis": "x",
"y": [
25000,
140000,
140000,
26316,
26316,
28999,
28999,
29000,
29000,
0,
26000,
23500,
27250,
28000,
220000,
39255,
155000,
40000,
31750,
32400,
32410,
40000,
125000,
393000,
37350,
37350,
42500,
96963,
40000,
40000,
31220,
31220,
130000,
40000,
32000,
100000,
112790,
25000,
135000,
154750,
27000,
130000,
35760,
35760,
63734,
63734,
29910,
14750,
29910,
42500,
60000,
60000,
32500,
45000,
90000,
40000,
0,
100000,
112790,
23500,
14040,
9360,
145000,
200000,
35000,
136000,
36182,
24000,
20000,
0,
20000,
66600,
1350000,
150000,
0,
27000,
42500,
43600,
39000,
50000,
50000,
56875,
17700,
17700,
21000,
75600,
32000,
170000,
35000,
105000,
25000,
17500,
11664,
30000,
30000,
66600,
66963,
0,
40000,
0,
110000,
40000,
40000,
115000,
35000,
105000,
0,
38990,
38990,
34300,
34300,
34080,
38000,
50450,
60000,
60000,
29333,
62050,
28200,
75000,
15000,
14500,
40000,
40000,
0,
40000,
90000,
38430,
38430,
35000,
35000,
35000,
32110,
36000,
28000,
112500,
43843,
43843,
26000,
24250,
24500,
45000,
182500,
25000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=276 - Foam Lake<br>animation_frame=2000<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "276 - Foam Lake",
"marker": {
"color": "#B6E880",
"symbol": "circle"
},
"mode": "markers",
"name": "276 - Foam Lake",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
144,
160,
155.19,
155.19,
152,
4,
3.79,
160,
160,
145,
145,
145,
145,
160,
159.96,
120.97,
160,
159.89,
160,
160,
160,
159.98,
159.98,
79.5,
159,
158.94,
155,
154.57,
155.45,
155.45,
154.71,
151.68,
151,
6,
158.2,
160,
160,
160,
160,
160,
156.01,
156,
156,
156,
155.59,
159,
159,
160,
149.62,
159,
159,
155.55,
155,
154.86,
4.39,
149,
149.09,
155.44,
160,
160,
160.25,
159,
159.73,
159.73,
149.23,
149.23,
160,
159.9,
159.9,
160,
152,
152.05,
160,
159,
160,
160,
150.91,
155.44,
155.44,
155.44,
154.81,
160,
0,
135,
160,
161,
160.61,
160,
155.02,
155,
155,
111.45,
160,
159,
159,
159.32,
158,
158,
79,
160,
159.65,
160,
160,
154,
154.06,
160,
159,
158.83,
158.83,
160,
10.63,
160,
159,
160,
79.5,
159.21,
160,
159,
159,
154.44,
154.61,
132,
149.35,
149,
148.99,
148.99,
158.61,
158.61,
158.62,
160,
155.36,
160,
159,
158.8,
158.8,
160,
160,
159.52,
159.32,
160,
160,
160.09,
158,
157.83,
155.45,
154,
154,
154.29,
66.67,
158.96,
140,
140,
155,
155.12,
1,
146,
4
],
"xaxis": "x",
"y": [
65422,
0,
126000,
126000,
0,
0,
375,
45000,
65000,
30700,
15350,
15350,
30700,
8000,
19000,
75000,
25000,
167900,
33300,
33300,
50000,
80000,
150000,
17500,
50000,
40000,
25000,
132000,
0,
68750,
106000,
40000,
44850,
738,
112725,
56000,
53700,
26850,
53700,
22000,
23800,
23800,
38000,
40000,
120000,
51000,
15350,
33500,
97240,
40000,
65000,
40000,
50000,
185680,
1200,
40000,
42845,
93000,
42000,
0,
20000,
87000,
111375,
111375,
35000,
89200,
33750,
97000,
103400,
25000,
0,
45000,
45000,
40000,
35000,
36000,
25000,
40000,
40000,
40000,
200000,
70000,
22000,
30000,
42960,
65578,
171867,
14915,
15500,
25000,
30000,
49000,
23333,
35000,
40000,
63000,
61500,
55000,
71000,
52059,
139000,
26730,
31000,
79877,
166000,
30000,
62000,
79000,
150000,
75000,
0,
18000,
51400,
20000,
19000,
135000,
30000,
35000,
56666,
55000,
140000,
57566,
30000,
58000,
68200,
128000,
150000,
150000,
75000,
58320,
35000,
40000,
25960,
52400,
52400,
25000,
102580,
136400,
85000,
40000,
40000,
45000,
45900,
45900,
35000,
35000,
35000,
170000,
80000,
75000,
0,
51000,
0,
96744,
0,
0,
0
],
"yaxis": "y"
},
{
"hovertemplate": "RM=305 - Invermay<br>animation_frame=2000<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "305 - Invermay",
"marker": {
"color": "#FF97FF",
"symbol": "circle"
},
"mode": "markers",
"name": "305 - Invermay",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
158,
158.52,
159.28,
159,
159,
158.59,
12.15,
70.75,
84.78,
84.82,
160,
0,
0,
146.71,
160.5,
160.5,
160.5,
158.97,
78.92,
79.5,
160,
160,
160,
159.75,
160,
160,
160,
160,
160,
160,
160,
159,
158.81,
160,
159.85,
159,
161,
160.88,
160,
161,
161,
161,
160,
160,
160,
118,
141,
23,
141.17,
141.17,
141.17,
160,
160,
160,
160,
160,
160,
160,
159.51,
160,
160,
160,
160,
160.04,
160.04,
120.03,
40.01,
159,
159,
160,
159,
149,
159.66,
160,
160,
159.88,
157.37,
160,
159,
159.43,
160,
159,
159,
159,
160.25,
160,
161,
159,
158,
160,
159.5
],
"xaxis": "x",
"y": [
16000,
52500,
25000,
16000,
47650,
85000,
0,
0,
38500,
82500,
28000,
1000,
33000,
87200,
50000,
102000,
107000,
24000,
0,
11300,
40000,
40000,
49920,
236000,
26000,
22000,
30000,
32000,
32000,
32000,
1,
40000,
165000,
30000,
30000,
55000,
20000,
120000,
12000,
42400,
42400,
42400,
50000,
20000,
20000,
42000,
50100,
8100,
70000,
70000,
217500,
15500,
35000,
36000,
36000,
45000,
30000,
65000,
274440,
25000,
11000,
21000,
21000,
60000,
60000,
150000,
37500,
40000,
40000,
55000,
70000,
50000,
277000,
40000,
70000,
60000,
35900,
20000,
35000,
150000,
40000,
46060,
44000,
80000,
74400,
20440,
30000,
22600,
69000,
43520,
236000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=100 - Elmsthorpe<br>animation_frame=2000<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "100 - Elmsthorpe",
"marker": {
"color": "#FECB52",
"symbol": "circle"
},
"mode": "markers",
"name": "100 - Elmsthorpe",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
156,
160,
161.49,
161.49,
160,
158.78,
160.1,
160,
160,
159.18,
159,
52.93,
160,
160,
159.6,
159.6,
160,
160,
159.46,
160.43,
80,
159.29,
160,
156.65,
78.33,
160,
159.54,
159.54,
161,
160.72,
160.72,
160,
159,
160,
160,
159.39,
160,
158.69,
158.69,
159,
159,
161,
162,
162,
160,
143.44,
156.77,
156,
147,
9,
156,
90,
158,
160,
160,
166,
165.7,
160,
160,
160,
158.97,
149,
7,
156,
156,
156,
159,
159,
158.86,
160,
160,
158.97,
158.97,
158,
157,
157.57,
157.37,
159.04,
159.04,
160,
160,
157,
157.49,
157.49,
160,
160,
159.98,
160,
160,
160.25,
160.25,
160.34,
162.35,
162.35,
158.71,
158.71,
159,
149,
159.02,
160,
160,
159.79,
160,
159,
158.84,
160,
158.79,
79.4,
79.4,
70.2,
70.2,
160,
160,
160,
160,
159
],
"xaxis": "x",
"y": [
25000,
55500,
75000,
92316,
37200,
100265,
99852,
11000,
43390,
107600,
32900,
10967,
33177,
35000,
168360,
168360,
15000,
20000,
46000,
314860,
50000,
197400,
48000,
48000,
24000,
28000,
68890,
68890,
14000,
148716,
148716,
20000,
66980,
40324,
39000,
209500,
32000,
123000,
123000,
54200,
54200,
37320,
35250,
35250,
160000,
0,
40000,
0,
0,
0,
60000,
10000,
25000,
22000,
22000,
30200,
60800,
60000,
16750,
16750,
29260,
0,
0,
0,
80000,
80000,
53336,
35000,
157500,
31000,
31000,
135000,
135000,
81092,
58080,
44000,
106230,
0,
48000,
58500,
21542,
40000,
110000,
110000,
20000,
30000,
40000,
51500,
50152,
68400,
125000,
94450,
30000,
30000,
35000,
35000,
44400,
0,
33900,
32358,
60000,
136135,
26077,
40000,
110000,
28600,
266500,
175000,
175000,
0,
0,
45000,
0,
69190,
0,
35000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=275 - Insinger<br>animation_frame=2000<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "275 - Insinger",
"marker": {
"color": "#636efa",
"symbol": "circle"
},
"mode": "markers",
"name": "275 - Insinger",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
159.4,
160,
160.26,
159.39,
159.39,
159.39,
144.51,
159,
159.29,
160,
160,
160,
159.05,
160,
161.27,
159,
160,
0,
0,
160,
160,
159,
159.27,
159.37,
159.37,
159.37,
159.37,
160,
160,
159,
159,
159.19,
319.3,
160,
160,
83,
83,
82.63,
119,
119,
160,
159.65,
159.26,
159.26,
160,
160,
160,
159.36,
159,
159,
159,
121.91,
159,
159.31,
1436.13,
159.57,
159.67,
159.67,
160,
160,
160,
160,
160,
160,
160,
160,
159.51,
159.51,
157.2,
157.2,
160,
159.7,
319.4,
159.7,
159,
159,
159.14,
159.14,
159,
159,
159,
159.13,
159.13,
159.67,
159.67,
159.67,
160,
160,
160,
160,
159.75,
159.75,
155,
160,
160,
160,
160,
160,
159,
143,
143.12,
71.5,
159,
160
],
"xaxis": "x",
"y": [
380000,
70000,
100000,
26000,
61400,
130000,
0,
40800,
15000,
20667,
0,
16800,
62400,
37000,
250000,
25000,
30000,
900,
900,
25000,
25000,
110000,
295000,
45000,
81000,
81000,
81000,
13250,
0,
30000,
35000,
97000,
82000,
72000,
4051350,
24600,
24600,
24600,
15000,
15000,
10000,
85400,
163000,
165000,
20000,
23000,
32080,
135000,
31000,
31000,
31000,
0,
50000,
50000,
1350000,
150000,
76000,
86900,
40000,
40000,
40000,
40000,
50000,
60000,
50000,
50000,
98000,
98000,
172000,
165000,
24920,
33200,
66400,
83000,
68000,
69285,
78865,
102341,
37000,
37000,
37000,
125000,
200000,
500,
66250,
65000,
47840,
56976,
50000,
50000,
98000,
98000,
51257,
13500,
27000,
70000,
85000,
80000,
22570,
84800,
55000,
42400,
25000,
44000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=250 - Last Mountain Valley<br>animation_frame=2000<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "250 - Last Mountain Valley",
"marker": {
"color": "#EF553B",
"symbol": "circle"
},
"mode": "markers",
"name": "250 - Last Mountain Valley",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
160,
160,
148.47,
159,
159,
159,
158.86,
158.86,
159,
159,
159.29,
159,
160,
1437.12,
159.68,
159.68,
159.32,
159.32,
158.46,
158.46,
158.46,
101,
101,
101.77,
160.3,
160.3,
160,
159.29,
160,
159.53,
160,
160,
160,
117,
159,
160,
160,
108.14,
108.14,
159.55,
160,
160,
151.92,
151.92,
151.92,
67.67,
152.92,
74,
160,
158.9,
160,
160.7,
160.7,
160.7,
160,
160,
159.8,
159,
159.34,
159.34,
160,
160,
160,
160,
160.02,
159.19,
159,
159.28,
159.28,
160,
159,
160,
159.51,
160,
159,
159,
100.3,
158.93,
159.4,
159.4,
159,
159,
159,
160,
159.28,
160,
159,
158.81,
158.81,
160,
160,
159.8,
159,
159,
159,
157.31,
157.31,
157.31,
160,
160
],
"xaxis": "x",
"y": [
25000,
39000,
77500,
49400,
49400,
49400,
96000,
96000,
38000,
28500,
71600,
22500,
50000,
1436400,
159600,
155000,
40000,
40000,
40000,
40000,
166605,
0,
30000,
97354,
125000,
160000,
60000,
87500,
25000,
140000,
25900,
25900,
420500,
300,
20000,
32000,
32000,
150000,
150000,
100,
34438,
14000,
30000,
30000,
45000,
0,
15000,
0,
35000,
40000,
25000,
35000,
193440,
193440,
25000,
42500,
133000,
20000,
113400,
87900,
42000,
42000,
42000,
36115,
74600,
160000,
37000,
32000,
32000,
31760,
18900,
24750,
100000,
40000,
8500,
25000,
12500,
173333,
150000,
150000,
48000,
48000,
40000,
50000,
110000,
35000,
25000,
131200,
85050,
19000,
30000,
80000,
32890,
32890,
40000,
65000,
65000,
161530,
58000,
40000
],
"yaxis": "y"
}
],
"name": "2000"
},
{
"data": [
{
"hovertemplate": "RM=213 - Saltcoats<br>animation_frame=2001<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "213 - Saltcoats",
"marker": {
"color": "#636efa",
"symbol": "circle"
},
"mode": "markers",
"name": "213 - Saltcoats",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
160,
160,
136,
176,
176,
160,
160,
160,
160,
159.89,
159.89,
159.89,
158.93,
158.93,
119.96,
160.11,
160,
148.55,
156,
156.45,
161.02,
172,
85.98,
82.59,
82.59,
166,
164,
164,
160,
159.74,
159.74,
159.74,
121,
242.02,
160,
161,
161,
150.8,
150.8,
159.75,
160,
161,
161,
161.37,
161.08,
176,
160.09,
160.06,
160.41,
160.41,
160.41,
161.24,
161.24,
160,
160,
138.88,
120,
120,
120,
38.7,
38.7,
80.77,
38.7,
177,
177,
174,
174,
160,
160.09,
160.09,
160.09,
160,
160,
160,
159,
159.46,
159,
160,
320.22,
156.29,
174,
175,
174,
159.77,
159.77,
159.77,
160,
161,
160,
160,
160,
301.86,
171,
0,
173.89,
140.6,
139.97,
160,
159.63,
159.63,
160.03,
159.94
],
"xaxis": "x",
"y": [
21550,
25000,
0,
0,
30000,
33333,
33333,
33333,
0,
81000,
81000,
150000,
270000,
275000,
83500,
204391,
40870,
92840,
60000,
100000,
125000,
0,
110000,
0,
0,
56000,
0,
56000,
26000,
123700,
127409,
187500,
0,
75000,
28000,
41175,
41175,
0,
499313,
92550,
40390,
77033,
82100,
230000,
317170,
0,
160000,
157500,
56992,
100000,
172000,
199800,
240000,
37235,
15000,
20500,
0,
20600,
20600,
78500,
78500,
78500,
81000,
0,
83700,
27000,
50207,
25000,
75000,
150000,
150700,
40000,
39000,
32000,
55000,
174000,
40000,
135000,
590000,
42800,
0,
26580,
31000,
75000,
150000,
176000,
40000,
141000,
35000,
35000,
40000,
150000,
0,
0,
35000,
0,
176000,
24000,
15000,
90000,
204403,
200000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=488 - Torch River<br>animation_frame=2001<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "488 - Torch River",
"marker": {
"color": "#EF553B",
"symbol": "circle"
},
"mode": "markers",
"name": "488 - Torch River",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
119,
118.85,
148,
148,
148,
158.91,
158.91,
155,
160,
160,
158,
159,
159,
152,
152,
159.02,
160,
159.65,
160,
160,
158.97,
158.97,
158.57,
157,
157,
157,
157.28,
160,
80,
159.81,
156,
156,
157,
157,
156.88,
156.88,
156.88,
159.68,
159.68,
158.96,
59.1,
59.1,
158.76,
158.76,
158.97,
158.97,
161,
160,
160,
160,
160,
160,
160,
159,
159.24,
159.24,
160,
160,
160,
160,
160,
160,
160.2,
158.97,
159.79,
160,
159,
159,
159,
160,
80.02,
158,
158.32,
159.74,
159.74,
159,
159.36,
159,
159.19,
159.19,
160,
159,
160,
160,
160,
29.89,
159.81,
160,
159,
158.81,
158.81,
159,
79.56,
160,
160,
159.69,
159,
160,
159.74,
158.11,
153.11,
158,
158.01,
158.01,
160,
160,
160,
160,
158.55,
150,
150,
150,
150,
159.31,
160,
159.75,
159.75,
159.17,
158,
160,
160,
31.99,
31.99,
80,
80,
159.66,
159.66,
159,
159,
160,
159.49,
103.69,
154.22,
156.86,
156.86,
145.55,
158.63,
158,
158.5,
158.5,
159,
158,
157.93,
158.97,
158,
158.2,
158.91,
158.91,
160,
160,
160,
157.94,
160,
160,
160,
159,
79.58,
79.58,
160,
0
],
"xaxis": "x",
"y": [
31500,
71685,
84000,
84000,
91250,
50000,
50000,
50000,
67000,
60000,
80000,
45000,
45000,
0,
168000,
60000,
35000,
117000,
32000,
29000,
8000,
0,
210000,
32000,
40000,
30000,
90000,
31500,
27500,
1,
14000,
14000,
40000,
40000,
112600,
112600,
112600,
49653,
117240,
125000,
0,
60000,
23200,
66720,
0,
55000,
16000,
60000,
225000,
32000,
34000,
34000,
34000,
50000,
120000,
217675,
45000,
8160,
35000,
35000,
35000,
35000,
5000,
18158,
40000,
5000,
32000,
32000,
15000,
31500,
71000,
28000,
93500,
49653,
117240,
42626,
192500,
39300,
103000,
103000,
4000,
57200,
55000,
55000,
55000,
1,
30000,
36600,
87000,
168155,
248200,
71000,
66000,
28000,
7500,
75000,
110000,
15000,
68000,
285000,
185000,
88694,
232317,
258224,
40000,
0,
60000,
120000,
80000,
0,
37400,
37400,
37400,
47500,
35000,
113400,
214800,
43000,
237500,
8170,
6500,
22000,
22000,
22500,
40000,
90000,
90000,
24000,
30000,
9000,
45000,
1,
55900,
245800,
245800,
35000,
34159,
65000,
65000,
204000,
60300,
60000,
80000,
4444,
41200,
310000,
90000,
90000,
50000,
46200,
60000,
15000,
25000,
14500,
14500,
25000,
25000,
25000,
23700,
60000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=336 - Sasman<br>animation_frame=2001<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "336 - Sasman",
"marker": {
"color": "#00cc96",
"symbol": "circle"
},
"mode": "markers",
"name": "336 - Sasman",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
159.39,
159,
0,
159,
159,
159,
156.91,
157.03,
164.5,
162.94,
162.94,
157.72,
160,
159.1,
63.64,
142.7,
143,
155.69,
155.58,
160,
159.51,
159.51,
142.41,
0,
20.52,
159.4,
159,
163.31,
164.3,
163,
163.21,
161.82,
156.81,
62.72,
160,
160.04,
158,
157,
156.57,
156.57,
154,
155.29,
158.97,
158.72,
145.39,
133,
133,
159,
159,
159,
162.3,
161,
164.4,
149.98,
163.8,
158,
158.97,
158,
139,
139,
152.26,
160,
160,
79.64,
79.64,
159.3,
157.31,
157.31,
160.84,
163.48,
163,
163.41,
164.01,
164.01,
163,
159.51,
159.51,
160,
160,
160,
155.22,
159,
158.65,
159,
159,
159.33,
159.33,
159.33,
159.4,
159,
159.24,
160.74,
160.72,
163.91,
163.91,
163,
160,
319.32,
157.93,
160,
152,
152,
143,
160,
160,
159,
159.2,
156,
156,
156,
160,
163.76,
116
],
"xaxis": "x",
"y": [
191900,
41850,
49000,
49000,
49000,
49000,
0,
49000,
55000,
40300,
44000,
41975,
45000,
35000,
14000,
30667,
116971,
35000,
148191,
35000,
80000,
228200,
42500,
2500,
0,
40000,
60000,
60000,
50000,
52000,
275000,
50000,
60000,
24000,
27540,
82118,
80000,
0,
44000,
35000,
225000,
30000,
32000,
320000,
17400,
28000,
28000,
50000,
50000,
50000,
18000,
95000,
35000,
35000,
47000,
75000,
30000,
0,
56000,
56000,
94200,
60000,
24000,
50000,
33350,
44900,
0,
50267,
81346,
50000,
50000,
275000,
26000,
26000,
41800,
5500,
150000,
48200,
48240,
48240,
37000,
63500,
276000,
30000,
30000,
30000,
30000,
56000,
34000,
34000,
250000,
40000,
230000,
275000,
275000,
210000,
0,
166000,
216000,
55000,
50000,
41000,
50500,
53000,
40000,
45000,
131000,
75000,
75000,
141000,
35000,
24000,
41200
],
"yaxis": "y"
},
{
"hovertemplate": "RM=215 - Stanley<br>animation_frame=2001<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "215 - Stanley",
"marker": {
"color": "#ab63fa",
"symbol": "circle"
},
"mode": "markers",
"name": "215 - Stanley",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
160,
152,
160,
160,
160,
160,
161,
6.28,
160,
159.63,
160,
160,
155.59,
151,
160.59,
158.79,
160,
160,
159,
159,
159,
159,
160,
149,
152.29,
153,
152.79,
160,
154.35,
161,
159.2,
160,
160,
160,
160,
159.27,
158.85,
158.85,
158.85,
158.85,
157,
0,
113,
113,
113,
112.8,
112.8,
112.8,
112.8,
146,
128,
16,
2,
145.48,
145.48,
145.48,
160,
160,
160,
160,
162,
162,
159,
150.05,
149,
151.6,
151.6,
150.2,
160,
159,
159,
160,
154.3,
160,
154,
153.98,
151.13,
151.13,
153.4,
135.02,
0,
133,
160.85,
160,
160,
160,
159.85,
79.93,
79.93,
159.85,
160,
160,
160
],
"xaxis": "x",
"y": [
33500,
92000,
6000,
6000,
13500,
38000,
55000,
1000,
54000,
100000,
22000,
14000,
81445,
42500,
150000,
25180,
21000,
45000,
40000,
35000,
35000,
35000,
32000,
60000,
15700,
45000,
100000,
34000,
140100,
50000,
100000,
22000,
67000,
77900,
200000,
30000,
36132,
36132,
50000,
50000,
50000,
20000,
30000,
50000,
50000,
55182,
80214,
161070,
161000,
38990,
196000,
3300,
700,
222105,
242500,
242500,
45313,
50000,
28750,
27000,
380000,
38000,
25000,
0,
35000,
3000,
140676,
148000,
50000,
36000,
42500,
25000,
100000,
42500,
35000,
65000,
38000,
21000,
157650,
19080,
1,
19000,
150000,
36600,
75000,
38900,
60000,
30000,
30000,
60000,
32000,
35000,
29000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=247 - Kellross<br>animation_frame=2001<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "247 - Kellross",
"marker": {
"color": "#FFA15A",
"symbol": "circle"
},
"mode": "markers",
"name": "247 - Kellross",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
160,
157,
157,
157.91,
157.17,
157.17,
158.27,
158.08,
159.04,
159.58,
159.58,
160,
160,
160,
159.8,
160,
159,
160,
160,
158.18,
160,
159.8,
157,
157,
158.88,
159,
158.06,
0,
0,
0,
0,
149.89,
149.89,
157,
159.19,
159.19,
159.92,
155,
160,
159.59,
160,
159.57,
112,
111.88,
111.88,
159.07,
159.07,
158,
158,
158.03,
159,
159,
156,
160,
156.53,
156.53,
159.16,
159.16,
159.8,
160,
160,
159.62,
44.24,
160,
159,
159,
42,
159.24,
159.24,
158.26
],
"xaxis": "x",
"y": [
45000,
39397,
42700,
117700,
0,
25000,
37800,
0,
33650,
28000,
28000,
30000,
45128,
45128,
100000,
23670,
70000,
0,
40000,
37500,
35000,
40000,
65300,
65300,
30000,
100000,
50000,
78000,
78000,
1000,
1000,
38875,
38875,
0,
18560,
18560,
65000,
35000,
111900,
175000,
30000,
38000,
0,
60100,
60100,
31900,
31900,
40000,
40000,
157960,
26565,
26565,
43000,
22400,
0,
37000,
50900,
50900,
110000,
42000,
86000,
86000,
31250,
40000,
33000,
33000,
25000,
66700,
66700,
197000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=070 - Key West<br>animation_frame=2001<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "070 - Key West",
"marker": {
"color": "#19d3f3",
"symbol": "circle"
},
"mode": "markers",
"name": "070 - Key West",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
160,
160.15,
157,
157,
160,
160,
160,
160,
160,
159.66,
159.66,
138,
137.9,
160,
160,
160,
160,
159.7,
159.23,
159.23,
155,
155,
155,
155.39,
160,
160,
160.36,
161,
160,
159,
159,
159.97,
152,
153.43,
153.43,
153.43,
157,
159,
158.76,
160,
160,
160,
159.61,
160.38,
160.38,
158.97,
53.33,
53.33,
53.33,
26.67,
158.96,
159,
159,
158.91,
158,
157,
157,
152,
160,
160,
159.64,
159.64,
160.22,
160,
158.45,
10,
147.95,
160,
159.67,
157,
156,
160,
159,
159.51,
159.51,
160,
158,
158.4,
158.4,
160,
161,
160,
160,
160.03,
80.02,
160,
159.74,
160,
160,
160,
160,
159.04,
40,
160,
159
],
"xaxis": "x",
"y": [
16000,
38500,
40000,
40000,
27000,
37340,
37340,
20000,
7000,
54100,
62400,
0,
44800,
44800,
64295,
63667,
72050,
227100,
18000,
18000,
45167,
70525,
70525,
226000,
89000,
60000,
100000,
37500,
16550,
17000,
25000,
55055,
0,
75000,
75000,
112500,
25000,
35317,
171306,
40000,
50000,
50000,
89900,
65000,
65000,
17360,
0,
9667,
9995,
4997,
25900,
27000,
27000,
51120,
30000,
0,
28000,
25000,
24000,
47130,
70400,
154770,
30000,
29050,
139800,
0,
55000,
29800,
34838,
28000,
0,
50260,
25000,
5500,
5500,
15000,
20630,
71000,
191648,
40000,
52600,
30000,
30000,
195200,
82500,
32400,
110000,
30000,
33000,
0,
0,
60000,
8750,
0,
75000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=184 - Grayson<br>animation_frame=2001<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "184 - Grayson",
"marker": {
"color": "#FF6692",
"symbol": "circle"
},
"mode": "markers",
"name": "184 - Grayson",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
160,
153,
152.72,
160,
145,
145,
145,
145,
145,
145.27,
160,
161,
160.54,
160.54,
154,
153,
153,
153,
152.95,
160,
160,
160,
1429.74,
158.86,
159,
159,
160,
160,
160,
159.68,
158.85,
18,
160,
160,
160,
157,
157,
158,
156,
156,
156,
160,
160,
160,
160,
0,
153,
153.36,
160,
156.52,
159,
159,
158.62,
118.68,
118.68,
4,
0,
0,
160,
160,
160,
160,
159.35,
159.35,
155.76,
155.76,
152,
158.97,
160,
160,
160,
160,
159,
149,
149.35,
160,
159.64,
88.8,
7.54,
160,
160,
160,
160.36,
144.32,
160,
161,
161,
160,
161,
161,
154,
154,
154,
162.87,
160,
158,
158,
158,
158,
160,
155,
155,
155.24,
162.21,
162.21,
156,
160,
156,
156.64,
156.64,
156.64,
160,
161,
161,
158,
158,
157.82,
159.01,
159.01,
154.74,
154.74,
161,
159.47,
159.47,
159.47
],
"xaxis": "x",
"y": [
33421,
38022,
118700,
15000,
23750,
27000,
24000,
72000,
100000,
111790,
20000,
40000,
71000,
116750,
44000,
2500,
25000,
40000,
70000,
24000,
0,
25000,
1620000,
180000,
35800,
37000,
20000,
35000,
39000,
118000,
110000,
400,
39805,
35359,
39805,
33480,
33480,
102500,
58250,
52600,
52950,
27825,
32500,
32500,
56875,
10250,
37000,
106000,
50000,
80000,
25000,
25000,
125000,
0,
72000,
0,
0,
5,
30000,
30000,
42450,
42450,
25000,
30500,
24339,
36450,
36450,
138000,
31000,
31000,
31000,
45000,
0,
30000,
103000,
55000,
133325,
1,
4000,
35000,
27000,
27000,
27000,
70000,
32000,
35925,
35925,
35000,
30000,
50000,
10000,
27783,
27782,
152000,
33075,
48485,
34000,
34000,
72394,
23500,
214500,
55000,
220000,
150000,
141000,
26000,
46000,
20050,
125304,
59300,
161844,
31500,
28860,
28860,
15000,
12510,
90000,
45000,
125000,
200250,
231339,
40000,
27250,
31250,
32250
],
"yaxis": "y"
},
{
"hovertemplate": "RM=276 - Foam Lake<br>animation_frame=2001<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "276 - Foam Lake",
"marker": {
"color": "#B6E880",
"symbol": "circle"
},
"mode": "markers",
"name": "276 - Foam Lake",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
160,
160,
160,
160,
160,
160,
158,
157.91,
160,
159,
159.46,
159.46,
159.15,
146.94,
110,
109,
158.25,
158.25,
158.35,
158,
158,
1,
157,
160,
160.51,
1,
157,
156.63,
160,
160,
159.69,
159.69,
161.97,
162.2,
159.71,
160,
159,
159,
159.42,
160,
160,
160.86,
160.86,
159,
113.44,
159.76,
26.39,
158.34,
158.34,
142.41,
160,
160,
160,
160,
160.16,
158.62,
160,
156,
155.94,
155.94,
159.7,
160,
160,
159,
159.49,
159.49,
160,
160,
159.5,
159.22,
159.22,
159.22,
158,
158,
158,
159,
158.72,
146.8,
146.8,
160,
160,
160,
160,
159.58,
159.58,
160,
159.48,
160,
158,
158,
158,
160,
159,
160,
159.69,
159.69,
160,
159,
160,
161,
157,
160,
160,
160.13,
160.13,
160,
159,
160,
160,
159,
152.55,
7.46,
159.2,
159.2,
160,
160.49,
160.49,
159.91,
159.24,
154,
154,
160,
160,
160,
160,
158,
0,
162,
161.21,
157.87,
160,
80,
160,
160,
160,
160,
159.92,
159.92,
159.92,
159.92,
158.16,
158.16,
160,
159.45,
161.4,
160,
141,
0,
123,
18,
0,
158.14,
158,
0,
158,
158,
158,
160,
160,
160,
0,
160,
160,
160,
152.2,
152,
152,
152.06
],
"xaxis": "x",
"y": [
30000,
40000,
40000,
15000,
30000,
40000,
39417,
145749,
42500,
57000,
130000,
156193,
125000,
85000,
220000,
0,
75000,
60000,
47265,
14000,
25000,
0,
0,
77000,
60000,
0,
0,
50000,
50000,
28600,
51100,
51100,
10000,
70000,
158500,
44400,
150000,
80000,
150000,
39333,
38000,
38000,
38000,
16900,
25000,
15000,
33000,
219600,
219600,
69400,
44000,
27507,
27507,
49507,
46800,
25000,
12000,
25000,
91590,
118400,
120000,
34000,
33700,
70000,
102595,
200000,
15000,
38000,
50000,
120000,
340000,
225000,
50000,
49800,
54977,
56200,
113800,
21800,
21800,
100000,
44000,
60000,
17500,
97000,
148100,
20000,
45000,
40000,
30000,
30000,
25000,
40000,
52500,
36122,
107586,
122000,
40000,
325166,
17000,
42000,
0,
51400,
22000,
45500,
75000,
40000,
28000,
25000,
55500,
65000,
15000,
1350,
30000,
50000,
88207,
158000,
261184,
48720,
143450,
37600,
37600,
18000,
26200,
26200,
26500,
26000,
2,
25000,
55000,
40000,
17500,
8750,
20000,
20000,
25000,
27500,
34100,
65000,
65000,
75000,
132267,
132267,
39114,
100000,
155000,
61000,
28000,
100,
53000,
3600,
0,
15000,
15000,
0,
15000,
15000,
29000,
43050,
21525,
43050,
0,
10000,
45000,
45000,
43000,
43000,
43000,
90400
],
"yaxis": "y"
},
{
"hovertemplate": "RM=305 - Invermay<br>animation_frame=2001<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "305 - Invermay",
"marker": {
"color": "#FF97FF",
"symbol": "circle"
},
"mode": "markers",
"name": "305 - Invermay",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
160,
160,
158.87,
158.87,
52.96,
160,
148.49,
157,
78.55,
78.55,
78.55,
159.28,
159.53,
159.53,
159,
159,
160.56,
159.95,
159.95,
142.32,
113,
140.1,
160,
159.44,
160,
159,
159,
160,
160,
160,
160,
160,
159.89,
159.07,
160,
158,
159.45,
159.45,
159.59,
160,
79.79,
160,
161,
161,
161,
160,
148.81,
160,
158.82,
160,
159.81,
159,
158.73,
160,
160,
160,
159.51,
160,
159.96,
160,
157.49,
159,
157,
156.73,
0,
158.79,
157.75,
156.37,
158.96,
160,
159.11
],
"xaxis": "x",
"y": [
25000,
22875,
220000,
223793,
74598,
30000,
105000,
50145,
72075,
72075,
72075,
50000,
276000,
274400,
50000,
87500,
75000,
120000,
120000,
35000,
0,
39700,
36458,
150000,
50000,
70000,
76000,
20000,
20000,
20000,
18500,
37600,
68000,
90000,
3500,
50000,
250000,
248400,
30000,
50000,
80000,
20000,
17900,
17900,
17900,
120000,
0,
38000,
17900,
35000,
312000,
80000,
216700,
20000,
20000,
20000,
31800,
40500,
60000,
54750,
45000,
32060,
65000,
307000,
0,
31250,
0,
213431,
80000,
38400,
55000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=100 - Elmsthorpe<br>animation_frame=2001<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "100 - Elmsthorpe",
"marker": {
"color": "#FECB52",
"symbol": "circle"
},
"mode": "markers",
"name": "100 - Elmsthorpe",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
162.22,
162.22,
162.22,
162,
165,
165,
165,
165.48,
165.48,
165.48,
158.35,
115,
153,
5,
160.69,
162,
158.32,
79.16,
79.16,
72.55,
72.55,
160,
160,
159.2,
151,
151,
161,
161.98,
156,
158.63,
160,
160.67,
161,
160,
159.82,
160.45,
161.33,
162,
159.36,
157.63,
157.63,
159,
159,
159,
160,
160,
157.06,
154,
7,
162,
161.61,
161.61,
162,
158,
161,
157,
157,
157,
160,
160,
159.64,
159.64,
150.86,
151,
151,
151,
151.13,
160,
160.56,
160.56,
163,
162.99,
162.99,
161.68,
160,
319.3,
159.65,
159.65,
159.17,
159,
159.39,
159,
159,
159,
160,
160,
158.84,
158.84,
158.84,
158.97,
159,
159,
158.89
],
"xaxis": "x",
"y": [
22000,
22000,
22000,
22000,
34700,
30000,
30000,
117000,
107000,
115500,
29780,
27000,
26190,
810,
90000,
40000,
270000,
135000,
135000,
0,
0,
80000,
80000,
0,
44000,
44000,
28000,
27000,
54600,
40000,
0,
303000,
14062,
51000,
40367,
177500,
36000,
30000,
101635,
36000,
116200,
25000,
25000,
128000,
0,
87250,
104900,
32000,
500,
40000,
40000,
40000,
13260,
63480,
34000,
0,
0,
136000,
0,
67820,
140000,
263150,
41920,
41920,
41920,
61500,
195000,
26800,
144000,
144000,
40000,
40000,
40000,
140000,
30100,
165800,
200000,
200000,
16900,
38600,
117900,
31400,
30350,
30000,
42500,
42500,
49100,
173750,
223300,
46320,
46320,
46320,
318600
],
"yaxis": "y"
},
{
"hovertemplate": "RM=275 - Insinger<br>animation_frame=2001<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "275 - Insinger",
"marker": {
"color": "#636efa",
"symbol": "circle"
},
"mode": "markers",
"name": "275 - Insinger",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
158,
158.56,
158.56,
158.56,
158,
160,
159.63,
158.42,
160,
160,
158,
162.13,
160,
160,
160,
160,
159.34,
160,
160,
160.04,
158.52,
160,
158,
158.13,
158.13,
159.76,
159.76,
160,
160,
160,
160,
160,
163,
163,
163.18,
163.18,
159,
159,
144,
144.07,
142.71,
160,
160,
159,
158,
157.65,
158.98,
160,
157,
157.45,
160,
160,
160,
163,
75.22,
75.22,
159,
159.49,
157.62,
160,
158,
160,
160,
160,
161.81,
161.81,
161.56,
161.53,
161,
160,
160,
160,
159,
159,
150,
159,
159.32,
156,
163.7,
163.7,
163.27,
156.77,
156.15,
159.69,
319.38,
158.55,
158,
160,
159.59,
140.56,
163.94,
163.94,
164,
163.99
],
"xaxis": "x",
"y": [
20915,
0,
0,
57933,
0,
15001,
58960,
125580,
38750,
25000,
14000,
22000,
40460,
40460,
40460,
40460,
182500,
42000,
37000,
61200,
0,
30000,
0,
97000,
119700,
74800,
94900,
27588,
40000,
50000,
17500,
17000,
24000,
29500,
77000,
77000,
57500,
57500,
55000,
55000,
0,
28770,
28770,
30000,
0,
12567,
135000,
22500,
125000,
98800,
12550,
18480,
18480,
25300,
12600,
12600,
72000,
89000,
0,
43000,
0,
30000,
34150,
30000,
19000,
0,
22400,
104000,
14520,
35000,
35000,
16705,
49990,
50000,
21658,
49700,
63120,
15360,
9000,
9000,
36456,
48000,
88000,
28000,
56000,
0,
35250,
50200,
50200,
101790,
11750,
12650,
0,
44305
],
"yaxis": "y"
},
{
"hovertemplate": "RM=250 - Last Mountain Valley<br>animation_frame=2001<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "250 - Last Mountain Valley",
"marker": {
"color": "#EF553B",
"symbol": "circle"
},
"mode": "markers",
"name": "250 - Last Mountain Valley",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
160,
160,
52.97,
52.97,
52.97,
52.97,
52.97,
160,
160,
162,
163.76,
159,
160,
160,
160.3,
160.3,
158,
155,
160,
160,
161.8,
161.8,
164,
165,
164.61,
161,
161,
160,
160,
160,
160,
160,
159.2,
159.2,
160.16,
164,
164,
164,
163.02,
163.02,
162,
156,
155.54,
157,
157.21,
157.28,
160,
160,
160,
157.67,
158.05,
159,
158.22,
163,
153.73,
153.73,
163.34,
160,
160,
158,
158,
157.81,
157.29,
158.7,
159,
159,
159,
158.96,
158.96,
159,
79.47,
100,
100,
99.84,
161,
161,
161,
161,
161.4,
162,
161.62,
161.62,
164,
164,
164,
160,
160,
160,
160.14,
159,
158,
158.17,
160,
160,
159,
158.5,
158.5,
158.5,
159,
159,
159,
160,
160,
160,
161.97,
162,
162,
164,
164.18,
284.78,
160,
159
],
"xaxis": "x",
"y": [
20000,
20000,
44916,
44916,
44916,
44917,
44917,
30000,
30000,
114998,
105000,
40000,
42000,
45625,
64996,
53000,
60100,
0,
30000,
30000,
159500,
192222,
0,
48800,
119025,
37500,
37500,
50000,
50000,
27540,
30000,
29300,
32000,
32500,
50800,
35000,
35000,
31000,
30000,
30000,
27000,
30000,
39463,
70000,
70000,
161667,
7000,
12000,
14000,
40000,
15000,
30000,
50000,
35000,
144508,
144508,
38000,
35000,
35000,
11000,
11000,
100000,
133000,
125750,
6000,
6000,
10000,
36300,
36300,
26250,
144000,
12800,
12800,
40000,
26000,
48600,
48600,
48600,
63333,
35000,
75000,
165000,
40000,
60000,
60000,
35000,
35000,
65000,
155000,
30975,
65000,
65000,
50000,
27500,
65000,
75000,
100000,
189500,
15000,
20000,
22000,
50640,
91000,
0,
33300,
42000,
24100,
62500,
197000,
116200,
48940,
45000
],
"yaxis": "y"
}
],
"name": "2001"
},
{
"data": [
{
"hovertemplate": "RM=213 - Saltcoats<br>animation_frame=2002<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "213 - Saltcoats",
"marker": {
"color": "#636efa",
"symbol": "circle"
},
"mode": "markers",
"name": "213 - Saltcoats",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
160,
142,
142,
141.73,
160,
160,
160,
160.12,
162,
162,
161,
161,
6,
160,
160,
160.37,
161,
160.81,
160.81,
161,
160.66,
160,
160.46,
159.97,
0,
140,
140,
140.27,
160,
160,
0,
160,
160,
160,
160,
159.65,
0,
138,
138.1,
159.81,
160.21,
160,
160.29,
160.29,
160.32,
160,
160,
160,
160,
13,
146,
158.62,
158.62,
160,
159.84,
160,
160,
160.31,
160.31,
80.27,
80.27,
80.27,
160,
161,
160,
120.61,
160.42,
160.42,
161,
161,
161,
160,
159.72,
160.42,
160.42,
160.42,
160,
161.45,
160,
159,
159,
159,
158.83,
160,
160,
160,
160.4,
160,
159,
159,
160,
160,
158,
137.64,
137.64,
160,
159.51,
159.51,
160.52,
160.52,
160.52,
160.18,
80.5,
145,
145,
160.72,
159.95
],
"xaxis": "x",
"y": [
39140,
39040,
68715,
160000,
34710,
30000,
33000,
160000,
30000,
49000,
120000,
87675,
0,
16511,
69800,
160000,
30000,
209000,
218750,
45000,
197750,
24500,
177500,
189500,
16000,
29000,
425000,
425000,
30500,
60000,
57600,
20526,
20526,
43560,
77805,
160000,
43400,
37500,
125000,
25000,
80000,
30918,
136200,
131803,
187500,
22000,
40000,
39000,
51800,
1000,
39000,
90000,
90000,
35000,
167858,
77689,
82100,
228512,
315200,
65000,
77138,
71500,
36600,
25000,
20000,
99000,
104668,
160000,
45000,
70460,
70680,
42667,
167858,
100000,
240000,
305350,
41000,
110000,
46737,
53300,
53300,
97605,
160000,
13260,
19525,
19525,
68603,
32000,
45000,
55000,
48600,
50000,
75000,
130700,
225000,
44480,
44480,
120000,
160000,
177440,
177400,
11800,
10000,
79999,
79999,
98000,
1
],
"yaxis": "y"
},
{
"hovertemplate": "RM=488 - Torch River<br>animation_frame=2002<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "488 - Torch River",
"marker": {
"color": "#EF553B",
"symbol": "circle"
},
"mode": "markers",
"name": "488 - Torch River",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
5,
143,
80,
80,
80,
79.6,
318.14,
157.65,
160,
158.82,
160,
160,
160,
160,
159.8,
160,
160,
160,
160,
159,
159,
154.21,
154.21,
154.21,
160,
10,
157,
157.76,
132.13,
147.51,
161,
155.78,
155.78,
4,
160.45,
160.45,
160,
160,
160.14,
160.14,
156.92,
156,
157,
157,
157,
39.13,
39.25,
160,
159.75,
160,
160,
160.18,
159.61,
158,
161,
161,
161,
158.48,
156.93,
3,
160.39,
160,
160,
160,
26.64,
26.64,
26.64,
159.85,
159.85,
159.85,
26.67,
160,
160,
160,
160,
160,
159.86,
160,
159.7,
160,
160,
159.86,
160,
159.83,
159.83,
40,
39.87,
160,
160,
159.18,
159.18,
160,
160.05,
158,
158,
158,
158.18,
146.48,
146.48,
160,
160,
159.56,
159.56,
161,
160.61,
160.61,
160,
159.71,
159.71,
160,
160.26,
160,
159.86,
159.86,
159.86,
159.86,
160,
160.06,
150.05,
150.05,
158.7,
161,
319.86,
159.93,
159,
158.61,
158.61,
160.86,
160,
160,
160,
160,
160,
161,
160.71,
160,
160.02,
140.07,
140.07,
160,
160,
160.46,
160,
159.79,
159.79,
159.79,
160,
160,
160,
160,
159.79,
159.79,
79.9,
80,
156.52,
157.53,
126.67,
16.86,
125,
124.66,
124.66,
160,
160,
159.99,
159.99,
150,
150,
160.11,
160,
160.23,
160,
320.44,
160.22,
160.22,
160,
160.44,
115,
114.64,
6.2,
113.72,
160.06,
158.97,
159,
158.96,
158.96,
320,
159.64,
159.64
],
"xaxis": "x",
"y": [
2670,
58000,
0,
10,
338000,
350000,
600000,
160000,
0,
140000,
43700,
0,
40000,
60000,
120000,
22410,
24000,
53300,
25000,
40000,
60000,
46000,
56120,
80663,
75000,
5000,
200000,
200000,
100000,
200000,
22400,
70000,
85000,
890,
122080,
122080,
0,
65680,
168155,
278200,
36000,
18500,
25000,
25000,
40000,
84905,
45000,
40000,
70000,
24000,
40300,
110000,
500,
46000,
50000,
34000,
34000,
34400,
0,
890,
171000,
27500,
71000,
71000,
11308,
11308,
18333,
109997,
109997,
109997,
11834,
27000,
51000,
24500,
29000,
40000,
149500,
30000,
200000,
0,
35000,
110000,
3000,
45000,
45000,
1,
19800,
25000,
0,
57000,
80000,
89500,
262500,
40000,
40000,
40000,
195000,
120000,
80000,
14000,
28000,
160100,
160100,
10000,
58900,
58900,
20000,
50000,
120000,
10000,
114410,
35000,
78000,
78000,
168155,
213300,
79554,
168155,
0,
266800,
41000,
46000,
190000,
167010,
158000,
95680,
95680,
160000,
50000,
10000,
0,
39000,
57500,
51000,
170000,
50000,
120400,
0,
219000,
50000,
65000,
115000,
30000,
55000,
55000,
21000,
15000,
40000,
70000,
70000,
70000,
160000,
47100,
28875,
38000,
174000,
0,
0,
60000,
60000,
60000,
31000,
31000,
95000,
191157,
68000,
47958,
287300,
50000,
184500,
75000,
100000,
50000,
150000,
67500,
77500,
80000,
97500,
100,
0,
160000,
41000,
62880,
168155,
202800,
260000,
49653,
28744
],
"yaxis": "y"
},
{
"hovertemplate": "RM=336 - Sasman<br>animation_frame=2002<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "336 - Sasman",
"marker": {
"color": "#00cc96",
"symbol": "circle"
},
"mode": "markers",
"name": "336 - Sasman",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
163.46,
163.46,
159.51,
158.7,
158.7,
160,
160,
159,
159,
158.98,
10,
10,
0,
158,
157.67,
158.17,
160,
161,
161,
160,
160,
160,
161,
160,
159.01,
157,
2,
155,
155.47,
160.84,
160,
160.03,
160.03,
160,
160,
156.43,
156.08,
160,
159.6,
159.6,
160,
160,
160.62,
160.43,
160.43,
160,
160,
160.16,
159,
158.91,
160,
160,
159,
158.91,
158.91,
158.97,
158,
158.23,
158.23,
155,
155,
155,
155,
155.15,
158,
158,
158,
161,
161.33,
148,
147.93,
160,
160,
160,
160,
160,
320.36,
159,
159,
159,
150.83,
75.5,
159.38,
159.38,
159.6,
158.53,
158.53,
161,
161,
160,
160,
161,
161.36,
158,
99.66,
160.02,
159.33,
159.33,
159,
39.75,
159.7,
159.7,
159.7,
165.15,
80.26,
80.5,
75.35,
75.35,
75.5,
40,
40,
160,
160,
160,
160,
159.28,
159.28
],
"xaxis": "x",
"y": [
140000,
150000,
255000,
170000,
170000,
21000,
51750,
50000,
72500,
225000,
1620,
4000,
5000,
50000,
98000,
312000,
56500,
30000,
60000,
49313,
60000,
80000,
60000,
44000,
170000,
20000,
500,
0,
44400,
30000,
45000,
0,
41080,
75000,
20000,
166000,
150483,
80000,
217000,
217000,
45000,
45000,
150000,
45000,
45000,
52900,
50000,
125000,
66700,
265600,
36800,
49500,
15000,
32500,
29260,
35000,
45000,
182000,
182000,
43900,
43900,
27665,
59000,
270000,
50000,
50000,
50000,
85000,
150000,
59000,
59000,
20000,
20000,
56430,
100000,
35000,
150000,
55000,
55000,
75000,
55688,
7500,
165600,
165600,
53600,
0,
59621,
60000,
103320,
25140,
25140,
49000,
145000,
80000,
236500,
91650,
159800,
159800,
42900,
10725,
90000,
90000,
55000,
50000,
50000,
45000,
51600,
25800,
25800,
8500,
11000,
60000,
59963,
0,
39000,
74950,
264320
],
"yaxis": "y"
},
{
"hovertemplate": "RM=215 - Stanley<br>animation_frame=2002<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "215 - Stanley",
"marker": {
"color": "#ab63fa",
"symbol": "circle"
},
"mode": "markers",
"name": "215 - Stanley",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
159,
159,
159,
157.95,
157.95,
19,
19,
19,
160,
160,
160,
153.76,
148,
148,
148.39,
159,
158.87,
161,
161,
161,
160.65,
140,
159,
160.04,
160.03,
160,
146.17,
146.17,
120.7,
25.47,
160.77,
160.77,
160.34,
160.91,
160.91,
160,
159.63,
159.82,
157.31,
160,
160,
160,
160.13,
160.13,
160.13,
160,
160.1,
160.17,
160,
161,
161,
160.51,
161,
160,
159.99,
160.01,
158.01,
142.35,
160,
160,
160,
161,
161,
159,
160,
156,
156,
156,
156,
152.02,
160,
160,
160,
160,
159.18,
160,
161,
160,
161,
161.14,
162,
160,
160,
144,
160,
161,
163,
162,
160,
160,
160,
160,
148,
148,
2,
160,
160,
161
],
"xaxis": "x",
"y": [
25000,
54000,
66000,
165000,
165000,
5000,
60000,
3271,
35000,
43100,
43100,
30000,
45000,
45000,
100000,
25000,
65000,
60000,
60000,
47000,
212653,
40000,
30000,
101699,
180000,
35000,
55000,
55000,
275000,
75000,
56500,
179584,
150000,
135000,
135000,
55000,
70000,
75000,
27500,
64646,
39000,
39000,
304000,
441902,
200052,
45450,
65500,
177999,
35000,
50000,
50000,
80000,
40000,
45313,
100000,
41030,
65000,
104000,
35000,
32000,
42330,
42330,
60000,
50000,
70000,
48485,
52000,
52000,
102222,
24000,
35000,
35000,
45000,
45000,
51000,
41000,
41000,
30000,
76600,
70000,
30000,
54400,
54400,
44500,
54500,
54500,
39000,
92000,
28000,
3146,
38000,
38000,
54250,
54250,
750,
23000,
25000,
42000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=247 - Kellross<br>animation_frame=2002<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "247 - Kellross",
"marker": {
"color": "#FFA15A",
"symbol": "circle"
},
"mode": "markers",
"name": "247 - Kellross",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
10,
10,
10,
7,
7.4,
10,
0,
10,
10.24,
9.99,
9.99,
9.99,
9.97,
9.97,
9.97,
9.97,
160,
159.71,
156,
160,
156.96,
157,
157.28,
160,
160,
159.46,
159.46,
159.46,
160,
160,
160,
160,
159,
159.46,
158.08,
159,
160,
160,
159.14,
160,
156,
156,
156.35,
160.26,
160.58,
160.58,
160.58,
158.87,
158.87,
161,
161,
161,
159.45,
160,
158.79,
159,
158.96,
158.96,
160,
160,
160,
158,
158,
158.84,
158.84,
158.32,
158.68,
160,
160,
160,
160,
160,
160,
161,
161,
161,
160,
159,
159.94,
155.7,
160,
0,
159.8,
53.2,
159.6,
160,
159.92,
159.92,
161.77,
161.77,
161.77,
160,
160,
160,
160,
160.23,
160.23,
162,
162,
161,
161,
319.44,
159.72,
159.72,
160,
159.71,
159.71,
158.06,
158,
158.24,
160,
158.15,
158,
157.97,
158.51,
158.51,
159.3,
159.3,
159.3,
160,
160,
159.64,
160.27,
158.48,
158,
158,
157.97
],
"xaxis": "x",
"y": [
10000,
11250,
1950,
2800,
2800,
0,
5000,
4700,
4700,
6000,
6425,
7371,
2500,
2500,
17940,
7000,
48700,
100620,
35000,
33040,
19250,
40000,
160000,
15000,
15000,
131000,
131000,
131000,
36250,
30480,
62330,
62330,
41000,
145000,
122260,
122000,
50300,
50300,
80000,
40000,
34000,
46000,
82000,
110000,
65220,
69317,
69317,
30000,
0,
20000,
27400,
27400,
31000,
31000,
29500,
29500,
100000,
130000,
33850,
33850,
25000,
40909,
45000,
155000,
155000,
115000,
18000,
60000,
60000,
33800,
33800,
33800,
20700,
24000,
27400,
27400,
36150,
38400,
160000,
25000,
12500,
12500,
60000,
23834,
105000,
25000,
78000,
78000,
34784,
40000,
40000,
20000,
36000,
45100,
45100,
100000,
150500,
41500,
41500,
35750,
35750,
70000,
90000,
114333,
35000,
100000,
100000,
30000,
20000,
151000,
32500,
30000,
47400,
52000,
111000,
111000,
98538,
109423,
109423,
8000,
60000,
150000,
45500,
30000,
39000,
37500,
116000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=070 - Key West<br>animation_frame=2002<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "070 - Key West",
"marker": {
"color": "#19d3f3",
"symbol": "circle"
},
"mode": "markers",
"name": "070 - Key West",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
10,
9.99,
9.97,
10.08,
0,
0,
10,
10,
10.09,
10.09,
10.08,
10.02,
10.02,
160,
160,
160,
160.12,
160,
160,
159.7,
160,
160,
160,
160,
159.64,
158,
159.37,
159.54,
158.99,
158.98,
158.98,
158.98,
160,
160,
148,
158,
158,
158,
160,
158.68,
317.36,
160,
160.17,
160,
160,
160,
159.73,
159.73,
160,
160,
160,
160.14,
157,
157,
160.08,
160.08,
160.08,
160,
160.05,
158,
158.51,
158.51,
160.34,
160.34,
157,
157.27,
157.27,
157.21,
157.21,
156.58,
160,
160,
160.15,
160,
80,
160,
160,
160,
160.14,
159.63,
160,
160,
160,
160,
160.08,
160,
160.07,
160,
161,
160.64,
160,
158.7,
158,
158,
157.94,
159,
146.83,
146.83,
79.91,
159.98,
159.98,
159.98,
79.99,
160,
160,
158.74,
158.74,
158.74,
159.38,
159.38,
159.38,
159.38,
160,
160,
159.53
],
"xaxis": "x",
"y": [
3333,
3200,
3200,
3300,
5000,
7809,
10000,
10000,
100000,
100000,
100000,
3300,
3300,
25000,
25000,
10000,
90000,
25000,
25000,
94000,
80000,
25000,
23000,
28300,
69285,
28000,
15000,
38100,
75800,
33000,
25000,
171000,
50000,
40000,
25200,
28600,
29875,
29875,
40000,
35000,
70000,
18500,
42826,
20700,
45000,
36667,
91100,
143700,
40000,
40000,
40000,
52000,
14000,
14000,
77795,
134100,
134100,
30000,
100000,
30000,
86900,
86900,
16600,
16600,
36667,
91100,
94367,
10590,
0,
10590,
24667,
30000,
75000,
14500,
6850,
19800,
34000,
34000,
70000,
75000,
30000,
30000,
62900,
56250,
56250,
20000,
34927,
25000,
1500,
52795,
34500,
15000,
15000,
15000,
113707,
75000,
160000,
248000,
15000,
79040,
79040,
195200,
80000,
32000,
30000,
81150,
81150,
95748,
53700,
100000,
102500,
139000,
78125,
78125,
121250
],
"yaxis": "y"
},
{
"hovertemplate": "RM=184 - Grayson<br>animation_frame=2002<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "184 - Grayson",
"marker": {
"color": "#FF6692",
"symbol": "circle"
},
"mode": "markers",
"name": "184 - Grayson",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
161.17,
159.4,
161,
161,
162,
162,
161.76,
159.99,
159.99,
160,
160,
160,
158,
158,
158,
158,
161,
161,
160.74,
160,
162.08,
160,
162,
160,
159.99,
159.99,
160.46,
160,
160,
160,
160,
160,
159.85,
159.85,
140.34,
157.22,
145.22,
160.17,
161,
160,
163,
162.76,
162.76,
160,
157.96,
160.69,
160.69,
160.49,
161,
161,
161,
161,
160,
160,
161,
161,
161,
159.96,
160,
165,
165,
165,
165,
161,
159,
159.71,
159.71,
159.71,
159,
3.72,
152.25,
152.25,
151.25,
160.37,
160.37,
160,
160,
162,
162,
162,
160,
160,
160,
163,
163,
161,
161,
161,
160.58,
153.87,
160,
160,
164,
160,
160,
160,
158,
143,
160,
160,
162,
162,
160,
159,
157
],
"xaxis": "x",
"y": [
34900,
25000,
75000,
75000,
75264,
75264,
75264,
146349,
155044,
21552,
27000,
30000,
22000,
43000,
27000,
25000,
38400,
38400,
38400,
40000,
125000,
35000,
46320,
25000,
40350,
40350,
165790,
37000,
37000,
0,
34425,
34425,
46000,
28500,
300000,
40000,
40000,
417000,
42000,
0,
59480,
113000,
312806,
34000,
100000,
146989,
155722,
120000,
13500,
31500,
21000,
23000,
48400,
48400,
40000,
50100,
50450,
152000,
36000,
48485,
36000,
36000,
77392,
37300,
0,
0,
40000,
65000,
50000,
1600,
34350,
35325,
35325,
130500,
166500,
50000,
27000,
58250,
45700,
46050,
34337,
32240,
23200,
44000,
60000,
38140,
38140,
15000,
76500,
33113,
39975,
39975,
58500,
37500,
35000,
35000,
59000,
31000,
29700,
29700,
30500,
30500,
40000,
38000,
35710
],
"yaxis": "y"
},
{
"hovertemplate": "RM=276 - Foam Lake<br>animation_frame=2002<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "276 - Foam Lake",
"marker": {
"color": "#B6E880",
"symbol": "circle"
},
"mode": "markers",
"name": "276 - Foam Lake",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
1,
1,
2.47,
2.47,
5.78,
10,
10,
159.36,
159,
159.24,
159,
161,
161,
159,
160,
160,
160,
160,
160,
159.62,
159.62,
159,
160,
159.08,
153.26,
158.97,
159,
159,
160,
0,
147.59,
147.59,
73.8,
161,
161,
161,
160,
160,
159,
159,
160,
160,
159,
159,
160,
160,
161,
152.35,
152,
152.3,
152.3,
2.24,
159.89,
159.89,
159.89,
159,
161,
161,
160.12,
160.12,
159,
159.02,
160,
160,
159.55,
159.55,
160,
160,
160,
159.07,
159.16,
160,
0,
0,
7,
35.84,
159,
0,
155.91,
158.45,
160,
160.49,
160.49,
160,
159,
159,
159.39,
160,
160,
159.56,
159.56,
160,
160,
157,
157,
160,
159.45,
160,
159.5,
160,
160,
160,
160,
160,
160,
160,
160,
140,
158.99,
158.6,
160,
160,
160.02,
160.02,
160.02,
159,
159,
159,
53.46,
159,
159,
159.48,
160,
149,
149,
160,
160,
160,
160,
159.04,
160.71,
158.94,
158.94,
158.94,
161,
160,
159.37,
159.37
],
"xaxis": "x",
"y": [
1392,
1392,
720,
720,
3780,
4640,
4640,
76800,
81000,
200000,
32000,
21300,
21300,
19000,
33000,
33000,
53200,
53600,
49450,
144222,
192800,
42000,
50000,
162300,
24000,
80000,
80000,
80000,
35000,
14500,
116900,
117000,
58500,
21000,
21000,
0,
19250,
45000,
55000,
55000,
15000,
34000,
0,
0,
5000,
20000,
20000,
35000,
40000,
75000,
75000,
500,
25000,
25000,
25000,
19000,
29250,
29500,
116000,
160000,
50000,
50000,
45000,
95000,
158000,
274937,
47280,
53190,
60000,
189700,
180656,
30000,
50000,
0,
0,
0,
51400,
500,
200000,
150500,
50000,
209000,
170000,
30000,
30000,
35000,
29000,
35000,
40000,
40000,
40000,
26000,
26000,
45000,
40000,
16000,
50000,
40000,
246500,
40000,
10000,
110000,
32000,
39000,
35000,
60000,
65830,
40000,
35000,
168667,
30000,
33900,
85931,
85931,
88660,
2500,
10000,
26000,
63734,
16000,
16000,
10440,
46000,
32000,
49400,
44000,
2000,
0,
47950,
26667,
184200,
81240,
40620,
81240,
0,
37400,
41305,
41305
],
"yaxis": "y"
},
{
"hovertemplate": "RM=305 - Invermay<br>animation_frame=2002<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "305 - Invermay",
"marker": {
"color": "#FF97FF",
"symbol": "circle"
},
"mode": "markers",
"name": "305 - Invermay",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
10.01,
159,
160,
160,
159.55,
160,
160,
160,
160.11,
0,
160,
161,
160,
160,
160.01,
134.02,
160,
80.23,
160.45,
160,
158.84,
53.5,
160,
159.94,
159,
158.68,
160,
160.45,
159.85,
158.81,
158,
157.71
],
"xaxis": "x",
"y": [
5100,
48250,
42000,
4000000,
643333,
38000,
60000,
60000,
500,
7500,
30000,
80000,
50000,
30000,
75000,
33000,
34444,
50000,
145000,
25000,
68875,
73333,
33300,
60000,
70000,
250000,
25000,
59535,
175000,
32000,
45000,
88000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=100 - Elmsthorpe<br>animation_frame=2002<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "100 - Elmsthorpe",
"marker": {
"color": "#FECB52",
"symbol": "circle"
},
"mode": "markers",
"name": "100 - Elmsthorpe",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
9.88,
9.88,
10,
9.93,
9,
9.27,
9.27,
160,
159.31,
162,
162.48,
162.48,
162.48,
160,
160,
159.14,
159.79,
160,
160,
160,
160,
160.31,
159.25,
158,
158,
158,
158.35,
118.76,
160,
159,
160,
160,
159,
159.23,
159.23,
159.23,
160,
160,
160.1,
160.1,
5,
154.97,
160,
160,
160,
160,
160,
161,
160,
160.33,
160,
163,
157,
158.11,
160,
160,
160,
160,
159.66,
157.72,
161,
161,
161.18,
161,
121,
160,
160.3,
160,
160,
79.5,
160,
159.85,
159.85,
159.85,
160,
159.36,
160.35,
160.35,
160,
160,
160,
160,
159.09,
159.09,
160,
161,
161.21,
160,
158,
160,
160,
159.45,
159.45,
159.45,
160,
159.92,
159.92,
160,
160,
160,
159,
159.49,
157,
160,
157.13,
160,
160,
159.42,
159.42,
160,
160,
161,
159.45,
159,
159,
159.06,
160,
160,
160,
160,
160.06,
155.99,
155.06,
155.06
],
"xaxis": "x",
"y": [
6680,
6315,
2500,
6180,
2,
5386,
5920,
25000,
52500,
25000,
40000,
75000,
92316,
24050,
24050,
60170,
47618,
20000,
20000,
20000,
20000,
45000,
36700,
20000,
45000,
45000,
43680,
32760,
36600,
36000,
20000,
38333,
25000,
40000,
75000,
92316,
27000,
27000,
46700,
126103,
500,
56540,
30000,
30000,
30000,
30000,
25800,
11250,
47520,
237500,
0,
15625,
25000,
60000,
28000,
32500,
44444,
44444,
148979,
90000,
50000,
50000,
112640,
40000,
50000,
45000,
65000,
28000,
29750,
14500,
62500,
60000,
60000,
102000,
47379,
45000,
60000,
60000,
31000,
31000,
23288,
23695,
40000,
143100,
29479,
40000,
110000,
50000,
43675,
15000,
7500,
64300,
64300,
64802,
55000,
60000,
60000,
24000,
24000,
47000,
60000,
29365,
40000,
33000,
45000,
46100,
46100,
133333,
66667,
51934,
50000,
11270,
60000,
30000,
30000,
105000,
46915,
36240,
75000,
70950,
107828,
25500,
115000,
138000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=275 - Insinger<br>animation_frame=2002<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "275 - Insinger",
"marker": {
"color": "#636efa",
"symbol": "circle"
},
"mode": "markers",
"name": "275 - Insinger",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
138.65,
139,
139,
160,
160,
160.35,
160.35,
141,
141,
80.02,
317.92,
156.97,
157,
160,
159.35,
160,
160.45,
160,
160,
160,
160.26,
80.13,
160.26,
80,
157.01,
79.88,
160,
159.69,
151.27,
3.87,
146.76,
160,
159,
158.55,
160,
158,
157.6,
157.6,
141,
141,
141,
159,
159.38,
160,
160,
159.74,
160,
160,
159.54,
160,
160,
159.28,
159.28,
159.28,
160,
159,
159.48,
159.48,
159,
160,
159.82,
159.82,
160,
160,
160,
160,
160,
150.92,
159,
159,
160,
159,
160,
160,
160,
160,
160
],
"xaxis": "x",
"y": [
25000,
64900,
64900,
15000,
15000,
80000,
80000,
100000,
142500,
49487,
80000,
25000,
25000,
28050,
79900,
90000,
166720,
25000,
16000,
45000,
63200,
31600,
63200,
27750,
22932,
46620,
5500,
100000,
18700,
2000,
78000,
30000,
66320,
189500,
38700,
82500,
175000,
180000,
45000,
50000,
50000,
36200,
165000,
34000,
50000,
1000000,
25000,
43000,
166500,
58000,
25000,
112000,
100000,
90000,
28000,
40000,
120000,
140000,
20000,
23625,
72410,
200000,
35000,
35000,
35000,
35000,
32363,
0,
22110,
40000,
16500,
26900,
20000,
15000,
15000,
30000,
10000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=250 - Last Mountain Valley<br>animation_frame=2002<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "250 - Last Mountain Valley",
"marker": {
"color": "#EF553B",
"symbol": "circle"
},
"mode": "markers",
"name": "250 - Last Mountain Valley",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
1.47,
160,
160,
159.01,
159,
158.78,
160,
160,
160,
160,
159.54,
0,
0,
83.69,
160,
160,
160,
160,
160.1,
160,
135,
134.8,
157,
156.79,
160,
160,
160,
160,
160,
160.09,
160,
160,
160.02,
159,
159.38,
159.35,
155.96,
155,
155,
160,
159,
159,
159.35,
159.35,
159.35,
160,
159.96,
160.84,
160.6,
160,
160,
160.07,
159,
319,
159.5,
160,
160,
160,
158.42,
161.17,
161.17,
159.57,
159.57,
159.57,
159,
159,
160,
19.96,
19.96,
19.96,
20,
20,
20,
20,
160,
160,
160,
160,
159,
159,
160,
160,
160,
160,
160,
160,
159.65,
159.73,
159.73,
160,
160,
160.39,
159,
159,
160,
159,
159.43,
159.43,
160,
160.17,
160,
159.95,
159.95,
159.95,
160,
161,
158,
157.92
],
"xaxis": "x",
"y": [
355,
25000,
25000,
53500,
52500,
168000,
30000,
47000,
35000,
21000,
190000,
0,
10000,
40000,
29000,
29000,
30000,
30000,
40260,
25000,
50000,
74000,
30000,
150000,
50000,
40000,
40000,
55000,
55000,
75000,
20000,
42500,
150000,
22500,
80000,
75000,
25000,
16000,
16000,
40000,
39000,
39000,
155000,
124610,
190000,
40000,
50000,
51500,
150000,
35000,
50000,
50000,
55000,
229320,
114660,
31500,
35000,
40000,
150000,
159500,
192222,
100000,
100000,
105000,
4375,
4375,
5000,
4750,
4750,
4750,
5000,
4000,
15000,
12000,
30000,
39000,
55000,
28687,
60000,
60000,
28000,
31667,
31667,
45000,
45000,
70000,
70000,
112500,
115000,
35000,
40000,
40000,
31000,
38000,
30000,
23000,
108000,
87900,
27390,
52500,
70000,
70000,
166400,
160000,
35100,
32000,
54000,
168000
],
"yaxis": "y"
}
],
"name": "2002"
},
{
"data": [
{
"hovertemplate": "RM=213 - Saltcoats<br>animation_frame=2003<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "213 - Saltcoats",
"marker": {
"color": "#636efa",
"symbol": "circle"
},
"mode": "markers",
"name": "213 - Saltcoats",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
160,
147,
146.97,
160,
158.45,
158.45,
160,
159.94,
159.94,
160,
160.26,
161,
160,
160,
135,
140,
140,
161,
160.6,
160.6,
160.72,
160,
160,
160,
147,
147.22,
147.22,
159.68,
159.68,
160,
160.22,
161.1,
159,
158.66,
158.66,
160.63,
161.3,
159.88,
159.88,
160,
160.65,
149.85,
149.85,
159.32,
134,
152.71,
160,
160.06,
155.55,
155.55,
160,
161,
161,
160,
160,
160.6,
160.5,
160.5,
153.28,
153.28,
149.74,
153,
76.49,
76.49,
50.99,
160,
161,
160.69,
160.88,
160.55,
160.55,
160,
161,
160.34,
160,
160,
158.52,
161,
161.47,
160,
160,
160,
161,
160,
160.18,
160,
160,
147.09,
147.09,
146.78,
156.13,
160,
160,
163,
162.58,
81.29,
160,
160,
160.98,
160.98,
161,
160.5,
160.18,
160,
160.32,
159.81
],
"xaxis": "x",
"y": [
80000,
29400,
159980,
40000,
120000,
300000,
32500,
206979,
236373,
38173,
187500,
76069,
18000,
19000,
44600,
0,
0,
37500,
70750,
70380,
32000,
28000,
83000,
53560,
53560,
103000,
166500,
206643,
235990,
44192,
187500,
106250,
30000,
243600,
225000,
68900,
162800,
206889,
236271,
20000,
106250,
0,
90000,
71300,
0,
20000,
25000,
171418,
26250,
35000,
19000,
15000,
22000,
45000,
90000,
200000,
310000,
200000,
20512,
0,
100000,
28000,
42500,
42500,
51667,
45000,
50000,
180000,
105500,
60000,
190000,
40000,
71300,
150500,
22022,
20000,
48000,
80055,
162000,
24500,
55000,
41775,
41775,
40000,
83000,
40750,
33110,
0,
163000,
105500,
32893,
15000,
40000,
39000,
120000,
132313,
34000,
34000,
120000,
225000,
50000,
180000,
105500,
21000,
87750,
185000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=488 - Torch River<br>animation_frame=2003<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "488 - Torch River",
"marker": {
"color": "#EF553B",
"symbol": "circle"
},
"mode": "markers",
"name": "488 - Torch River",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
10,
196.36,
161,
160.44,
160.44,
158.96,
160,
160,
160,
160.08,
160,
158.97,
158.67,
128.64,
78.93,
141.87,
6.2,
159,
158.73,
158.73,
155.19,
155,
160,
160,
159.69,
159.69,
159,
159,
159,
160,
119,
159.5,
159.5,
159,
159.46,
159.46,
160.21,
160.21,
161,
158,
157.8,
159,
159,
159,
159.38,
147.79,
73.9,
73.9,
145.07,
158.97,
158.97,
158.97,
159,
159,
159,
154.2,
156.1,
150,
150.21,
212.1,
106.05,
5,
5.44,
160,
158.97,
158.97,
158.97,
158.68,
317.34,
158.67,
157,
156.57,
156.57,
159,
159.47,
159,
159.24,
159.58,
159.58,
160,
153.81,
80,
77,
157.86,
157.86,
158.89,
158.89,
158.97,
158.97,
158.97,
158.64,
158.64,
157.94,
159.59,
159.59,
159.59,
161,
147.82,
7,
7,
138,
145.51,
145.51,
303.76,
156.33,
156.33,
156.33,
156.33,
156.33,
153.9,
154,
77.12,
155,
161.15,
161.15,
160,
159.95,
160,
158.67,
158.67,
160,
144,
72.02,
144.04,
144.04,
72,
159.23,
159.23,
158.99,
148.25,
159.52,
159.52,
160,
160,
155,
155.13,
155.13,
159,
159,
159.23,
159.23,
161,
160.91,
157.92,
138.45,
5,
153.63,
153.63,
154,
155,
155,
154.24,
154.06,
154.06,
153.97,
154.72,
154.72,
154,
160,
160,
160,
159.78,
158.97,
158.97,
158.97,
142.47,
142.47,
142.47,
142.47,
158.97,
158.97,
158.97,
159.21,
159.41,
159.41,
159.97,
160,
159.56,
80,
80.31,
1,
80.18,
154.23,
153.49,
153.49,
155.58,
157,
160,
160,
149,
154.8,
160,
160,
160,
159.55,
159.55,
153.8,
153.8,
131.4,
159.02,
160,
160,
160,
159.73,
159.73,
79.87,
158,
159.42,
159.97,
159.97,
151,
150.71,
159,
159,
159.19,
160.35,
160.35,
160,
154.65,
155.08,
153,
154.07,
154.13,
154.13,
154.13,
155,
156,
156,
155.68,
155.68,
141,
141,
141,
140,
1,
15,
140.87,
140.87,
15.54,
15.54,
140.87,
158.97,
159,
158.71,
159,
158.59,
159,
153.62,
153.62,
6,
159.96,
160,
161,
81,
154.62,
154.62,
154.7,
151,
138.49,
151.36,
8.15,
118.55,
118.55,
142.27,
160,
160,
160,
159.01,
159,
158.97,
159,
159,
158.71,
158.71,
148,
160.05,
160.05,
159,
159,
159,
159,
159,
159,
159,
160,
159,
159,
159.56,
159.56,
159.56
],
"xaxis": "x",
"y": [
2670,
121880,
45100,
95000,
191685,
205100,
5000,
80000,
105000,
384000,
60000,
50000,
69600,
0,
95500,
76450,
4000,
43700,
144000,
220000,
23900,
32900,
34386,
83334,
168155,
230600,
9800,
15000,
46900,
0,
35000,
27000,
27000,
15000,
64600,
64600,
49653,
102170,
100000,
100000,
150000,
79335,
100000,
100000,
258336,
140000,
62500,
62500,
88600,
55000,
0,
75000,
90000,
90000,
90000,
170600,
4500,
63200,
63200,
200000,
200000,
0,
100,
10500,
0,
10000,
0,
338000,
200448,
100224,
30000,
109200,
166500,
19100,
71520,
54800,
134300,
49653,
92370,
207200,
180000,
103600,
0,
42000,
42000,
218000,
218000,
41760,
41760,
41760,
202000,
279375,
108000,
32200,
41000,
27000,
55800,
0,
0,
3872,
74368,
1789155,
2526100,
800000,
20000,
20000,
60000,
110000,
110000,
18500,
40000,
45000,
55000,
77800,
77800,
80000,
85000,
35000,
67360,
67360,
34306,
45900,
50000,
71000,
71000,
22950,
9000,
15000,
65400,
135000,
49653,
88280,
40000,
55000,
0,
55000,
157000,
41000,
41000,
139270,
174050,
68000,
180000,
70000,
40000,
2670,
13000,
13000,
13000,
57000,
82500,
7000,
60000,
60000,
15000,
70000,
70000,
42000,
21000,
0,
40000,
40000,
2667,
0,
33600,
0,
132000,
168155,
198100,
14800,
30000,
56100,
190000,
103945,
103945,
77500,
150000,
201780,
20000,
25000,
890,
31300,
65000,
120000,
100000,
25000,
87360,
27000,
24000,
48000,
47000,
18500,
18500,
55000,
55000,
137500,
0,
20000,
85000,
28200,
60000,
85000,
85000,
85000,
230000,
67600,
53700,
186000,
64000,
73000,
88239,
300000,
30000,
30000,
60000,
62400,
62400,
90000,
50000,
140000,
60800,
42500,
55000,
55000,
136194,
50000,
30000,
30000,
60000,
60000,
27500,
30000,
27750,
27250,
500,
0,
60000,
70610,
5900,
312,
73000,
25000,
50000,
100000,
35333,
44000,
42500,
0,
107000,
890,
78400,
65000,
27000,
18500,
173200,
173200,
44000,
70000,
12000,
12000,
3000,
60000,
60000,
60100,
25000,
25000,
25000,
20000,
20000,
0,
72720,
78174,
168155,
292900,
36400,
39300,
105500,
30000,
30000,
30000,
30000,
15000,
15000,
29000,
26000,
54800,
80000,
71570,
71570,
105180
],
"yaxis": "y"
},
{
"hovertemplate": "RM=336 - Sasman<br>animation_frame=2003<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "336 - Sasman",
"marker": {
"color": "#00cc96",
"symbol": "circle"
},
"mode": "markers",
"name": "336 - Sasman",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
160,
159,
159.99,
79,
159.65,
159,
160,
159,
159,
159,
160.37,
160.37,
160,
160.22,
160.22,
160.22,
160,
160.37,
160,
160.02,
160,
160,
159,
159,
160,
160,
160,
157.15,
157.15,
157.15,
153.35,
159.94,
159,
159,
159.14,
159.14,
159.14,
158.97,
158.97,
314.84,
158.78,
159,
139,
139,
139,
159,
160,
161,
159.6,
138,
138,
138.31,
138.31,
138.31,
158.97,
157,
160,
159.18,
159.18,
79.68,
79.68,
79.68,
141.74,
141.74,
141.74,
141.74,
141.74,
141.74,
141.74,
141.74,
163,
163,
160,
161,
160.83,
157,
157,
155,
77.59,
77.59,
155.18,
158,
158,
157.89,
79,
130.54,
154.92,
151.69,
160.27,
160,
158,
157.97,
160.26,
160,
158,
158,
157,
157.29,
153.59,
153.59,
0,
135,
156,
152.63,
160,
159,
159,
159.32,
158.5,
53.19,
146,
160,
160,
160.29,
160.29,
160.29,
160.29,
160,
131,
131,
159.18,
159.18,
159,
79.03,
79,
143.39,
143.3,
149,
149,
160,
160,
158,
160,
159.14,
160,
159.62,
159.61,
159.61,
159,
159,
160.64,
160.36,
160.36,
160,
160,
154,
160,
158,
158.14,
158.14,
158.14
],
"xaxis": "x",
"y": [
40000,
45000,
25400,
32175,
46725,
53750,
30000,
50000,
50000,
50000,
135000,
140000,
55000,
200000,
300000,
300000,
36300,
155000,
16000,
47190,
53000,
56000,
67475,
40000,
45000,
34120,
30000,
200000,
500000,
500000,
375000,
60000,
0,
50000,
155000,
341000,
341000,
21000,
21000,
231952,
90954,
45000,
20000,
50000,
50000,
53200,
40000,
60000,
50000,
0,
50000,
130000,
286000,
286000,
37000,
234687,
41500,
115600,
110887,
27500,
75000,
75000,
0,
0,
124998,
0,
0,
124998,
124998,
95000,
50000,
85000,
75075,
50000,
78200,
35000,
35000,
0,
104000,
104000,
208000,
75000,
75000,
135400,
25850,
60000,
92800,
150000,
100000,
92140,
20000,
100000,
115200,
131216,
85700,
28200,
0,
75000,
0,
0,
30000,
0,
57000,
0,
70000,
40000,
60000,
140000,
30000,
26667,
1,
33000,
33000,
50000,
50000,
45000,
55000,
35000,
45000,
45000,
30000,
30000,
70000,
86750,
44737,
44000,
170000,
48600,
44000,
45000,
45000,
70000,
50000,
200000,
15000,
15000,
22000,
22182,
33600,
41250,
80000,
50000,
50000,
35000,
55000,
68100,
55000,
50000,
155000,
341000,
341000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=215 - Stanley<br>animation_frame=2003<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "215 - Stanley",
"marker": {
"color": "#ab63fa",
"symbol": "circle"
},
"mode": "markers",
"name": "215 - Stanley",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
160,
160,
159,
159,
159,
159.02,
160,
160,
160,
159.92,
159.92,
160,
160,
161.05,
160,
159.73,
160,
160,
169,
169,
169,
169,
163,
162.85,
160,
160,
159.23,
182.45,
182.45,
160,
160,
160,
161,
160,
160,
161,
160,
160,
158.34,
122,
122.36,
122.36,
160,
159,
161,
160.77,
115,
159.09,
159.09,
159.09,
160,
159,
161,
161,
160.87,
160.87,
160.87,
144,
160,
153,
153,
152.71,
152.71,
152.71,
159.75,
160,
160,
159.3,
159,
158.93,
156.84,
159.73,
159,
44,
112,
160,
160,
161,
160.27,
160.09,
159,
160,
159.59,
157.99,
151.58,
160,
160,
160,
159,
160,
158,
158.39,
158.39,
160,
160,
159,
160,
160.1,
162,
161,
161.44,
160,
160.6,
160,
159.64,
159.34,
159.34,
159.34,
160,
161,
161
],
"xaxis": "x",
"y": [
20480,
34300,
40000,
50250,
50250,
306400,
71410,
90000,
36800,
66000,
125000,
40000,
50000,
156660,
125000,
245500,
12000,
40740,
48485,
52000,
52000,
101235,
55000,
178000,
40000,
62750,
20000,
70200,
140800,
47000,
47000,
40000,
65000,
36680,
35000,
32000,
40000,
45000,
54000,
27500,
146000,
200000,
40000,
42000,
35000,
95000,
26960,
40000,
100000,
114000,
58400,
33000,
48485,
40000,
44145,
64170,
238290,
35000,
43000,
95000,
95000,
104846,
152407,
243750,
50010,
47790,
30000,
65000,
78149,
85000,
51000,
115000,
25125,
0,
0,
33000,
40000,
50000,
30000,
60010,
32000,
55000,
70000,
35000,
75000,
25000,
30000,
30000,
70000,
27000,
37500,
122750,
120000,
60000,
91335,
40000,
43000,
125000,
50000,
60000,
85000,
36000,
130260,
65000,
320000,
135000,
135000,
125000,
45000,
20000,
30000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=247 - Kellross<br>animation_frame=2003<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "247 - Kellross",
"marker": {
"color": "#FFA15A",
"symbol": "circle"
},
"mode": "markers",
"name": "247 - Kellross",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
160,
159.01,
162.07,
161.09,
161,
160,
160,
160,
160,
160,
159.96,
159,
159.08,
158,
151.33,
162,
157,
157.16,
149.09,
148.69,
148.69,
148,
160,
160,
158,
158.08,
160,
160.29,
160.29,
158,
158,
156.41,
155,
155,
1,
160,
160,
159.56,
158.22,
161,
160.86,
159.42,
159.06,
159.24,
160,
158,
157.93,
160.21,
163,
149.7,
149.7,
150,
150,
150,
95.51,
95.51,
95.51,
42,
5.5,
42,
42,
158.55,
160,
160,
160,
160,
157.22,
157.96,
149,
148.43,
147.6,
147.6,
159,
159,
159,
158.63,
158,
158.21,
159.42,
159,
159,
159,
158.93,
159,
158.08,
158.08,
158.08,
159.59,
159.59,
159,
162.23,
149.5,
149.47,
148,
160,
159,
156.5,
155.36,
160,
160,
156.57,
155.14,
155.14,
156.51,
156.51,
156.51,
160,
160,
157.88,
156.64,
150,
143,
143
],
"xaxis": "x",
"y": [
30000,
70000,
35000,
86000,
34025,
27250,
35380,
25000,
25000,
25000,
100000,
40000,
43720,
40739,
26000,
43000,
36000,
36000,
37500,
24000,
24000,
27250,
27500,
32500,
36000,
75000,
40000,
40000,
40000,
100000,
100000,
33120,
0,
23578,
0,
34000,
17700,
70000,
40000,
61000,
61000,
130000,
15000,
100500,
30000,
37500,
40000,
75000,
43000,
10000,
32000,
32000,
32000,
37730,
119570,
130187,
130187,
0,
0,
0,
0,
26000,
40000,
0,
36000,
50000,
120000,
30000,
25000,
40000,
29800,
29800,
25001,
25001,
40001,
27780,
48200,
48200,
60000,
0,
34000,
10000,
140000,
46000,
40000,
40000,
40000,
27000,
0,
43450,
30000,
30800,
62900,
42500,
23567,
50550,
32062,
30000,
27860,
29000,
34000,
132000,
132000,
130000,
130000,
130000,
25000,
31000,
27000,
76500,
60000,
29500,
29500
],
"yaxis": "y"
},
{
"hovertemplate": "RM=070 - Key West<br>animation_frame=2003<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "070 - Key West",
"marker": {
"color": "#19d3f3",
"symbol": "circle"
},
"mode": "markers",
"name": "070 - Key West",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
159.43,
155,
155.14,
156.77,
159,
159.09,
158.83,
159.81,
157,
157.98,
158.93,
158,
158,
158,
157.72,
160,
160,
156,
156,
156,
156,
156,
156.08,
79.56,
158.49,
158.49,
159,
159,
159.31,
160.17,
145,
145,
159,
159,
158.88,
160,
152,
158.87,
159,
158.36,
158.94,
159,
158.96,
160.09,
150,
150,
160,
160,
160,
158.63,
138.47,
138.47,
3,
156.86,
156.86,
158,
159,
159,
157,
160,
156,
152,
0,
158.57,
158.57,
159,
158.36,
79.06,
79.06,
158.12,
158.12,
79,
79,
79,
79,
160.33,
160,
160,
159.69,
159.69,
156.95,
157,
157,
157.05,
158,
158.16,
157.73,
160,
159.91,
159.91,
157.84,
159,
159,
159,
159,
159,
158.9,
158.9,
156.67,
156.54,
160,
160,
160,
158.97,
159,
157,
157.43,
161,
160.61,
160,
160,
160,
159.98,
160,
160,
160,
160.51,
159,
160,
159.9,
157.9,
159,
159,
159,
158.84,
158.84,
158.15,
158.15
],
"xaxis": "x",
"y": [
160075,
30000,
59232,
32000,
33000,
50000,
186687,
23055,
19875,
20833,
44775,
30000,
78125,
78125,
121250,
15000,
25000,
18000,
18000,
28250,
44000,
51000,
90000,
20000,
109000,
75000,
39000,
39000,
152160,
52100,
0,
26000,
78125,
78125,
121250,
40000,
29018,
0,
0,
12900,
47625,
30000,
150000,
52000,
20000,
20000,
24800,
24800,
33000,
117472,
30500,
60580,
0,
12500,
300000,
22500,
40000,
40000,
31875,
35000,
30000,
15000,
0,
36500,
54000,
3550000,
1617500,
40000,
100000,
100000,
100000,
22300,
22300,
22300,
22300,
52100,
30000,
30000,
70000,
69000,
30000,
30000,
30000,
35000,
33600,
20000,
95103,
25925,
129700,
129700,
64757,
39900,
39900,
47000,
47000,
47000,
199250,
199250,
30000,
186688,
26595,
31000,
31000,
35000,
28620,
15000,
52780,
32000,
96838,
11360,
11360,
25000,
91000,
30000,
0,
25500,
68384,
25100,
30000,
99000,
163625,
45000,
43750,
58240,
28000,
28000,
28000,
28000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=184 - Grayson<br>animation_frame=2003<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "184 - Grayson",
"marker": {
"color": "#FF6692",
"symbol": "circle"
},
"mode": "markers",
"name": "184 - Grayson",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
160,
0,
0,
0,
145.99,
145.99,
160,
159.1,
158,
161,
161,
161,
161,
160,
160,
160,
163,
160,
160,
160,
160,
159,
160,
160,
160,
160,
160,
161,
161,
160.92,
165,
165,
165,
165,
160.64,
160.64,
152,
152,
159.88,
159,
161,
160.63,
160.63,
159,
160,
16,
16,
16,
158.87,
158.86,
160,
160,
151.93,
160,
160,
160,
161.19,
160,
159.71,
159.71,
157.34,
148,
147.61,
160.74,
159.54,
159,
161,
161,
161.03,
162,
2,
1,
160,
162,
153.49,
155,
160,
160,
160,
160,
160,
160,
153.11,
161,
162,
160,
161,
160,
160.39,
160,
160,
159.63,
159,
157.61,
157.61,
165.44,
165.44,
161,
161,
160
],
"xaxis": "x",
"y": [
16000,
20000,
6050,
6050,
125000,
85000,
28000,
87000,
46320,
25000,
28357,
29600,
32500,
0,
20000,
35420,
35420,
30000,
36999,
36998,
25000,
46320,
40000,
23000,
24500,
28750,
28750,
50000,
77050,
89840,
34425,
33450,
42000,
42000,
70000,
105500,
43000,
41000,
101000,
37000,
45428,
146700,
107000,
31000,
23000,
49878,
4583,
4583,
126000,
105500,
44000,
44000,
37500,
33230,
33230,
38000,
160000,
25400,
28000,
27250,
17500,
34000,
180000,
152000,
32000,
62000,
73400,
80000,
130000,
20258,
90000,
93600,
30500,
33000,
35000,
31874,
41800,
41800,
41800,
41800,
41800,
41800,
116000,
27500,
46320,
73400,
48400,
25000,
72000,
39999,
44000,
85000,
32750,
35000,
41000,
125000,
110000,
35385,
35385,
40000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=276 - Foam Lake<br>animation_frame=2003<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "276 - Foam Lake",
"marker": {
"color": "#B6E880",
"symbol": "circle"
},
"mode": "markers",
"name": "276 - Foam Lake",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
159.94,
53.33,
159,
159,
159,
53.52,
160,
160,
159,
159,
140,
140.69,
70.35,
70.35,
3.28,
8.4,
160,
160,
160,
159.64,
159.67,
160,
158.51,
158.51,
0,
0,
0,
160,
160,
160,
159,
159.02,
156,
156.13,
160,
160,
160,
160,
159,
160,
160,
159,
160,
160,
138.79,
138.79,
160,
159.67,
159,
158.8,
157,
156.83,
159.41,
159.41,
160,
0.24,
160,
160,
160,
146,
145.88,
160,
160,
160.24,
158,
158,
1,
157,
160,
160.23,
80,
160,
157.79,
161,
160,
160.23,
160,
159,
159,
159,
158.6,
318.4,
159.2,
160,
159,
159.48,
160,
157.9,
157.78,
160,
153.07,
159,
149.43,
160,
158.81,
159,
159,
158.9,
158.9,
157.67,
139,
139.07,
159.42,
159.42,
160,
160,
160,
140.1,
160,
160,
159.41,
159,
159.25,
158.96,
159.33,
159.33,
155,
155.4,
159.46,
157.81,
159.94,
158.55,
158.55,
159.42,
159.42,
159.42,
79.71,
159.42,
159.62,
159.11,
159.39,
160,
159.81
],
"xaxis": "x",
"y": [
160000,
2000,
30000,
30000,
30000,
65100,
32000,
33500,
35000,
128800,
33332,
200000,
100000,
100000,
300,
600,
15860,
39000,
37000,
115000,
18000,
76417,
75000,
75000,
32500,
32500,
1,
33000,
45000,
27000,
40000,
186100,
55600,
164000,
63200,
180800,
0,
35000,
80000,
25000,
40000,
33000,
52000,
52000,
60000,
250000,
26000,
222750,
40000,
159200,
51255,
142000,
90000,
90000,
40880,
480,
12550,
12550,
46640,
68290,
153000,
39840,
44820,
30000,
40000,
75000,
0,
0,
59900,
199200,
24000,
25000,
138900,
40720,
50819,
140000,
30000,
30000,
40000,
58256,
165000,
103000,
75000,
43140,
60000,
88900,
47000,
54600,
184200,
16740,
70000,
95000,
0,
39000,
200000,
50000,
95000,
158000,
238608,
32426,
67700,
203500,
24000,
56000,
30000,
30000,
30000,
50000,
32000,
32000,
60480,
95471,
158000,
282722,
33110,
217500,
50000,
100000,
20000,
60000,
30000,
30000,
30000,
130730,
130730,
130730,
65365,
133000,
180000,
154500,
34700,
25000,
25000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=305 - Invermay<br>animation_frame=2003<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "305 - Invermay",
"marker": {
"color": "#FF97FF",
"symbol": "circle"
},
"mode": "markers",
"name": "305 - Invermay",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
158.84,
159,
158.63,
158.97,
159,
158.02,
158.02,
158.02,
157.37,
157.37,
159.16,
159,
159,
158,
158,
0,
0,
66.5,
66.5,
66.5,
66.5,
159.04,
158.94,
26,
26,
26,
25.25,
9.5,
3.5,
3.5,
160,
160,
160,
142.93,
108.58,
33.86,
160.59,
160.59,
159,
19.81,
158.5,
160,
80,
83,
3,
82.52,
82.52,
82.52,
82.52,
160,
160,
160,
143.21,
143,
9,
134,
9,
134,
159.01,
158.53,
159.56,
159.56,
159.11,
159.11,
159.11,
47,
46.57,
157.62,
159.44,
159.13,
159,
160,
0,
125
],
"xaxis": "x",
"y": [
20000,
60000,
59930,
20000,
20000,
0,
55880,
152400,
40000,
40000,
26000,
50800,
60000,
20000,
20000,
0,
10000,
20000,
20000,
20000,
10000,
33000,
30000,
8500,
2400,
2400,
8865,
0,
0,
0,
32000,
45000,
28000,
25000,
49500,
33000,
160000,
160000,
35000,
11250,
90000,
70000,
0,
0,
0,
80000,
80000,
80000,
125500,
40000,
30000,
48000,
50000,
50000,
1000,
49000,
1000,
49000,
125000,
250000,
10500,
9700,
73100,
80000,
171000,
17400,
42900,
28300,
32500,
135000,
46000,
25650,
62000,
50500
],
"yaxis": "y"
},
{
"hovertemplate": "RM=100 - Elmsthorpe<br>animation_frame=2003<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "100 - Elmsthorpe",
"marker": {
"color": "#FECB52",
"symbol": "circle"
},
"mode": "markers",
"name": "100 - Elmsthorpe",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
157.83,
157.83,
160,
160,
160,
157,
158,
157.44,
157.44,
161,
25.42,
0,
0,
0,
19.64,
128.06,
128.63,
158,
157.92,
157.92,
160,
161.81,
159.92,
159.92,
0,
0,
157,
157,
157,
160,
160.85,
160,
153.49,
154,
154,
160,
160,
158,
157,
158.41,
158.41,
158.41,
159.6,
159.6,
159,
158.52,
158.52,
158.52,
150,
74.87,
160,
160,
159.84,
159.09,
159.09,
159.09,
158,
157.85,
157.85,
158.77,
157.97,
157.97,
78.99,
159,
159,
159.5,
152,
156,
3,
156,
3,
160,
160,
157.8,
1,
159,
318.64,
159.32,
159.32,
160,
159,
160,
159.18,
159.18,
159.18,
160,
159,
159,
159.48,
159.48,
160,
160,
160.05,
160.05,
161,
160,
156.34,
158.87,
161,
160.85,
120.64,
160,
160,
148,
161.31,
161.31,
161.31,
160,
160,
160,
160,
160.06,
160.06,
160,
159,
160,
159.73,
160,
160,
160,
161,
161,
161.33,
161.33,
160,
159,
159,
159,
159.36,
160,
79.96,
39.98,
160,
160,
160
],
"xaxis": "x",
"y": [
57100,
57100,
25350,
25350,
48398,
42000,
25850,
46300,
76360,
23250,
6120,
1,
1,
1,
2,
50,
100,
19000,
115000,
138000,
55000,
30000,
39064,
25779,
500,
49500,
120000,
120000,
120000,
14675,
42705,
38000,
27425,
50000,
50000,
25600,
19000,
25000,
25000,
68650,
68650,
68650,
22500,
0,
16000,
35000,
39600,
99689,
38200,
60000,
23720,
15000,
177000,
40000,
41820,
48498,
75000,
87700,
160000,
18000,
29200,
29200,
14600,
44445,
44445,
200320,
20000,
6000,
6000,
6000,
6000,
28000,
42000,
135135,
360,
0,
79798,
129300,
129730,
20000,
37700,
59500,
37142,
75000,
54000,
32500,
20000,
31050,
44300,
119622,
15000,
48000,
105216,
105216,
35260,
30000,
60000,
119798,
16000,
34200,
25650,
0,
40000,
37000,
37142,
75000,
72500,
34000,
26750,
26750,
10000,
311000,
311000,
35420,
40000,
41910,
76360,
47000,
47000,
32000,
25958,
35714,
75000,
68600,
53333,
30480,
30480,
30480,
65000,
35000,
87500,
43750,
21000,
28000,
45125
],
"yaxis": "y"
},
{
"hovertemplate": "RM=275 - Insinger<br>animation_frame=2003<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "275 - Insinger",
"marker": {
"color": "#636efa",
"symbol": "circle"
},
"mode": "markers",
"name": "275 - Insinger",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
160,
159.59,
148.48,
157,
157,
159,
159.6,
159.6,
160,
160,
160,
159.03,
159.03,
158,
158.34,
160,
160,
159,
159.44,
159.38,
159,
158,
158,
159.64,
160,
160,
160,
159,
160,
159.48,
160,
160,
160,
159,
158.65,
160,
159.37,
159,
160,
159.51,
160,
159.44,
158,
155,
154.59,
160,
160,
159.88,
159.88,
160.03,
160.03,
160.03,
157,
157,
157,
157,
157.26,
157.26,
160,
158,
122,
88.67,
88.67,
161,
161,
161,
160.82,
160.82,
160.82,
141,
141.39,
141.39,
130,
161,
160,
160,
136,
160,
160,
159.7,
159.7,
159.31,
159.31,
159,
159,
158,
158,
158.44,
158.44,
158.44,
160,
160,
159.34,
318.68
],
"xaxis": "x",
"y": [
45000,
55000,
100000,
18920,
34000,
23000,
100000,
103265,
37940,
37940,
15000,
37000,
50000,
75000,
242000,
25000,
40000,
52000,
77000,
180000,
26000,
0,
30000,
161613,
63000,
12000,
32000,
81600,
14000,
106250,
15000,
15000,
15000,
0,
25000,
42000,
120000,
33000,
23250,
80960,
22000,
106250,
10000,
0,
33800,
36100,
45000,
70000,
70000,
110000,
150000,
147000,
38000,
38000,
85000,
85000,
95000,
76500,
28000,
0,
20000,
80000,
80000,
53200,
75500,
65000,
175000,
175000,
125000,
30000,
112500,
120000,
0,
70000,
30000,
35350,
42500,
41000,
41000,
60000,
100000,
120000,
120000,
40000,
40000,
15000,
15000,
15000,
35000,
35000,
30000,
40000,
68900,
137800
],
"yaxis": "y"
},
{
"hovertemplate": "RM=250 - Last Mountain Valley<br>animation_frame=2003<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "250 - Last Mountain Valley",
"marker": {
"color": "#EF553B",
"symbol": "circle"
},
"mode": "markers",
"name": "250 - Last Mountain Valley",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
159,
159.7,
159.08,
160,
160.1,
160.1,
159.49,
159.49,
160,
160,
160,
160,
159.82,
159.82,
160,
159,
159.45,
159.45,
160,
160,
160,
159,
160,
159.55,
160,
160,
159,
161,
160,
160,
161,
161,
159,
159,
160,
158,
158,
160,
20.04,
20.04,
20.04,
20,
20,
20,
20,
160,
160,
154.51,
160,
159,
159,
159,
160,
160,
160,
160,
160,
160.05,
160,
159.69,
159.69,
159.68,
319.36,
160,
158,
158,
157.67,
157.67,
160,
161.07,
161.07,
147,
147,
148.05,
158.13,
68.5,
160,
160,
159.57,
159.57,
159.57,
159.34,
155.89,
155.89,
156,
158,
158,
158.1,
154.91,
154,
154.22,
158.44,
158.44,
158.44,
158.92,
158.98,
159,
160,
160,
159.92,
159.92,
160,
158,
158,
158.45,
160,
160,
160,
161,
160.64,
160,
160,
161,
160.99,
158,
160
],
"xaxis": "x",
"y": [
15000,
156600,
200000,
50000,
45000,
45000,
34000,
40000,
35100,
40000,
50000,
25000,
82800,
86850,
24115,
24000,
170000,
210000,
40000,
34120,
34120,
50000,
31100,
45000,
35000,
35000,
35000,
56000,
16920,
16920,
50000,
47000,
36500,
36500,
18200,
3125,
3125,
5000,
3750,
3750,
3750,
5000,
4000,
15000,
12000,
33500,
33500,
93400,
38565,
38565,
38565,
40000,
10000,
32000,
11000,
11000,
43750,
25000,
47000,
133220,
150000,
20000,
40000,
27500,
40000,
40000,
40000,
40000,
40000,
50000,
75000,
30000,
46000,
179000,
112051,
21500,
12000,
32600,
62500,
68750,
85250,
75000,
28000,
28000,
25000,
44500,
44500,
145992,
25000,
19000,
161750,
27700,
30000,
35000,
35000,
40000,
65000,
12000,
39700,
62500,
123801,
25000,
35000,
21000,
150000,
35000,
50000,
50000,
30000,
89210,
0,
30000,
40000,
80000,
89500,
45000
],
"yaxis": "y"
}
],
"name": "2003"
},
{
"data": [
{
"hovertemplate": "RM=213 - Saltcoats<br>animation_frame=2004<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "213 - Saltcoats",
"marker": {
"color": "#636efa",
"symbol": "circle"
},
"mode": "markers",
"name": "213 - Saltcoats",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
160,
160,
160,
160,
160,
160.06,
160,
159.9,
160.54,
160,
160.09,
160,
161,
160.14,
160.14,
53.33,
158,
159,
158.58,
0,
155.62,
142.67,
160,
160,
159.84,
160,
130,
129.95,
157.66,
160.38,
160.38,
160.38,
160,
160.02,
146,
160,
160,
160,
159.85,
161,
160,
159.55,
51.13,
161.7,
160,
160,
160,
158.21,
158.38,
158.38,
160,
160,
160,
160,
154,
153.97,
153.97,
161,
165,
159,
159,
159,
160,
160,
160,
160.47,
160.47,
160.6,
160,
0,
160,
159.95,
79.98,
156,
0,
0,
0,
160
],
"xaxis": "x",
"y": [
36900,
50000,
20538,
40000,
68000,
168000,
50000,
180000,
105500,
35815,
172000,
30000,
27995,
109050,
109050,
16400,
32500,
77805,
160000,
400,
166429,
0,
60000,
39998,
26000,
50000,
32500,
226600,
110000,
119000,
158000,
105500,
15000,
100000,
115000,
35000,
55000,
50000,
174800,
16000,
58200,
200000,
5000,
160000,
39360,
62010,
62204,
40155,
187500,
236000,
0,
11310,
35000,
36000,
30000,
190800,
160000,
56400,
70000,
42160,
63960,
64160,
33334,
35030,
37879,
187500,
236000,
36000,
70000,
34000,
56500,
111124,
55562,
90000,
15000,
30000,
50000,
34900
],
"yaxis": "y"
},
{
"hovertemplate": "RM=488 - Torch River<br>animation_frame=2004<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "488 - Torch River",
"marker": {
"color": "#EF553B",
"symbol": "circle"
},
"mode": "markers",
"name": "488 - Torch River",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
153.59,
160,
6,
158.88,
158.88,
156.66,
155,
155,
161,
158.38,
158.38,
160,
160,
160,
160,
160,
160.08,
160.08,
160.08,
143.54,
8.27,
152.07,
160,
148,
148.27,
148.27,
160,
160,
160,
159.72,
160,
160,
157,
156.73,
156.73,
160,
160,
158,
159,
159.1,
159.1,
159.09,
160,
158,
158,
3.85,
151.65,
0,
93.73,
154,
154.19,
160,
160,
160.38,
160,
159,
160,
159.73,
0.8,
159.95,
160,
160,
160,
160,
319.46,
80,
157.99,
160,
152,
152.19,
160,
160.31,
157.34,
160,
159.28,
159.28,
160,
159,
160,
0.09,
160.78,
160,
85,
85,
85,
160,
160,
159.74,
159,
159.05,
158.99,
158.99,
159.45,
78.9,
78.9,
157.8,
79,
79,
79,
79,
79,
161,
161,
161,
161,
160.8,
79.18,
79.18,
161,
161,
160.71,
160.68,
159.65,
159.65,
160,
160,
129,
160,
161,
161,
160,
160,
160,
159.72,
159.72,
80.03,
160,
160,
160.42,
145,
145,
144.71,
159.69,
160,
160,
160,
160,
80,
160,
153.53,
153.53,
153,
152.53,
76.5,
156.74,
156.74,
156.7,
156.7,
160,
159.11,
159.11,
160,
160,
159,
159.23,
160,
160,
159.64,
161,
161,
160,
160,
159.53,
109,
109,
8,
150,
160,
160,
159.68,
159.81,
150,
150,
149.71,
160,
160,
158.34,
158.34,
161,
147.99,
147.99,
147.99,
158.24,
148.26,
159,
158.17,
160,
158.99,
158.89,
158.89,
158.97,
158.75,
154.55,
0,
154.04,
160,
160,
159.78,
159.78,
156.58,
156.58,
3,
8.03,
0.52,
0.74,
149,
149.17,
160,
160,
159.51,
160,
159.7,
159.7,
158,
158,
160,
160,
160,
159,
156,
155.64,
137.73
],
"xaxis": "x",
"y": [
77500,
0,
890,
200000,
209220,
25000,
0,
40100,
50000,
101000,
101000,
40000,
74000,
60000,
200000,
200000,
200000,
300000,
220000,
0,
100,
15000,
26500,
0,
50000,
50000,
31800,
31800,
31800,
112750,
34000,
39000,
65535,
165000,
245500,
29000,
39200,
39200,
40000,
300000,
290000,
300000,
95945,
76600,
77583,
200,
80000,
33500,
50000,
0,
60000,
0,
40000,
416000,
2000,
150000,
15000,
100000,
100,
85000,
27000,
40000,
47320,
23800,
100000,
9000,
50000,
34000,
0,
32000,
25000,
101550,
87000,
0,
45290,
85000,
0,
28000,
40000,
100,
92700,
27500,
14600,
25000,
100000,
30000,
20000,
60000,
25000,
30000,
80000,
0,
62600,
35500,
35500,
170000,
14000,
28000,
30000,
40000,
40000,
0,
29000,
55000,
50000,
81840,
50000,
50000,
53000,
10100,
225000,
0,
400000,
525000,
6000,
6000,
6000,
0,
68520,
68520,
55000,
24000,
80000,
190000,
252000,
120000,
40000,
35000,
185000,
0,
19000,
60000,
100000,
53000,
35000,
21000,
17900,
8950,
22000,
99788,
99788,
115600,
180000,
57800,
51040,
51040,
234600,
294375,
25000,
154000,
100000,
58800,
58800,
60000,
105000,
35000,
27500,
148000,
70000,
70000,
31500,
18500,
31040,
0,
60000,
890,
44100,
15000,
40000,
43000,
102000,
2500,
2500,
61000,
40000,
19000,
102500,
175000,
47600,
120000,
150000,
175000,
250000,
0,
58300,
141500,
60000,
7500,
105149,
105149,
52500,
131750,
42000,
890,
69760,
28560,
55980,
168155,
216000,
20000,
20000,
6000,
0,
100,
100,
0,
339000,
35000,
0,
75000,
55208,
168155,
212400,
30000,
50000,
19950,
50000,
51000,
15000,
20000,
90000,
0
],
"yaxis": "y"
},
{
"hovertemplate": "RM=336 - Sasman<br>animation_frame=2004<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "336 - Sasman",
"marker": {
"color": "#00cc96",
"symbol": "circle"
},
"mode": "markers",
"name": "336 - Sasman",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
159,
158.56,
160,
160,
159,
158,
160,
148,
74,
159.62,
158.01,
157.68,
160,
140.61,
140.61,
160.07,
160.07,
160,
160,
160,
160,
160,
159,
157.6,
160,
159,
159.36,
158.97,
160,
160.6,
160,
160.58,
160.58,
160,
160,
160,
160.09,
160.09,
160.09,
144.91,
0,
0,
159,
159,
158,
154.55,
160,
160,
161,
160.84,
160,
160,
160,
160,
160,
160,
160,
160,
160,
161,
161,
160,
160,
161,
80.4,
80.4,
161,
160.74,
158.71,
187,
158,
158,
160,
160,
160,
160,
160,
159,
160,
160,
159.57,
160.43,
160,
160,
160,
160,
159.76,
159.76,
160,
160,
160,
160,
159.5,
159.5,
158,
161,
161,
80.08,
80.08,
159.93,
160,
160,
160,
125,
125,
124.62,
124.62,
160,
160
],
"xaxis": "x",
"y": [
40000,
160000,
35000,
34500,
35000,
60000,
50000,
0,
30000,
46100,
25000,
180500,
65000,
137600,
154100,
160000,
160000,
38500,
40000,
40000,
43700,
43700,
44000,
0,
40000,
40000,
250000,
35000,
75000,
80000,
39700,
50000,
50000,
12400,
55000,
40000,
150000,
330000,
330000,
30000,
11000,
14100,
35400,
35400,
90000,
130000,
50000,
50000,
20000,
92000,
40000,
0,
60000,
30000,
50000,
120000,
230000,
62500,
45000,
30000,
78000,
34000,
76160,
55000,
80000,
80000,
56000,
56000,
53000,
0,
51936,
51936,
30240,
87606,
41000,
55000,
48950,
55000,
32000,
87000,
196265,
155000,
37000,
41100,
62802,
34000,
100000,
250000,
63700,
63700,
63700,
40000,
150000,
162793,
90000,
50000,
73800,
80000,
80000,
115200,
131216,
32880,
75700,
58370,
58370,
200000,
200000,
38000,
42500
],
"yaxis": "y"
},
{
"hovertemplate": "RM=215 - Stanley<br>animation_frame=2004<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "215 - Stanley",
"marker": {
"color": "#ab63fa",
"symbol": "circle"
},
"mode": "markers",
"name": "215 - Stanley",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
161,
161,
161,
158,
158,
153.55,
3.81,
160.25,
151.76,
152,
2,
150,
152.29,
152.29,
161,
161,
161,
160,
160,
160,
160,
160,
160.58,
159.49,
157,
160,
161,
160.84,
160.84,
160.84,
160.99,
161,
160,
159.8,
159.8,
159.8,
159.8,
160,
159.22,
159.22,
159,
158,
160,
159,
161,
163.11,
163.11,
160,
53.44,
26.72,
80.16,
152,
152.2,
160,
159.26,
167,
161,
160,
158.62,
159,
158.74,
158.74,
156,
156,
160,
160.08,
159.2,
143.06,
143.06,
145,
159.97,
159.97,
160,
160,
161,
64.46,
159.17,
159.17
],
"xaxis": "x",
"y": [
30000,
50000,
68802,
30000,
46000,
53700,
60100,
153000,
19000,
33300,
500,
44500,
452000,
496000,
30000,
50000,
64278,
30000,
23000,
23000,
40000,
53500,
130000,
100000,
40000,
27000,
35000,
71671,
90000,
90000,
50000,
85000,
28000,
45000,
304000,
441902,
187720,
30000,
45000,
45000,
37000,
40000,
25000,
24500,
50000,
87000,
126000,
40000,
30000,
15000,
45000,
45000,
25000,
30000,
44115,
46000,
59300,
35000,
42500,
60000,
35000,
35000,
47000,
25000,
45000,
70000,
41565,
25000,
32000,
92000,
80600,
125000,
80300,
80250,
30000,
12000,
38300,
38300
],
"yaxis": "y"
},
{
"hovertemplate": "RM=247 - Kellross<br>animation_frame=2004<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "247 - Kellross",
"marker": {
"color": "#FFA15A",
"symbol": "circle"
},
"mode": "markers",
"name": "247 - Kellross",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
158.55,
158,
156.58,
153,
160,
160,
160,
157,
156.33,
160,
157.24,
116,
1,
115,
115.56,
115.56,
158.16,
157,
157,
158.82,
158.82,
157.4,
160,
160,
157,
117.74,
159,
158.67,
158.67,
158.67,
160,
160,
157,
158.63,
160,
160,
160,
159,
159,
158.96,
158.96,
158.96,
160,
159,
160,
159.4,
160,
159.59,
160,
141.35,
160,
160,
159,
159.35,
161,
161,
164,
92.27,
160,
160,
160.36,
0,
160,
160,
156.7,
156,
156,
159.12,
157.48,
158.96,
161,
161,
133.16,
133.16,
160,
160,
160,
159.26,
160,
160,
160,
160,
159,
48,
108.99,
47.85,
156.84,
156.84,
161.42,
163,
162.76
],
"xaxis": "x",
"y": [
16000,
42250,
37500,
42500,
40000,
59400,
130000,
33800,
33963,
20000,
30000,
75000,
500,
89500,
90000,
320500,
35000,
46248,
46248,
24960,
32000,
135000,
31010,
20000,
85000,
1,
30000,
100000,
140000,
145000,
17000,
30000,
40909,
30000,
48000,
48000,
48000,
67390,
67390,
102800,
102800,
117262,
25000,
38565,
45000,
130000,
40000,
49800,
40320,
17000,
45000,
45000,
38000,
64000,
43000,
43000,
60000,
60000,
26000,
26000,
58750,
1,
25000,
40909,
31175,
32000,
32000,
116000,
30000,
82000,
6000,
79000,
0,
42000,
25575,
17500,
17500,
80000,
30562,
32000,
32000,
40400,
39414,
2100,
69500,
30515,
210370,
210370,
20500,
63200,
63200
],
"yaxis": "y"
},
{
"hovertemplate": "RM=070 - Key West<br>animation_frame=2004<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "070 - Key West",
"marker": {
"color": "#19d3f3",
"symbol": "circle"
},
"mode": "markers",
"name": "070 - Key West",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
161,
161,
161,
161,
159.22,
159.22,
160.13,
158.9,
160.13,
160,
160,
159.13,
159,
160,
160,
160.5,
159,
318.98,
159.49,
160,
157,
157,
160,
160,
159.95,
159.95,
159.95,
159.94,
160,
158,
159.99,
160,
160,
160,
160,
160,
160.01,
160,
160.5,
160,
320.28,
160.14,
160.14,
160.62,
160.62,
160.62,
160,
160,
160,
160,
160,
160,
319.16,
156.01,
156,
155.83,
155.83,
141.82,
141.82,
141.82,
161,
160,
160,
160,
160,
158,
158,
160,
160.15,
160,
160,
160,
160,
135,
135,
135,
142.33,
142.33,
139.72,
158,
158,
160,
160,
160,
160,
160,
160,
160,
160,
160,
160,
153.92,
153.21,
153.21,
125,
158.49,
158.61,
160,
160,
160,
160,
160,
159.91,
153.49,
159,
159,
26.43,
53
],
"xaxis": "x",
"y": [
20050,
0,
40000,
40000,
145300,
145300,
63800,
89000,
52000,
32500,
30000,
49667,
35000,
15000,
17250,
23500,
64600,
226460,
120000,
64500,
67430,
67430,
30000,
42900,
117515,
134100,
134100,
52000,
25000,
30000,
56200,
4500,
32000,
32000,
46250,
56250,
56250,
35491,
23500,
14000,
50440,
25220,
50000,
70000,
70000,
80000,
44000,
44000,
22000,
41040,
26000,
26000,
100400,
20000,
1,
28600,
28600,
30000,
20000,
20000,
52000,
29000,
29000,
50000,
25000,
29000,
29000,
28350,
52000,
0,
35918,
46917,
46917,
2,
41800,
67548,
33200,
20000,
38700,
34000,
47000,
25000,
25000,
25000,
25000,
32400,
32400,
32400,
76700,
84600,
20235,
37000,
37000,
37000,
1,
2500,
35000,
70000,
70000,
0,
24000,
21000,
52000,
30000,
33900,
33900,
12500,
15000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=184 - Grayson<br>animation_frame=2004<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "184 - Grayson",
"marker": {
"color": "#FF6692",
"symbol": "circle"
},
"mode": "markers",
"name": "184 - Grayson",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
160,
160,
160,
160,
160,
160.41,
159,
159,
159.48,
160,
158.35,
156.86,
167,
166.93,
160.76,
160.76,
158.96,
159,
159,
160,
160,
160,
15.5,
15.5,
15.5,
0,
0,
140.45,
140.45,
158.61,
159,
159,
166,
165.7,
160,
160.98,
161,
161.07,
161.07,
161,
161.23,
161.23,
159,
159,
159.25,
0,
157.94,
159.07,
159.07,
153.05,
160,
158,
158,
160.22,
161.21,
161.21,
161.21,
161.46,
161.46,
161.46,
158.3,
163,
163,
162.72,
159,
159,
158.82,
155,
159,
159.21,
160,
160,
159.24,
158.54,
160,
160,
157,
157,
157.16,
157,
157.46,
157.46,
157.46,
159.03,
159.03,
159,
160,
159.82,
160,
153,
160,
157,
157
],
"xaxis": "x",
"y": [
48325,
48325,
30300,
41667,
77050,
89840,
174500,
44000,
385000,
33414,
40000,
35543,
35542,
35542,
136000,
105500,
35000,
35000,
62000,
22500,
40000,
40000,
48393,
4583,
4583,
65000,
125000,
100000,
100000,
30000,
43334,
100000,
41000,
230000,
93000,
120000,
28000,
126600,
93000,
34800,
135000,
90000,
2500,
25000,
90000,
0,
35000,
22000,
23000,
220000,
33230,
0,
33230,
160000,
65160,
102500,
75000,
90000,
90000,
100000,
20000,
30450,
30450,
30450,
40000,
40000,
100000,
49350,
26000,
130000,
28000,
28000,
182500,
118500,
54010,
54010,
31000,
31000,
31000,
29600,
90300,
112000,
85000,
30000,
32500,
55050,
15000,
80000,
40000,
35000,
30000,
35000,
32000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=276 - Foam Lake<br>animation_frame=2004<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "276 - Foam Lake",
"marker": {
"color": "#B6E880",
"symbol": "circle"
},
"mode": "markers",
"name": "276 - Foam Lake",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
156.34,
156.34,
156.34,
159,
159,
159,
158.46,
160,
160,
160,
159,
159,
160,
159,
159.39,
160,
160,
160,
159,
159,
161,
160.19,
160,
160,
149.9,
160,
159.24,
160,
160,
159.87,
160,
160,
160,
159.56,
159.56,
159.56,
160,
160,
159,
160,
159,
159,
160,
160.57,
160,
160,
159.92,
160,
160,
160.95,
160,
160,
160,
159.75,
160,
159,
159,
159.27,
159.27,
152.39,
151.62,
7.61,
159.23,
159,
159,
158.36,
154.89,
154.59,
160,
160,
160,
155.39,
159.84,
159.84,
160,
160,
158,
158,
160,
159.42,
154,
154,
5.39,
159,
159,
160,
160,
160,
160,
160,
160,
160,
160,
163.33,
163.33,
160,
136.93,
136.93,
159,
159.12,
160,
159,
159.02,
161,
159,
158.61,
160,
160,
143,
143.91,
159,
158.83,
160.53,
159.18,
159.18,
158,
158.49,
139,
160,
160,
160,
159.13,
159.13,
159.13,
160,
160,
160,
160,
159,
159,
159,
159.05,
160,
159.2,
160,
160.65,
157.95,
158,
158.19,
158.19,
160,
160,
160
],
"xaxis": "x",
"y": [
75000,
108260,
151667,
34000,
23000,
25000,
25000,
26000,
37000,
39165,
70000,
90000,
50000,
17500,
180000,
32000,
54450,
41700,
69000,
50000,
50000,
240000,
10000,
50000,
0,
20930,
220000,
40000,
60717,
186000,
0,
35000,
45000,
70000,
150000,
150000,
43000,
43000,
75000,
55000,
95000,
85000,
40000,
142000,
40000,
40000,
41800,
52000,
52000,
800000,
60000,
35000,
51024,
141000,
20000,
20000,
45000,
130000,
135000,
33225,
46000,
1455,
200000,
60000,
85000,
325000,
65000,
65000,
45040,
65085,
65000,
55000,
125000,
143000,
28000,
25000,
30000,
47500,
18974,
70000,
20000,
45000,
1440,
46000,
46000,
85800,
45000,
60000,
50000,
50000,
45000,
45000,
60000,
248000,
248000,
34740,
120000,
250000,
39400,
39400,
50000,
52700,
71400,
33280,
45837,
111000,
25000,
35000,
40000,
40000,
25000,
60000,
130000,
3500,
3500,
0,
132490,
0,
60000,
35000,
40000,
32065,
100000,
179600,
35000,
35000,
44000,
44000,
30000,
50000,
40000,
50750,
50000,
142000,
45000,
144500,
49800,
59200,
60348,
330000,
45360,
47000,
40000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=305 - Invermay<br>animation_frame=2004<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "305 - Invermay",
"marker": {
"color": "#FF97FF",
"symbol": "circle"
},
"mode": "markers",
"name": "305 - Invermay",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
161,
160,
158.65,
158.65,
158.65,
145.62,
160,
160,
39.26,
161,
161,
160.67,
160,
160,
160,
160,
53.26,
160,
160,
159.4,
159.4,
0,
160.02,
161,
161,
160,
158.94,
159,
158.75,
159,
157,
157.07,
157.07,
160,
160,
87,
87,
87.39,
87.39,
159.72,
160,
160,
160,
160,
159.49,
160,
160.37,
160.37,
160.37,
160,
160,
160,
106,
106,
105.65,
141,
160,
157.49,
157.76,
160,
160,
160.23,
160.23,
160.23,
160,
157,
160,
160.21,
159.74,
160,
159.28,
160,
160,
79.87,
79.87,
159.73,
159.73,
80
],
"xaxis": "x",
"y": [
19000,
500,
150000,
150000,
139600,
44700,
36000,
35000,
20000,
30000,
31200,
123500,
35000,
35000,
45000,
50000,
50000,
30000,
45000,
348000,
350000,
12500,
59400,
32200,
29000,
30000,
100750,
70000,
250000,
25000,
21000,
132600,
100000,
11250,
0,
53500,
54785,
62500,
118642,
30000,
46000,
50000,
48000,
30000,
110000,
50000,
65800,
65800,
80000,
16200,
16200,
16200,
0,
49800,
86000,
50400,
20000,
18300,
120000,
24000,
29500,
77000,
77000,
85000,
24000,
40000,
20000,
19000,
208500,
40000,
35100,
30000,
0,
35000,
50000,
280000,
287600,
15000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=100 - Elmsthorpe<br>animation_frame=2004<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "100 - Elmsthorpe",
"marker": {
"color": "#FECB52",
"symbol": "circle"
},
"mode": "markers",
"name": "100 - Elmsthorpe",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
159,
159,
159,
160,
159.75,
160.1,
160.1,
161,
160,
144,
144.78,
160,
160,
160,
160.41,
158.97,
158.97,
160,
160,
158,
158,
160,
159.75,
159.75,
159.12,
159,
159,
159,
161,
80.4,
160.79,
160.79,
160.79,
161.24,
160,
160,
157.63,
157.63,
158.86,
158.86,
159,
1,
160,
120,
159.19,
157,
157.37,
157.37,
158.91,
158.91,
157.23,
152.75,
152.75,
151,
150.22,
161,
160,
162.07,
162.07,
160,
159.49,
158.79,
161,
159.93,
161.14,
161.14,
160,
161.08,
160,
79.94,
160,
159,
159.15,
157,
157,
156.75,
159,
160,
158.48,
158.48,
157,
2,
159,
160,
160,
152.35,
160,
160,
160,
155.35,
153,
153,
159.49,
155,
160,
160,
160,
160,
160
],
"xaxis": "x",
"y": [
52000,
52000,
18000,
54000,
55000,
105216,
105216,
60000,
35625,
53000,
229000,
13000,
13000,
45380,
45000,
42000,
0,
30000,
54775,
6000,
6000,
32000,
47000,
119282,
18000,
63320,
63320,
63320,
40000,
26500,
64500,
64500,
64500,
100000,
34350,
50000,
112000,
112000,
40000,
0,
2,
460,
101000,
75750,
35000,
125000,
250000,
250000,
29400,
56290,
19100,
97142,
130475,
56000,
124000,
40000,
47771,
60300,
60300,
25746,
44200,
46000,
53000,
332000,
10000,
54720,
29720,
159300,
12000,
104750,
40000,
49807,
49000,
27581,
35000,
49200,
35000,
35120,
0,
15000,
26100,
2900,
99402,
31568,
28362,
80000,
43300,
35000,
35000,
4000,
4000,
4000,
26000,
35000,
45045,
38000,
0,
35000,
25000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=275 - Insinger<br>animation_frame=2004<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "275 - Insinger",
"marker": {
"color": "#636efa",
"symbol": "circle"
},
"mode": "markers",
"name": "275 - Insinger",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
160,
160,
160,
159,
159,
159,
159,
159.25,
159.25,
159.25,
160,
160,
159.64,
159.64,
160,
318.54,
159.27,
161,
159.96,
161,
161,
160,
159.83,
80,
160,
159.88,
160,
160,
160,
160,
160,
159.18,
52.69,
0,
0,
160,
160,
159.24,
160,
160,
109,
109,
141.13,
160,
158.01,
160,
160,
159,
159,
159.18,
160,
161,
161.03,
161.03,
159.32,
159.84,
157.97,
159,
158.96,
160,
159.83,
159,
159,
149,
149,
148.84,
160,
160,
160,
160,
160,
159,
160,
159,
159,
159.45,
159.45,
160,
160,
159.77,
158.56,
160,
160,
159.28,
159.28,
160,
159,
159.59,
160,
160,
159,
160,
159.21
],
"xaxis": "x",
"y": [
30000,
24000,
24000,
40000,
40000,
12000,
12000,
12000,
30000,
30000,
18500,
125000,
182000,
195000,
35080,
100000,
104000,
85000,
20000,
25800,
36000,
34000,
134000,
25000,
45000,
131707,
20000,
20000,
30000,
25000,
33000,
56815,
7999,
250,
250,
42000,
42000,
101800,
18000,
30000,
100000,
40000,
181970,
32000,
100000,
20000,
17000,
25000,
40000,
65000,
17000,
150000,
750000,
750000,
110000,
57000,
25000,
25920,
38000,
30000,
80000,
40000,
182700,
7880,
20000,
44000,
37000,
0,
60200,
7500,
33500,
33500,
12000,
30000,
38930,
79020,
77500,
25000,
38680,
181000,
21000,
162700,
140000,
182700,
140000,
20390,
22110,
61004,
20000,
22000,
30000,
45000,
230000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=250 - Last Mountain Valley<br>animation_frame=2004<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "250 - Last Mountain Valley",
"marker": {
"color": "#EF553B",
"symbol": "circle"
},
"mode": "markers",
"name": "250 - Last Mountain Valley",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
159,
158,
159,
158.96,
159,
160,
160,
160,
160,
160,
160,
155.79,
160,
80.16,
80,
80,
126,
126,
159.66,
159.66,
159.66,
159,
159,
155.87,
156,
156,
155.94,
160,
160,
159.96,
160,
157.99,
158,
158,
159.8,
159,
159,
159,
160,
160,
158.93,
158,
158,
158.21,
157.09,
79.64,
160.16,
159.96,
159.96,
157.9,
157.9,
158,
160,
160,
160,
160.09,
159,
159.24,
160,
160,
159,
148,
52.88,
52.88,
158.65,
158.65,
160,
158.99,
158.48,
158.48,
158.48,
0,
160,
158,
158.31,
160.48,
159,
159.18,
159.18,
159,
160,
158
],
"xaxis": "x",
"y": [
25000,
40000,
30000,
37400,
30000,
40000,
26000,
39000,
20525,
76000,
30000,
0,
15000,
15000,
3750,
3750,
35660,
35660,
64000,
68750,
85250,
125000,
125000,
31590,
31590,
31590,
100000,
40000,
45250,
145000,
60000,
30000,
30000,
30000,
64000,
22500,
0,
43100,
40000,
47000,
84000,
35000,
60000,
40000,
45000,
30000,
75000,
90000,
198102,
38000,
38000,
16000,
7500,
22200,
22200,
85000,
23300,
45000,
37000,
37000,
39000,
55000,
35000,
35000,
105000,
105000,
37000,
6250,
160000,
160000,
201641,
0,
32000,
26250,
85000,
90000,
45000,
170000,
210000,
100500,
50000,
64215
],
"yaxis": "y"
}
],
"name": "2004"
},
{
"data": [
{
"hovertemplate": "RM=213 - Saltcoats<br>animation_frame=2005<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "213 - Saltcoats",
"marker": {
"color": "#636efa",
"symbol": "circle"
},
"mode": "markers",
"name": "213 - Saltcoats",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
158.22,
157.62,
157.62,
158,
161,
161.45,
164,
161.2,
160,
160,
160,
160.32,
161,
161,
160.64,
80.32,
160,
160,
154,
154,
157,
155.7,
158.77,
158.79,
158.79,
159.13,
154.06,
154.06,
160,
160.45,
160,
160,
160.23,
160,
138.84,
160,
160,
160.42,
160.42,
159,
159,
157.52,
157.52,
159.74,
160,
160,
160,
161.02,
161.02,
160,
161,
160,
155.46,
160,
157.16,
156.76,
156.76,
158.66,
160,
160.47,
160,
150,
160,
160,
160,
160.69,
160,
154.85,
154.85,
158,
154,
159.13,
53.46,
160.47,
160,
160,
160,
160,
160,
159.62,
160
],
"xaxis": "x",
"y": [
140000,
50000,
40000,
50000,
35000,
130000,
239900,
40707,
49600,
49600,
90315,
160000,
51800,
26000,
110610,
55305,
46400,
40000,
75000,
69900,
69900,
140000,
35000,
186000,
210000,
30000,
50072,
164300,
26217,
172000,
25000,
20720,
31000,
41050,
42000,
45100,
50000,
178400,
260000,
267400,
40000,
28000,
28500,
156000,
16000,
32000,
32500,
37000,
37000,
18906,
65000,
41300,
18810,
54000,
35000,
138240,
215420,
20000,
73700,
262800,
10165,
0,
15350,
22000,
35000,
82500,
17500,
1,
165000,
60000,
60000,
150000,
27766,
90000,
50000,
76700,
30500,
43000,
25000,
216397,
15000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=488 - Torch River<br>animation_frame=2005<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "488 - Torch River",
"marker": {
"color": "#EF553B",
"symbol": "circle"
},
"mode": "markers",
"name": "488 - Torch River",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
159,
159,
147.77,
161,
160.59,
160.59,
90.49,
160,
160,
160.17,
160,
0,
160.2,
160.2,
160,
158.34,
80,
159,
158.9,
160,
159,
158.79,
158.79,
153,
146,
146,
146.33,
139.46,
139.46,
160,
78.64,
157,
157,
157,
159.69,
160,
160,
160,
159.67,
158,
157.75,
159,
159,
155.23,
161,
160,
1442.25,
40.06,
360.56,
160.25,
40.06,
40.06,
160,
160,
160,
159.54,
158.89,
158.89,
158.67,
161,
156,
155.52,
155.52,
158.49,
144,
144.05,
158.88,
0,
0,
158.97,
158.97,
159,
158.97,
160,
156,
149.31,
149.31,
160,
159,
159,
159.35,
159.35,
159,
159,
158.55,
136,
136,
136.34,
160,
159.85,
159.61,
159,
157.4,
159,
159.07,
161,
115,
115,
159.27,
160,
160.34,
160.34,
160,
160,
158.97,
158.74,
158.97,
159.07,
158.81,
158.81,
158.81,
158.81,
159,
159,
159,
158.69,
160,
158.97,
79.18,
158.35,
155.51,
155.51,
156,
156.11,
156.11,
160,
158,
160,
160,
160.24,
160.49,
160.49,
160.49,
160,
160,
160,
158,
79,
79,
160,
151,
150.8,
158.2,
153,
153,
153.12,
158.96,
156.65,
158.84,
159,
52.85,
26.43,
52.85,
158.94,
158.6,
159,
159,
159.35
],
"xaxis": "x",
"y": [
28000,
13000,
114000,
67200,
315855,
315855,
150000,
25200,
37700,
120000,
24000,
35000,
129000,
110000,
25000,
40000,
20000,
75000,
206000,
60000,
79920,
168155,
320900,
180000,
180000,
172888,
137500,
0,
211700,
0,
25000,
12500,
12500,
12500,
34500,
20000,
20000,
6000,
112500,
34000,
83000,
39000,
39000,
88750,
55000,
38760,
1053000,
29250,
263250,
117000,
40000,
40000,
50000,
50000,
50000,
50000,
29600,
29600,
129000,
30000,
101100,
180000,
205800,
67800,
55000,
85000,
6000,
31080,
55000,
60000,
105500,
50000,
54000,
25000,
175000,
0,
147500,
33200,
60000,
62888,
137500,
232000,
13000,
40000,
50000,
2600,
2600,
67800,
80000,
95000,
1,
56000,
97000,
32000,
32000,
20000,
19000,
43000,
49000,
49000,
138240,
164000,
0,
50000,
0,
350000,
7000,
120000,
40000,
40000,
40000,
40000,
36000,
53400,
50000,
180000,
1500,
25000,
31000,
147000,
50000,
0,
60000,
60000,
620000,
25000,
85000,
50000,
50000,
90000,
90000,
90000,
90000,
39367,
0,
19000,
89000,
0,
0,
30000,
39000,
73000,
150000,
50000,
50000,
240000,
50000,
180000,
67500,
21000,
25000,
12500,
25000,
19680,
100000,
50000,
11250,
82000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=336 - Sasman<br>animation_frame=2005<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "336 - Sasman",
"marker": {
"color": "#00cc96",
"symbol": "circle"
},
"mode": "markers",
"name": "336 - Sasman",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
160,
160,
159.41,
159.41,
119,
119,
118.63,
158.79,
158.79,
158.79,
156,
155.78,
155.78,
157.27,
160,
160,
159.81,
160,
160,
160.1,
160.32,
160.32,
159.89,
160,
149.92,
160,
160,
160.19,
160,
160,
142.16,
142,
142,
157,
156,
160,
160,
160.17,
158,
158.01,
160,
160,
160,
160,
159.67,
158.8,
157,
157.11,
158.87,
156.8,
156.8,
160,
160,
160,
159,
159,
158,
158,
160,
160,
160,
160,
160,
160,
158.11,
158.11,
154,
1,
152,
152.22,
157,
157,
157,
160.73,
157,
157.39,
148,
160,
160,
159.88,
160
],
"xaxis": "x",
"y": [
50000,
50000,
40000,
0,
0,
30000,
51400,
39200,
39200,
40000,
0,
54000,
125000,
69000,
40000,
40000,
71000,
69000,
49800,
76800,
90000,
123245,
108000,
123614,
0,
58300,
54000,
94000,
68400,
68400,
45000,
39000,
40000,
0,
80000,
45000,
45000,
150000,
58320,
139000,
75000,
42000,
42000,
65000,
250000,
60000,
0,
125000,
46000,
250000,
250000,
40000,
45000,
56200,
37000,
37000,
0,
40000,
29600,
45000,
22500,
0,
51300,
51500,
25000,
55000,
0,
500,
0,
100000,
0,
170000,
170000,
205400,
78000,
78000,
40000,
147000,
147000,
91600,
30000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=215 - Stanley<br>animation_frame=2005<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "215 - Stanley",
"marker": {
"color": "#ab63fa",
"symbol": "circle"
},
"mode": "markers",
"name": "215 - Stanley",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
160,
157,
157,
157,
157.34,
157.34,
157.34,
157.34,
160,
159.32,
161.11,
160,
160,
162,
162,
162,
162,
161.81,
161.81,
161.81,
158.58,
158.58,
159,
158.54,
158.54,
158.54,
158.54,
160,
161.64,
160,
0,
0,
0,
158.27,
166,
166,
166,
159,
155,
155,
160,
161,
161,
161,
161,
161,
160.51,
160.51,
160.51,
160,
160,
146,
146,
160,
160,
160,
135,
159.66,
161,
161,
147,
159.27,
149.13,
160,
96,
95.95,
95.95,
160.98,
160.98,
0,
160,
160,
160,
160,
159.87,
157.3,
157,
159,
160.76,
161,
152.44,
152.44,
146,
143.41,
143.41,
127.31,
161,
160.55,
159.45,
160
],
"xaxis": "x",
"y": [
45000,
50000,
50000,
65000,
75000,
298300,
433617,
198120,
52500,
247900,
58666,
7000,
40000,
48485,
47000,
47000,
47000,
51871,
75401,
237770,
34000,
25000,
52500,
300200,
436379,
186290,
186000,
25000,
206850,
35750,
25000,
25000,
165000,
46000,
70000,
70000,
275000,
40000,
20000,
60000,
34240,
39675,
48485,
50000,
50000,
50000,
55182,
80214,
260650,
43110,
38000,
0,
45000,
50000,
36800,
36800,
42000,
19000,
45000,
90000,
58500,
44750,
22000,
23000,
0,
42000,
42000,
120000,
120000,
293750,
22000,
40000,
30558,
45727,
125000,
32000,
40000,
22000,
148164,
80000,
29000,
25000,
24500,
0,
90000,
125000,
65000,
87500,
152000,
39000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=247 - Kellross<br>animation_frame=2005<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "247 - Kellross",
"marker": {
"color": "#FFA15A",
"symbol": "circle"
},
"mode": "markers",
"name": "247 - Kellross",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
158,
159.23,
97,
97,
159,
159,
159.1,
157.87,
157.87,
156.22,
158,
152,
152.26,
158,
158.11,
163.76,
159.48,
159,
159.35,
156,
156,
156,
160,
159,
160,
163,
163.2,
163.2,
163.2,
161,
161,
158,
157.98,
160,
160,
1425.6,
158.4,
158.9,
157.49,
160,
160,
160,
159.29,
79.5,
173,
173,
173.04,
173.04,
173.04,
165,
165.14,
160,
160,
157.59,
157.59,
158.4,
158.91,
149,
149.17,
160,
160,
161,
161.45,
160,
160,
159,
159.48,
159.48,
158,
158,
158,
159.06,
158,
160,
156,
156,
157.57,
158.88,
160
],
"xaxis": "x",
"y": [
35000,
10000,
25000,
25000,
40000,
54545,
132500,
35100,
72500,
16000,
51200,
0,
63300,
64000,
64000,
30200,
40000,
49400,
160000,
26000,
26000,
29500,
29000,
29000,
35000,
69192,
102800,
102800,
120398,
32000,
32000,
69000,
69000,
22000,
0,
1800000,
200000,
22000,
80000,
50000,
31200,
25000,
80000,
40000,
36500,
73365,
104825,
104825,
127658,
71000,
71000,
25000,
25000,
20000,
0,
180000,
45000,
0,
72000,
50000,
30000,
49000,
51000,
16500,
10000,
29900,
159411,
159411,
20000,
29958,
29960,
32000,
35000,
35000,
28000,
30000,
120000,
57100,
37000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=070 - Key West<br>animation_frame=2005<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "070 - Key West",
"marker": {
"color": "#19d3f3",
"symbol": "circle"
},
"mode": "markers",
"name": "070 - Key West",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
157.38,
158,
158,
158,
158,
157.51,
161,
160,
160,
160,
160,
113.51,
159.74,
158.94,
158.94,
159.05,
159,
159,
159,
159.59,
160,
160,
160,
159.54,
157.42,
160.71,
161,
160,
160.15,
160,
160,
160,
160,
160,
160,
160,
160,
160,
158.94,
158,
158,
158,
158,
157.92,
157.92,
158.86,
159,
159,
159,
160,
159.41,
159.41,
160,
160,
160,
159.05,
159,
158.58,
158.58,
138.87,
155,
155,
155.48,
155.48,
160,
160,
159,
317.78,
160.18,
158,
158.38
],
"xaxis": "x",
"y": [
11667,
25000,
25000,
34500,
56250,
56250,
0,
28000,
40000,
40000,
25000,
87000,
100000,
15500,
25600,
0,
99230,
413000,
413000,
0,
45000,
72823,
72823,
90500,
115000,
55000,
31250,
30000,
150000,
73805,
32000,
27000,
27000,
27000,
27000,
41577,
30000,
28000,
48000,
45000,
69500,
71400,
71400,
58135,
78950,
30000,
35000,
55000,
55000,
42000,
90000,
90240,
30000,
28000,
48227,
25000,
42500,
100600,
228800,
143334,
34000,
30000,
141500,
141500,
30000,
33333,
57960,
40000,
52100,
36000,
410812
],
"yaxis": "y"
},
{
"hovertemplate": "RM=184 - Grayson<br>animation_frame=2005<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "184 - Grayson",
"marker": {
"color": "#FF6692",
"symbol": "circle"
},
"mode": "markers",
"name": "184 - Grayson",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
159.12,
159,
159,
160,
160,
154.75,
154.75,
161,
160.33,
161,
160,
156.13,
159.24,
2,
36,
0,
0,
0,
150,
160,
160,
160.47,
158,
158.39,
158.39,
160,
160,
160,
160,
160.17,
160,
159.8,
148,
136.7,
136.7,
136.7,
161,
161,
168,
168,
160,
159,
157,
157,
157,
160,
160,
160.15,
160.15,
160,
160,
160,
160.4,
160.4,
160,
160,
159,
149.15,
148.2,
160,
159.76,
159.76,
161,
160.75,
1446.75,
152,
153,
160,
160,
156.86,
158,
158,
158,
157.96,
160,
160,
158.94,
160.03,
160.44,
146.14,
146.14,
159,
159,
162,
162,
323.28,
156.93,
158,
158,
157.84,
160,
160.39,
153.45,
151,
151,
109,
42,
150.61,
153,
153.01,
76.5,
160,
161
],
"xaxis": "x",
"y": [
41325,
41325,
41325,
41680,
41680,
15600,
15600,
25000,
135000,
30000,
30000,
182500,
20000,
0,
0,
36000,
50000,
60000,
30000,
51500,
28500,
100000,
36000,
61200,
156700,
24500,
24500,
35000,
44000,
81000,
32000,
932500,
20000,
109352,
37150,
141240,
27500,
40000,
31999,
32000,
28000,
32600,
43500,
41600,
41900,
27000,
34900,
77500,
193750,
36666,
36666,
27000,
80000,
60785,
30305,
30305,
34000,
35000,
153113,
50000,
40000,
40000,
66600,
150000,
1350000,
34125,
34125,
24200,
24200,
33245,
38000,
38000,
56875,
150000,
16000,
17000,
180000,
160000,
130000,
0,
150993,
23499,
40000,
34348,
34349,
180000,
50000,
34000,
44000,
85000,
36500,
192000,
38000,
30000,
0,
65000,
35000,
112790,
80600,
80000,
40300,
36000,
60000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=276 - Foam Lake<br>animation_frame=2005<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "276 - Foam Lake",
"marker": {
"color": "#B6E880",
"symbol": "circle"
},
"mode": "markers",
"name": "276 - Foam Lake",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
160,
160,
160,
160.19,
160,
160,
160,
159,
159.13,
159.13,
159,
159,
159,
160,
160,
0,
0,
0,
157,
157.94,
154,
154,
160,
159.49,
160,
160,
160.07,
160,
160,
160,
158,
157.8,
159,
159.32,
159.32,
159.32,
147.24,
159,
158.74,
159.42,
158,
157.86,
157.86,
160,
160,
160,
158.97,
158,
160,
159,
158.77,
158.77,
160,
159.72,
160,
159.86,
159.86,
159.76,
159.58,
128,
128,
159.07,
160,
158,
158,
105.09,
51.38,
139.64,
139.64,
78,
78,
157.79,
157.64,
160,
160,
160,
159.71,
156,
160,
159,
31.88,
160,
159.56,
159.56,
160,
147.4,
159.77,
159.77,
160.24,
160,
160,
160,
159.28,
160,
157,
157.05,
160,
160.3,
160.3,
159,
159,
159,
160,
160,
159.75,
159.75,
159.75,
160,
160,
152.72,
158.86,
123.68,
131,
131,
160
],
"xaxis": "x",
"y": [
50000,
29120,
31900,
152500,
46377,
50000,
45000,
65000,
65834,
185000,
40000,
32000,
60000,
0,
55000,
10000,
20000,
10000,
40000,
64240,
40000,
50000,
10000,
42000,
35760,
44622,
164787,
25000,
39000,
39000,
36601,
152918,
56900,
56900,
56900,
125000,
146590,
54000,
148000,
159500,
0,
28340,
28340,
50000,
50000,
30000,
45630,
0,
52000,
27170,
55700,
55700,
10000,
42000,
30150,
63900,
85000,
21250,
45000,
0,
19000,
200000,
34075,
40000,
45000,
30000,
43334,
10000,
10000,
11500,
11500,
15000,
75000,
6000,
30000,
20000,
69000,
39900,
60000,
150000,
30000,
28700,
120000,
120000,
83600,
229600,
60000,
65000,
3500,
44000,
44000,
44000,
100000,
42240,
56000,
60000,
26000,
97000,
126600,
32300,
32300,
31100,
31169,
52200,
135270,
135270,
115000,
45000,
45000,
26000,
40000,
23000,
41100,
41100,
5000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=305 - Invermay<br>animation_frame=2005<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "305 - Invermay",
"marker": {
"color": "#FF97FF",
"symbol": "circle"
},
"mode": "markers",
"name": "305 - Invermay",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
159.51,
160,
159.6,
159.6,
159.3,
0,
160,
160,
157.2,
144,
160,
160,
159.26,
159.26,
160,
160,
160,
159,
159.92,
159.92,
53.31,
160,
160,
158,
161,
160,
160,
160,
160,
160.38,
160,
159,
159,
159,
161,
161,
159,
158.67,
157.72,
160,
160,
160,
160,
160,
160,
160,
159.67,
160,
158,
158,
160,
159.66,
160.16,
156.24
],
"xaxis": "x",
"y": [
80100,
22000,
20000,
20000,
170000,
0,
14500,
19055,
133900,
50000,
200000,
25000,
80000,
80000,
18900,
18900,
18900,
46000,
245000,
249224,
83075,
55000,
62000,
42500,
25000,
30000,
25000,
60000,
50000,
191000,
12000,
25500,
25500,
42500,
16500,
20000,
2000,
35000,
107000,
60000,
50000,
110000,
45000,
25000,
10500,
10500,
110000,
40000,
43000,
43000,
14800,
110000,
77000,
16000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=100 - Elmsthorpe<br>animation_frame=2005<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "100 - Elmsthorpe",
"marker": {
"color": "#FECB52",
"symbol": "circle"
},
"mode": "markers",
"name": "100 - Elmsthorpe",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
160,
160,
158,
157.54,
160,
160,
160,
32.33,
159.07,
159.07,
160,
159.89,
161.01,
161.01,
161.01,
158.59,
159,
158.84,
158.84,
160.23,
158.79,
158.79,
158.79,
158,
158.87,
160,
158.74,
159,
159.47,
157,
160,
159.63,
159.63,
151,
150.95,
150.95,
160.37,
161,
161,
158,
158.16,
118.62,
158.97,
159,
158.69,
0,
156,
158.4,
157,
157,
157,
159,
160,
160,
53.73,
160,
160,
153,
152.88,
114.66,
158.99,
158.99,
158.99,
159,
79.51,
159,
159.38,
158.98,
158,
158,
158.28,
159,
159.19,
159.19,
160,
158.92,
158.92,
160,
146.78,
160,
160,
157.63,
158.97,
110.16
],
"xaxis": "x",
"y": [
25000,
58500,
35000,
75000,
18600,
6708,
18277,
18000,
30000,
30000,
250042,
49200,
150800,
150800,
150000,
37000,
41850,
64000,
138270,
128480,
21000,
0,
21000,
41436,
37225,
15470,
100000,
49911,
51700,
25000,
40000,
41700,
80080,
30200,
42800,
106825,
147000,
20000,
20000,
27500,
52320,
39240,
40000,
80000,
100000,
1,
25000,
34000,
20000,
82160,
90180,
28000,
24833,
20500,
33300,
15000,
45570,
35865,
59160,
44370,
51000,
0,
46000,
46000,
59408,
25000,
45000,
35000,
37000,
37000,
149500,
41000,
75000,
92316,
184200,
104555,
104555,
0,
191260,
8650,
55000,
208260,
30697,
330000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=275 - Insinger<br>animation_frame=2005<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "275 - Insinger",
"marker": {
"color": "#636efa",
"symbol": "circle"
},
"mode": "markers",
"name": "275 - Insinger",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
159,
159.42,
159.42,
160,
160,
160,
80,
80,
80.29,
160,
160,
160,
160,
159.67,
78.5,
78.5,
78.5,
160,
159,
139,
139,
139.16,
160,
160.05,
158.34,
160,
159,
159.34,
159,
159,
158.75,
160,
159.7,
159.7,
159.98,
159.98,
80,
80,
80,
159.29,
148,
160,
159,
159,
159.18,
160,
159,
159,
158.49,
159.53,
160,
160,
159.75,
160,
157,
157,
160,
156,
155.91,
160,
160,
160,
159.97,
159.97,
160,
159.95,
159,
158,
157.95,
70,
59,
160,
160,
160,
160.21,
160,
160,
159.69,
159.67,
160,
159.54,
157,
157,
160,
160,
160,
159.43,
159.43,
159.43
],
"xaxis": "x",
"y": [
35000,
125000,
125000,
8000,
15000,
0,
10000,
5000,
19865,
10200,
10000,
34500,
41000,
41000,
12500,
12500,
12500,
6000,
23000,
25000,
84999,
425000,
25639,
68000,
35000,
45000,
55000,
170776,
52000,
82500,
209640,
24035,
35750,
100000,
45000,
46700,
12500,
12500,
12500,
25000,
142000,
25000,
35000,
35000,
53040,
32363,
34100,
60000,
76500,
83000,
22500,
30000,
68000,
50000,
97500,
97500,
20000,
40000,
193750,
25000,
25000,
25000,
35000,
57000,
38853,
120128,
24420,
45000,
123833,
32000,
32000,
45000,
60000,
60000,
60000,
30700,
30700,
80000,
90000,
60000,
150079,
55000,
111000,
17000,
0,
28000,
104000,
104000,
135342
],
"yaxis": "y"
},
{
"hovertemplate": "RM=250 - Last Mountain Valley<br>animation_frame=2005<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "250 - Last Mountain Valley",
"marker": {
"color": "#EF553B",
"symbol": "circle"
},
"mode": "markers",
"name": "250 - Last Mountain Valley",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
159,
159,
158.84,
159,
159.35,
157.97,
151,
5,
151,
5,
151,
5,
160,
157,
158.49,
158.49,
159.31,
159.31,
160,
160,
159.6,
159.6,
159.62,
159.62,
157.96,
157.96,
158.26,
157,
160,
157,
159.24,
159.24,
160.51,
160.51,
124.97,
62.64,
157.66,
157.66,
157.66,
157.66,
156,
156,
156,
78,
159,
158.93,
158,
158.09,
160,
160,
158,
158,
160,
157.3,
157.3,
161,
160.75,
158.88,
158.88,
158,
158,
159.03,
159.03,
158,
157.06,
157.06,
160,
159,
159,
159.31,
159.31,
159.06,
159.06,
159,
159,
159.1,
160.57,
154.94,
154.94,
154.48,
89.16,
44.58,
159.11,
155.05,
154.53,
158.27,
158.27,
143.04,
160.37,
160.37
],
"xaxis": "x",
"y": [
20000,
26000,
85000,
20000,
73200,
30000,
24100,
900,
24100,
900,
24100,
900,
52600,
103500,
50000,
50000,
48000,
32000,
16000,
16000,
125000,
125000,
57600,
57600,
35000,
0,
73000,
35000,
43000,
43000,
31140,
31140,
72600,
72600,
6300,
40000,
6030,
6030,
0,
0,
4020,
20000,
20000,
8040,
20000,
131800,
35000,
173334,
25000,
0,
47800,
47800,
40000,
42400,
150000,
30000,
50000,
55400,
55400,
40000,
40000,
42000,
53333,
54000,
50000,
50000,
35000,
40000,
40000,
40000,
63333,
28000,
0,
28000,
80000,
30000,
112500,
30000,
25000,
206667,
100000,
50000,
30000,
30000,
125000,
130000,
90000,
63360,
176275,
200000
],
"yaxis": "y"
}
],
"name": "2005"
},
{
"data": [
{
"hovertemplate": "RM=213 - Saltcoats<br>animation_frame=2006<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "213 - Saltcoats",
"marker": {
"color": "#636efa",
"symbol": "circle"
},
"mode": "markers",
"name": "213 - Saltcoats",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
159,
159,
159,
159.3,
160.2,
160,
160,
157.62,
160,
160.23,
160,
159.74,
160,
160,
161,
160.8,
160.35,
161,
320.72,
160,
160,
160,
160.3,
153.68,
154.17,
154.17,
160,
160,
158.54,
160,
53.23,
160.52,
160,
160.68,
160,
159.76,
160,
160,
160,
160.39,
160.5,
160,
159,
159,
159.18,
160,
160,
160,
160,
160,
160.19,
160.11,
160.11,
160,
160.29,
161,
161,
161,
161,
77.92,
77.92,
77.92,
160,
164,
164,
160,
159.91,
159.91,
159.91,
160.34,
160.34,
160,
160,
146.98
],
"xaxis": "x",
"y": [
19920,
32000,
51000,
176775,
136350,
39760,
61800,
150000,
45000,
161500,
70000,
200000,
25000,
70000,
69000,
160000,
178000,
39999,
100000,
19500,
21000,
29980,
100000,
22000,
219796,
292324,
92000,
105000,
121650,
15000,
27833,
125000,
34000,
197500,
39000,
63000,
20000,
15000,
58333,
224375,
304327,
33000,
52500,
52500,
245000,
45000,
70000,
54500,
94900,
191000,
119000,
53500,
79000,
40000,
166000,
40467,
30500,
30500,
35000,
65500,
105792,
66000,
40000,
56000,
56000,
40000,
112100,
127409,
187500,
102613,
100000,
36000,
38000,
38000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=488 - Torch River<br>animation_frame=2006<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "488 - Torch River",
"marker": {
"color": "#EF553B",
"symbol": "circle"
},
"mode": "markers",
"name": "488 - Torch River",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
158.83,
160,
159.86,
159,
159.19,
159.19,
160.61,
158.97,
156,
156,
158.81,
160,
159.06,
158.26,
159,
159,
159.17,
160,
160,
155,
155,
160,
160,
160,
79.84,
160,
159.6,
159.6,
160,
158,
157.55,
159,
159,
159,
159,
149.63,
153.65,
6,
154,
154,
160.84,
159.95,
161,
161,
320.84,
160.42,
161,
159.83,
159,
160,
158.96,
158.96,
159,
159,
159.21,
159.21,
159.44,
159.44,
79.72,
159.75,
159.75,
159.75,
159.75,
160,
160,
80,
160,
160,
159.53,
159.53,
160,
160,
159,
142.98,
6,
151,
141.37,
141.37,
141.37,
141.37,
161,
160,
161,
161,
321.08,
160,
160,
160.28,
158.97,
159.63,
160,
160,
160,
160,
159.89,
159.89,
159.89,
159.92,
160,
139,
139,
158,
158,
158,
158,
158,
52.69,
139,
139.15,
69.58,
157.7,
157.7,
159,
80,
80,
160,
160,
159.59,
159.59,
160,
160,
162,
159.46,
120.03,
119,
119.15,
160.46,
160,
161,
160.95,
160,
40.08,
40.08,
158.97,
159,
159.76,
158.86,
158.86,
158.99,
160,
160,
160,
160,
159.52,
160,
159.61,
159.61,
160,
159.7,
160,
160,
159.53,
159.53,
147,
147,
146.99,
159,
159,
161,
0,
0,
160.51,
160.51,
160,
160.22,
160,
160,
160,
160.1,
160,
53.48,
53.48,
160,
159.64,
160,
160.15,
158,
158.17,
160,
160,
160,
160,
31.97,
159.54,
160,
160,
160,
159.61
],
"xaxis": "x",
"y": [
453200,
30000,
43000,
300000,
241100,
241100,
100000,
35000,
65000,
67000,
51700,
50000,
145591,
200000,
26200,
26200,
38800,
8200,
8200,
50000,
46800,
55000,
44400,
0,
110000,
42000,
110180,
118637,
41000,
53300,
192400,
50000,
60000,
60000,
45000,
283200,
65000,
890,
154000,
160000,
106000,
50000,
45000,
50000,
400000,
280000,
60000,
163215,
48000,
30000,
240000,
240000,
55300,
55300,
42000,
58000,
151700,
151700,
75000,
80000,
80000,
90000,
90000,
17000,
44000,
22000,
35000,
35000,
74000,
140000,
50000,
50000,
80000,
85000,
890,
84560,
0,
212025,
212025,
430050,
52000,
53000,
61000,
50000,
400000,
65000,
65000,
131000,
0,
119340,
35000,
11000,
49400,
74000,
120000,
169900,
169900,
225000,
12000,
45000,
25000,
0,
0,
11667,
11667,
11667,
75000,
15000,
45000,
22500,
105700,
105700,
5000,
17500,
28000,
28000,
28000,
133760,
143614,
10850,
16500,
34922,
160000,
45000,
72800,
169300,
100000,
30500,
30500,
51200,
70500,
90000,
80000,
23000,
32000,
131950,
8000,
8000,
225000,
30000,
26000,
15000,
30000,
43000,
19000,
40180,
40180,
41667,
183000,
17000,
17000,
125400,
86985,
35000,
50000,
150000,
26000,
93000,
30000,
20000,
20000,
115650,
219900,
60000,
60000,
28028,
28028,
89750,
235405,
50000,
134166,
134166,
132000,
250000,
10000,
103100,
160000,
360000,
15000,
15000,
40000,
35000,
8400,
37655,
33000,
42066,
16000,
25000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=336 - Sasman<br>animation_frame=2006<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "336 - Sasman",
"marker": {
"color": "#00cc96",
"symbol": "circle"
},
"mode": "markers",
"name": "336 - Sasman",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
159,
157.65,
158.97,
158.97,
158,
158,
157.67,
157.67,
157,
157.17,
157.17,
157,
157.05,
314.1,
157.05,
157.05,
155,
155,
154.93,
154.93,
160,
161,
160.55,
160,
158.8,
157,
157.4,
157.4,
159.36,
159.36,
159.23,
157,
156.66,
156.66,
157,
157.04,
157.04,
160.69,
0,
160,
79.8,
79.8,
80,
160,
160,
160,
160,
158.8,
79.24,
79.24,
70.75,
70.75,
71,
159,
158.72,
160,
159.01,
160.79,
160.79,
160,
160,
160,
159.56,
160,
160,
159,
159,
155.48,
155.48,
160,
160,
159,
159,
159.07,
160,
160,
159.68,
159.68,
160,
160.74,
160.37,
160.37,
160.37,
160.37,
160.37,
159.18,
160,
155,
51.72,
158,
154.92,
159.06,
129,
129,
64.65,
64.65,
64.65,
160,
160,
160.71,
160.59,
81,
158,
158,
158,
147.15,
135.34,
159.04
],
"xaxis": "x",
"y": [
35000,
0,
65000,
60600,
0,
60600,
224000,
224000,
0,
140000,
140000,
0,
45000,
90000,
125000,
125000,
66200,
66200,
94500,
94500,
12500,
65650,
100000,
55000,
60000,
80000,
217000,
217000,
78500,
110888,
0,
0,
150000,
300000,
0,
112500,
192000,
131400,
20000,
30000,
40000,
20000,
20000,
80000,
128756,
58750,
58750,
50000,
125000,
125000,
62500,
62500,
20000,
50000,
136000,
38000,
86900,
275000,
295000,
53000,
57000,
50000,
50000,
51930,
43700,
68500,
64500,
0,
90000,
48500,
97500,
55000,
15000,
110000,
84800,
84800,
91000,
91000,
0,
57500,
61710,
62150,
62000,
263500,
263500,
93000,
45000,
18500,
6167,
95000,
153382,
40000,
30000,
31000,
62500,
62500,
62500,
40000,
40000,
100000,
50000,
20000,
0,
110000,
125476,
0,
0,
25000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=215 - Stanley<br>animation_frame=2006<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "215 - Stanley",
"marker": {
"color": "#ab63fa",
"symbol": "circle"
},
"mode": "markers",
"name": "215 - Stanley",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
162,
162,
162,
161.85,
158,
158,
160,
160,
160,
160,
161,
155,
154.38,
158,
158,
160,
160.06,
163.19,
160,
158,
158,
118,
118.7,
160,
160,
160,
159.02,
160,
160,
160,
160,
160,
160,
160.03,
160.03,
160.03,
166.12,
166.12,
155.84,
153.61,
153.61,
130.16,
130.16,
130.16,
160,
160,
158.72,
160,
157.34,
157.34,
161,
161,
159.6,
159.88,
157,
78.46,
78.46,
156.91,
159.39,
160,
159.64,
161,
161.09,
161.04,
159,
159,
159,
119.3,
160,
128.6,
158,
160,
159.5,
158.47,
117.23,
164,
0,
161,
160.64,
157.99,
159,
160
],
"xaxis": "x",
"y": [
86000,
100000,
250000,
250000,
24000,
50000,
19000,
19000,
40000,
31850,
55346,
51000,
156250,
40000,
50000,
65000,
87500,
156000,
40000,
40000,
40000,
30000,
30000,
29000,
0,
42000,
72000,
19000,
19000,
45000,
39075,
64858,
30000,
183000,
183000,
185000,
50000,
74700,
29000,
40000,
116500,
0,
0,
90000,
40000,
40000,
150000,
51000,
50000,
50000,
50000,
800000,
110000,
30000,
60000,
30000,
30000,
60000,
35000,
20000,
132100,
80000,
225000,
159650,
15999,
40000,
0,
0,
30000,
0,
11200,
45000,
100000,
49260,
0,
56900,
0,
78250,
175000,
33000,
60000,
40000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=247 - Kellross<br>animation_frame=2006<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "247 - Kellross",
"marker": {
"color": "#FFA15A",
"symbol": "circle"
},
"mode": "markers",
"name": "247 - Kellross",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
160,
155.53,
155,
155.41,
158,
160,
110,
154.2,
160,
160,
160,
159,
158.8,
156.61,
153,
159.56,
128,
131.85,
156.15,
155,
155,
155,
159,
159,
160,
160,
160,
161,
161,
161,
160.88,
159,
160,
160,
159.55,
157,
157,
159,
155.69,
157,
157,
158.19,
158,
157.69,
160,
160,
159,
159,
158.06,
158.06,
158.06,
157.51,
159.08,
160,
158,
158,
159.47,
160,
160,
158.67,
158.67,
159,
159.15,
159.15,
159.27,
160,
160,
160,
160,
160.18,
160.18,
159,
159,
159.33,
160,
160,
158.86,
158.86,
160.16,
160.16,
160.16,
157.69,
157.69,
160,
160,
160
],
"xaxis": "x",
"y": [
30000,
25000,
50000,
145000,
40000,
16250,
0,
30000,
40000,
35000,
67318,
68000,
134496,
0,
46667,
0,
9800,
49998,
30000,
30000,
30000,
42500,
28000,
29900,
35000,
40000,
45000,
50000,
50000,
50000,
50000,
30000,
37000,
37000,
120000,
23155,
23155,
40000,
32000,
32800,
32800,
36500,
72000,
72000,
32700,
32700,
34000,
34000,
26760,
32000,
32000,
175000,
37500,
40500,
36950,
42500,
50000,
36270,
25000,
34300,
34300,
80000,
171523,
171523,
30000,
33000,
30000,
30000,
31500,
78000,
78000,
30000,
80000,
80000,
30000,
0,
54300,
40000,
100000,
102800,
118155,
31500,
31500,
38000,
38000,
42000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=070 - Key West<br>animation_frame=2006<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "070 - Key West",
"marker": {
"color": "#19d3f3",
"symbol": "circle"
},
"mode": "markers",
"name": "070 - Key West",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
160,
159,
159,
159.07,
149.07,
149.07,
156,
158.73,
159,
159.85,
159.85,
158.03,
158,
160,
159,
159,
159,
154,
160,
160,
160,
158.13,
10,
0.91,
160,
160,
158,
160,
160,
160,
160,
158.57,
160.43,
159.1,
0,
0,
160,
160,
160,
160,
160,
158.8,
158.8,
160,
160,
160,
160,
155,
155,
159.45,
133,
33.25,
160,
160,
160,
160,
159.84,
160,
160,
160,
160,
159.7,
159.7,
160,
158.38,
160.59,
160,
160.39,
159.59,
159.59,
160,
160,
160,
160,
160,
160,
160,
159,
159.42,
158.95,
158.68,
158.68
],
"xaxis": "x",
"y": [
30000,
40000,
89900,
55000,
53000,
149680,
16000,
20000,
30000,
40000,
171000,
25000,
17000,
60000,
45000,
43750,
81200,
36250,
47000,
27500,
41500,
168300,
0,
1665,
35000,
30000,
18000,
40000,
60000,
34800,
25400,
228800,
30000,
14500,
375,
25000,
0,
30000,
25900,
37000,
37000,
85000,
97800,
15709,
35000,
35000,
21000,
45000,
42000,
75000,
0,
13000,
32500,
40000,
25000,
30000,
159200,
27000,
30000,
60000,
55150,
89650,
89650,
20000,
50000,
55000,
35000,
120898,
85000,
146700,
18180,
18180,
33000,
33000,
30000,
66468,
63667,
72051,
243012,
20000,
61760,
72500
],
"yaxis": "y"
},
{
"hovertemplate": "RM=184 - Grayson<br>animation_frame=2006<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "184 - Grayson",
"marker": {
"color": "#FF6692",
"symbol": "circle"
},
"mode": "markers",
"name": "184 - Grayson",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
160,
160,
160,
160,
160,
160,
160,
160,
160,
159.16,
158,
158,
160,
160,
164,
164,
160,
159.4,
160.01,
164,
164,
164.79,
160,
161,
160,
159.72,
160,
170,
170.28,
158.28,
147.26,
147.26,
147.26,
160,
160,
160,
159,
159,
159.06,
162,
162,
160,
160.3,
160.37,
160.37,
163,
163,
162.55,
159,
159.06,
159.06,
136,
135.92,
160,
163,
163,
163,
160,
159,
160,
160,
160,
160,
160,
159,
159,
159,
159,
159,
160,
161,
161,
161,
158.41,
0,
155,
155.49,
159.85,
160,
160,
160.33,
160,
160,
160,
160,
160,
160,
160,
160,
160,
164,
160.44,
161,
161,
161,
161,
160,
160,
0,
0,
157,
157.08,
160,
160,
160,
159.72,
160,
159.5
],
"xaxis": "x",
"y": [
30000,
35000,
48000,
43736,
43736,
40125,
40125,
34255,
34255,
27000,
35000,
36000,
0,
21000,
26920,
16825,
30000,
182500,
147000,
35930,
35930,
90000,
33567,
33567,
100000,
112790,
27250,
28000,
220000,
35000,
100000,
100000,
104250,
25000,
33421,
15120,
17333,
12000,
147000,
20700,
20700,
25000,
25000,
40000,
40000,
28140,
28140,
105000,
0,
43000,
100,
21600,
145000,
30000,
45000,
40000,
33421,
22740,
22740,
46334,
46334,
29910,
14750,
29910,
36400,
36400,
52283,
31000,
31000,
32750,
50000,
50000,
56875,
26000,
1,
0,
100000,
30000,
65000,
45000,
296000,
37500,
23490,
38756,
38756,
33900,
33900,
30000,
0,
28000,
66600,
66963,
46850,
49500,
49850,
37000,
40000,
40000,
36666,
36666,
21000,
75600,
25000,
25000,
50000,
115111,
35000,
105000
],
"yaxis": "y"
},
{
"hovertemplate": "RM=276 - Foam Lake<br>animation_frame=2006<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "276 - Foam Lake",
"marker": {
"color": "#B6E880",
"symbol": "circle"
},
"mode": "markers",
"name": "276 - Foam Lake",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
159.79,
159.79,
158,
157.53,
160,
160,
160,
159.32,
159,
159.05,
160,
160,
160,
160,
159,
158.79,
158,
159.17,
159.17,
4.25,
157.2,
158.5,
160,
147.63,
147.63,
156.42,
150.54,
160,
160,
159.62,
159.11,
160,
0,
107.18,
155.78,
155.78,
146,
146,
146,
146,
145.58,
160,
159,
159.23,
159,
160,
160.04,
160.04,
112,
112,
159,
160,
133,
266.02,
155.44,
159,
158.82,
87,
87,
160,
79.83,
160,
156.14,
158,
160,
159.71,
159.71,
160,
159.29,
159.59,
159,
160,
79.5,
155.44,
155.44,
155.44,
151.95,
160,
158.97,
159,
160,
160,
159.69,
159.69,
160,
159.66,
159.66,
159.66,
160,
159.65,
160,
160,
160,
159,
159
],
"xaxis": "x",
"y": [
260000,
260000,
50000,
185625,
36700,
36700,
36000,
23500,
52537,
124100,
8800,
75000,
42000,
42000,
40356,
155905,
35000,
100000,
100000,
225,
20000,
188800,
40000,
54724,
54724,
14600,
100000,
20000,
34000,
106810,
100000,
40000,
30000,
26345,
0,
118750,
40000,
40000,
40000,
40000,
106000,
50000,
60000,
150000,
31000,
6833,
57475,
57475,
57000,
40000,
45800,
57000,
15000,
54340,
91000,
73960,
140000,
0,
15000,
75686,
92710,
17300,
57753,
20000,
33750,
97000,
111800,
25000,
133250,
100000,
40000,
55000,
42500,
75000,
75000,
75000,
200000,
77000,
25000,
35000,
52535,
30000,
25000,
60000,
7500,
86300,
86300,
125250,
49974,
133000,
38500,
31000,
32000,
35000,
56666
],
"yaxis": "y"
},
{
"hovertemplate": "RM=305 - Invermay<br>animation_frame=2006<br>ACRES=%{x}<br>PRICE=%{y}<extra></extra>",
"legendgroup": "305 - Invermay",
"marker": {
"color": "#FF97FF",
"symbol": "circle"
},
"mode": "markers",
"name": "305 - Invermay",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment