diff --git a/examples/VectorChoropleth.ipynb b/examples/VectorChoropleth.ipynb new file mode 100644 index 0000000000..45eb31bc75 --- /dev/null +++ b/examples/VectorChoropleth.ipynb @@ -0,0 +1,127 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "data": { + "application/vnd.jupyter.widget-view+json": { + "model_id": "7cb56d3a71774a97b4af9806cb53f5f0", + "version_major": 2, + "version_minor": 0 + }, + "text/plain": [ + "VBox(children=(Select(description='Select Field:', options={'Negative Nil income Family households.': 'neg_nil…" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "import folium\n", + "import json\n", + "from branca.colormap import linear\n", + "import geopandas\n", + "import ipywidgets as widgets\n", + "out = widgets.Output()\n", + "\n", + "dataFile = \"data/choropleth_data.geojson\"\n", + "metaDataFile = \"data/choropleth_metadata.json\"\n", + "vectorTilesPBF= \"http://openapi-dev.aurin.org.au/public/gwc/service/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&LAYER=aurin:SA1_2016_AUST&STYLE=&TILEMATRIX=EPSG:900913:{z}&TILEMATRIXSET=EPSG:900913&FORMAT=application/x-protobuf;type=mapbox-vector&TILECOL={x}&TILEROW={y}\"\n", + "\n", + "\n", + "\n", + "#loading the local data\n", + "myData=geopandas.read_file(dataFile)\n", + "\n", + "#load the linkingKey from metadata\n", + "metaData = json.load(open(metaDataFile))\n", + "keyField = metaData[\"key\"]\n", + "\n", + "numericFields = {}\n", + "#extract the numeric fields\n", + "for att in metaData[\"selectedAttributes\"]:\n", + " if(att['type'] == 'Short'):\n", + " numericFields[att['description']] = att['name']\n", + "\n", + "\n", + "select = widgets.Select(\n", + " options=numericFields,\n", + " description='Select Field:',\n", + " disabled=False\n", + ")\n", + "\n", + "#Generate and display a map\n", + "def onFieldSelect(b):\n", + " with out:\n", + " field = select.value\n", + " #generate a scalled color map\n", + " colormap = linear.YlGn_09.scale(\n", + " myData[field].min(),\n", + " myData[field].max())\n", + "\n", + " #generate a key value dictionary with key as linking field and value as color to be applied\n", + " linkData = {}\n", + " for index, row in myData.iterrows():\n", + " linkData[row[keyField]] = colormap(row['negative_nil_income_tot'])\n", + " #initialize a map\n", + " m= folium.Map(tiles=None, location=[-37, 140],zoom_start=8)\n", + " m.add_vector_grid_choropleth(vectorTilesPBF,\n", + " name=\"SA1_2016_AUST\",\n", + " data=json.dumps(linkData),\n", + " field=keyField.upper())\n", + " folium.LayerControl().add_to(m)\n", + " colormap.caption = select.label\n", + " colormap.add_to(m)\n", + " display(m)\n", + "\n", + "\n", + "button = widgets.Button(description=\"Show Map\")\n", + "button.on_click(onFieldSelect)\n", + "controllComponent = widgets.VBox([select,button,out])\n", + "display(controllComponent)\n", + "\n", + "\n", + " \n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.5" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/examples/VectorGrid.ipynb b/examples/VectorGrid.ipynb new file mode 100644 index 0000000000..c2aeb87661 --- /dev/null +++ b/examples/VectorGrid.ipynb @@ -0,0 +1,62 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
" + ], + "text/plain": [ + "" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "import folium;\n", + "\n", + "vectorTilesPBF= \"http://openapi-dev.aurin.org.au/public/gwc/service/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&LAYER=aurin:GCCSA_2011_AUST&STYLE=&TILEMATRIX=EPSG:900913:{z}&TILEMATRIXSET=EPSG:900913&FORMAT=application/x-protobuf;type=mapbox-vector&TILECOL={x}&TILEROW={y}\"\n", + "rasterTiles= \"http://openapi-dev.aurin.org.au/public/gwc/service/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&LAYER=aurin:GCCSA_2011_AUST&STYLE=&TILEMATRIX=EPSG:900913:{z}&TILEMATRIXSET=EPSG:900913&FORMAT=image/jpeg&TILECOL={x}&TILEROW={y}\"\n", + "m= folium.Map(tiles=None, location=[-37, 140],zoom_start=6)\n", + "m.add_tile_layer(rasterTiles,attr=\"AURIN\")\n", + "m.add_vector_grid_protobuf(vectorTilesPBF,name=\"GCCSA_2011_AUST\",options=\"{vectorTileLayerStyles: { GCCSA_2011_AUST: { fill: true, weight: 1, fillColor: '#53e033', color: '#53e033', fillOpacity: 0.2, opacity: 0.4}}}\")\n", + "m" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.6" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/examples/data/choropleth_data.geojson b/examples/data/choropleth_data.geojson new file mode 100644 index 0000000000..999e95533d --- /dev/null +++ b/examples/data/choropleth_data.geojson @@ -0,0 +1,140701 @@ +{ + "type": "FeatureCollection", + "bbox": [ + 0, + 0, + -1, + -1 + ], + "features": [ + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129262", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2129262" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_444b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130123", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130123" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_444c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130217", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2130217" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_444d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130237", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2130237" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_444e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130418", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130418" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_444f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130617", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130617" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4450" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130810", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2130810" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4451" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131026", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2131026" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4452" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129332", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2129332" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4453" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129451", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129451" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4454" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131215", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131215" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4455" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131818", + "neg_nil_inc_fam_households": 7, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2131818" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4456" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205131908", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131908" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4457" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132133", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132133" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4458" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132230", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2132230" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4459" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132237", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132237" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_445a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132315", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132315" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_445b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132511", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132511" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_445c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132527", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132527" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_445d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301134028", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134028" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_445e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134118", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2134118" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_445f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134427", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134427" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4460" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134906", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134906" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4461" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303135111", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135111" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4462" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303135112", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2135112" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4463" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303135124", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2135124" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4464" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303135221", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2135221" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4465" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303135225", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135225" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4466" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140518", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2140518" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4467" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144602", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144602" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4468" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135318", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135318" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4469" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135323", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2135323" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_446a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135505", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2135505" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_446b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135809", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135809" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_446c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136541", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136541" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_446d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136564", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136564" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_446e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140626", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140626" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_446f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136635", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2136635" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4470" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136905", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136905" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4471" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137118", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137118" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4472" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137422", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137422" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4473" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137521", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137521" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4474" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140706", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2140706" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4475" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137812", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2137812" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4476" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138122", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138122" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4477" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138309", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138309" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4478" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138424", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138424" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4479" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138453", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138453" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_447a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501138618", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138618" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_447b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139025", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139025" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_447c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139419", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2139419" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_447d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502139813", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2139813" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_447e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601141002", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141002" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_447f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21602141310", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141310" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4480" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21602141405", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2141405" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4481" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141522", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141522" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4482" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141620", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141620" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4483" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141739", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2141739" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4484" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141901", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141901" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4485" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141910", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2141910" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4486" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142003", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142003" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4487" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142209", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142209" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4488" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142214", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2142214" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4489" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702142413", + "neg_nil_inc_fam_households": 10, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2142413" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_448a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802142712", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2142712" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_448b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143621", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2143621" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_448c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143628", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143628" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_448d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003143833", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143833" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_448e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003143846", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2143846" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_448f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144113", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2144113" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4490" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144211", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144211" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4491" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103145108", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145108" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4492" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145306", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2145306" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4493" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145519", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2145519" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4494" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203145812", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145812" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4495" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203145825", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145825" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4496" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204146002", + "neg_nil_inc_fam_households": 8, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2146002" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4497" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204146006", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146006" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4498" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502147003", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147003" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4499" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147208", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2147208" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_449a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130544", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130544" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_449b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133522", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133522" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_449c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502139811", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2139811" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_449d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605112805", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2112805" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_44a2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604111715", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111715" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_44b6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112247", + "neg_nil_inc_fam_households": 20, + "negative_nil_income_tot": 95, + "sa1_7dig16": "2112247" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_44b7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112315", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2112315" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_44c5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001123010", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2123010" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_44c6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605112925", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2112925" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_44c7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112634", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 21, + "sa1_7dig16": "2112634" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_44c8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110617", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2110617" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_44cb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100229", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2100229" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_44cc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100304", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100304" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_44cd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100330", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100330" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_44ce" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100426", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100426" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_44cf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100821", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2100821" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_44d0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102705", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102705" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_44d1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102716", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2102716" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_44d2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20102101118", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101118" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_44d3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20102101121", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2101121" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_44d4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20103101304", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101304" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_44d5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103925", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103925" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_44d6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20103101508", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101508" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_44d7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201101919", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101919" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_44d8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102011", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102011" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_44d9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102035", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2102035" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_44da" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102210", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102210" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_44db" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605112926", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2112926" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_44dc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102823", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102823" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_44dd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202103007", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103007" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_44de" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104047", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104047" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_44df" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104612", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104612" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_44e0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104740", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104740" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_44e1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111018", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111018" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_44e2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202103025", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2103025" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_44e3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20203103206", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103206" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_44e4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105018", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2105018" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_44e5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105203", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2105203" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_44e6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105205", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105205" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_44e7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105211", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2105211" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_44e8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105519", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105519" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_44e9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111332", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111332" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_44ea" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111448", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111448" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_44eb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105906", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2105906" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_44ec" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401106007", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2106007" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_44ed" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106639", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106639" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_44ee" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106729", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2106729" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_44ef" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111456", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111456" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_44f0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111501", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111501" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_44f1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106401", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106401" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_44f2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109624", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2109624" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_44f3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107007", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107007" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_44f4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107434", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107434" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_44f5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108118", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108118" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_44f6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108124", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108124" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_44f7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109634", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109634" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_44f8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110323", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110323" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_44f9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108508", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108508" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_44fa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108515", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2108515" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_44fb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109004", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109004" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_44fc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109118", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109118" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_44fd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109301", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109301" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_44fe" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109331", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109331" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_44ff" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114208", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114208" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4500" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114307", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114307" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4501" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114827", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114827" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4502" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114925", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114925" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4503" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114940", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114940" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4504" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115351", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115351" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4505" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115403", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115403" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4506" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115412", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115412" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4507" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115618", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2115618" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4508" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115713", + "neg_nil_inc_fam_households": 16, + "negative_nil_income_tot": 29, + "sa1_7dig16": "2115713" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4509" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115724", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115724" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_450a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115942", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115942" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_450b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116334", + "neg_nil_inc_fam_households": 20, + "negative_nil_income_tot": 55, + "sa1_7dig16": "2116334" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_450c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116504", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 11, + "sa1_7dig16": "2116504" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_450d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116828", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116828" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_450e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116904", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2116904" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_450f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116948", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116948" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4510" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117205", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117205" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4511" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117224", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2117224" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4512" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117226", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117226" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4513" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117734", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 11, + "sa1_7dig16": "2117734" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4514" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118307", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118307" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4515" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119011", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 14, + "sa1_7dig16": "2119011" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4516" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119017", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119017" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4517" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119027", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119027" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4518" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119032", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119032" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4519" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119120", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119120" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_451a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119341", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2119341" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_451b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120004", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2120004" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_451c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120323", + "neg_nil_inc_fam_households": 9, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2120323" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_451d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120716", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120716" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_451e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120718", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120718" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_451f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120831", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120831" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4520" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903120908", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120908" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4521" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121511", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121511" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4522" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122005", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122005" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4523" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122304", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2122304" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4524" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122505", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122505" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4525" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122603", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2122603" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4526" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122813", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122813" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4527" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122822", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2122822" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4528" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122825", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122825" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4529" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122938", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2122938" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_452a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001123004", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2123004" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_452b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001123105", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2123105" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_452c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001123122", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2123122" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_452d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21002123501", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123501" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_452e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123939", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123939" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_452f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124102", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124102" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4530" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124104", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124104" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4531" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124201", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2124201" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4532" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124206", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2124206" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4533" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124213", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124213" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4534" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124343", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124343" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4535" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124922", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124922" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4536" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125104", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2125104" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4537" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125120", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2125120" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4538" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125410", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125410" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4539" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125713", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125713" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_453a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101126027", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126027" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_453b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126503", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126503" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_453c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126520", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2126520" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_453d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126538", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126538" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_453e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126708", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126708" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_453f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126806", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126806" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4540" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127110", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2127110" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4541" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127324", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2127324" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4542" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127606", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2127606" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4543" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128207", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128207" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4544" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128514", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128514" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4545" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129242", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129242" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4546" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129258", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129258" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4547" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129342", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2129342" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4548" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128603", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128603" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4549" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128929", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128929" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_454a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129109", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2129109" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_454b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129123", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2129123" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_454c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130001", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130001" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_454d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130214", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130214" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_454e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130316", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130316" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_454f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130408", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130408" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4550" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204130924", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130924" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4551" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131815", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131815" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4552" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132116", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132116" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4553" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132244", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132244" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4554" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140416", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2140416" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4555" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132415", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132415" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4556" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132434", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132434" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4557" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132612", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132612" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4558" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133004", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133004" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4559" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133005", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133005" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_455a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133034", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133034" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_455b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133327", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133327" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_455c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133408", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2133408" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_455d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301134032", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134032" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_455e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134111", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134111" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_455f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21602141330", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2141330" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4560" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134129", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134129" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4561" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134203", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134203" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4562" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134248", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134248" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4563" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134303", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134303" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4564" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134806", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134806" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4565" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303135003", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135003" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4566" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303135117", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135117" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4567" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303135122", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2135122" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4568" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135504", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2135504" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4569" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135515", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135515" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_456a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135615", + "neg_nil_inc_fam_households": 7, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2135615" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_456b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136504", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136504" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_456c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136517", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136517" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_456d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136549", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2136549" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_456e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136818", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2136818" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_456f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137113", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137113" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4570" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137123", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137123" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4571" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137142", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137142" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4572" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605112813", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2112813" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4573" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137218", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2137218" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4574" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137224", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2137224" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4575" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137232", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137232" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4576" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137508", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137508" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4577" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137536", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2137536" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4578" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137817", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137817" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4579" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138003", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138003" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_457a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138031", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138031" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_457b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21602141403", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141403" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_457c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138306", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138306" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_457d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138542", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138542" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_457e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501138710", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138710" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_457f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501138814", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2138814" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4580" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502139502", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139502" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4581" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502139504", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2139504" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4582" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140120", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140120" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4583" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141502", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2141502" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4584" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141902", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141902" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4585" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142219", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142219" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4586" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702142402", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142402" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4587" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702142534", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2142534" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4588" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802142719", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2142719" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4589" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902142917", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142917" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_458a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143014", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143014" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_458b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143224", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143224" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_458c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143708", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2143708" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_458d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003143840", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2143840" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_458e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003144002", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144002" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_458f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003144016", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2144016" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4590" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144401", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2144401" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4591" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144643", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2144643" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4592" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144709", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144709" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4593" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144801", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2144801" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4594" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144833", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144833" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4595" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103145015", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145015" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4596" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103145206", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145206" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4597" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145529", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2145529" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4598" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204145920", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145920" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4599" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304146323", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2146323" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_459a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146717", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2146717" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_459b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147101", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147101" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_459c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147411", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2147411" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_459d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147723", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147723" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_459e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147526", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147526" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_459f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147704", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2147704" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_45a0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147709", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147709" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_45a1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147720", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147720" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_45a2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104039", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2104039" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_45a3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904121925", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2121925" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_45a4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110543", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110543" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_45a5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110724", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110724" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_45a6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605112819", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2112819" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_45a7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124344", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124344" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_45a8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605112816", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2112816" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_45a9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113320", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2113320" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_45bf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127120", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127120" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_45cd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100223", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100223" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_45cf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117821", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2117821" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_45d4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100350", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2100350" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_45d5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100407", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100407" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_45d6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100425", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2100425" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_45d7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100502", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2100502" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_45d8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100603", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100603" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_45d9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20103101404", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2101404" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_45da" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20103101619", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101619" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_45db" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201101923", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2101923" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_45dc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102243", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102243" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_45dd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102245", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2102245" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_45de" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102802", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102802" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_45df" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102902", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102902" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_45e0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202103001", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103001" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_45e1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20203103208", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103208" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_45e2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104327", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104327" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_45e3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105024", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2105024" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_45e4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105033", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2105033" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_45e5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105308", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105308" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_45e6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105410", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105410" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_45e7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105912", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2105912" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_45e8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401106101", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106101" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_45e9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106409", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106409" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_45ea" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106504", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2106504" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_45eb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115510", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2115510" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_45ec" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105111", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105111" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_45ed" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107457", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107457" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_45ee" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106635", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106635" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_45ef" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106721", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2106721" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_45f0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403106805", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106805" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_45f1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403106904", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2106904" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_45f2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115528", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115528" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_45f3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107006", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107006" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_45f4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108105", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108105" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_45f5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108125", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108125" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_45f6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116949", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116949" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_45f7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117005", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117005" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_45f8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107008", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107008" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_45f9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107327", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2107327" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_45fa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117115", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117115" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_45fb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107615", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107615" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_45fc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107903", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2107903" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_45fd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107944", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107944" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_45fe" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111329", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111329" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_45ff" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108428", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2108428" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4600" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503108718", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108718" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4601" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503108917", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108917" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4602" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109104", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2109104" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4603" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111404", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111404" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4604" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110126", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110126" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4605" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110307", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110307" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4606" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110328", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2110328" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4607" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111616", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2111616" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4608" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604111707", + "neg_nil_inc_fam_households": 68, + "negative_nil_income_tot": 402, + "sa1_7dig16": "2111707" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4609" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112243", + "neg_nil_inc_fam_households": 8, + "negative_nil_income_tot": 77, + "sa1_7dig16": "2112243" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_460a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113223", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2113223" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_460b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113623", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113623" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_460c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607113904", + "neg_nil_inc_fam_households": 10, + "negative_nil_income_tot": 51, + "sa1_7dig16": "2113904" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_460d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110401", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110401" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_460e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110409", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110409" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_460f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110610", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2110610" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4610" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110707", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110707" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4611" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110829", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2110829" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4612" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110847", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110847" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4613" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111017", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111017" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4614" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114323", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114323" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4615" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114401", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114401" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4616" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114511", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114511" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4617" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114725", + "neg_nil_inc_fam_households": 8, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2114725" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4618" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114922", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114922" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4619" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115001", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115001" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_461a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115024", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2115024" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_461b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115130", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115130" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_461c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115320", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2115320" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_461d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115621", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115621" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_461e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115925", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115925" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_461f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702116008", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116008" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4620" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116120", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116120" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4621" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116137", + "neg_nil_inc_fam_households": 7, + "negative_nil_income_tot": 15, + "sa1_7dig16": "2116137" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4622" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116720", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116720" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4623" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116916", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116916" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4624" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117416", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117416" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4625" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117704", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117704" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4626" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802118112", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2118112" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4627" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802118210", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118210" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4628" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118321", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118321" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4629" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118530", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118530" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_462a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118701", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118701" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_462b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118825", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2118825" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_462c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118915", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118915" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_462d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118929", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2118929" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_462e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119024", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2119024" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_462f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120234", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120234" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4630" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119437", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119437" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4631" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119513", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119513" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4632" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119724", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119724" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4633" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119740", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119740" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4634" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119812", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119812" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4635" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119915", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119915" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4636" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119919", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2119919" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4637" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119924", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119924" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4638" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120214", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120214" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4639" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120754", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120754" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_463a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120853", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2120853" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_463b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121107", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2121107" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_463c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121316", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121316" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_463d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904121717", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121717" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_463e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124116", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2124116" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_463f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122105", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2122105" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4640" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122120", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2122120" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4641" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122519", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2122519" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4642" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124504", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124504" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4643" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124606", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124606" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4644" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124608", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124608" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4645" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132033", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 36, + "sa1_7dig16": "2132033" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4646" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122824", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122824" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4647" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001123103", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123103" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4648" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124615", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124615" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4649" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124916", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124916" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_464a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21002123205", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2123205" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_464b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21002123227", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123227" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_464c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123941", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2123941" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_464d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124203", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124203" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_464e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126624", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2126624" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_464f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125103", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125103" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4650" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125816", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125816" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4651" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125823", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125823" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4652" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125908", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125908" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4653" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125919", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2125919" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4654" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125938", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125938" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4655" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126535", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126535" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4656" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126615", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 11, + "sa1_7dig16": "2126615" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4657" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126630", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126630" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4658" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104126902", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2126902" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4659" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127406", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127406" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_465a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127715", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127715" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_465b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127811", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127811" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_465c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127825", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127825" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_465d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127909", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2127909" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_465e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127912", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2127912" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_465f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128101", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2128101" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4660" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128130", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128130" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4661" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128516", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128516" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4662" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128605", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128605" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4663" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128644", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2128644" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4664" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128717", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128717" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4665" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129460", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2129460" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4666" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129708", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2129708" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4667" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130021", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2130021" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4668" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130808", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130808" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4669" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204130904", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2130904" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_466a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131207", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2131207" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_466b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131224", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2131224" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_466c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131236", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131236" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_466d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131603", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2131603" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_466e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132001", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 34, + "sa1_7dig16": "2132001" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_466f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132013", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 17, + "sa1_7dig16": "2132013" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4670" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132129", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2132129" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4671" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132310", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2132310" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4672" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132327", + "neg_nil_inc_fam_households": 8, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2132327" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4673" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132407", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132407" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4674" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132416", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132416" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4675" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132427", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132427" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4676" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132548", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2132548" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4677" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132705", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132705" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4678" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132741", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2132741" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4679" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133436", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2133436" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_467a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133535", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2133535" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_467b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133804", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133804" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_467c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133808", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2133808" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_467d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134206", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2134206" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_467e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134330", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134330" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_467f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134420", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134420" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4680" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134442", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134442" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4681" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134610", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134610" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4682" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134624", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134624" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4683" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134729", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2134729" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4684" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134818", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 12, + "sa1_7dig16": "2134818" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4685" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134902", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2134902" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4686" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134924", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 13, + "sa1_7dig16": "2134924" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4687" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135512", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135512" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4688" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135517", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135517" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4689" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135530", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2135530" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_468a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135535", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2135535" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_468b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135538", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135538" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_468c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136205", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136205" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_468d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136211", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136211" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_468e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136250", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136250" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_468f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136601", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136601" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4690" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136947", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136947" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4691" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137126", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137126" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4692" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137233", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2137233" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4693" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140201", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140201" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4694" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137318", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137318" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4695" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137319", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137319" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4696" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137522", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2137522" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4697" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137528", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2137528" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4698" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138058", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2138058" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4699" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138432", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138432" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_469a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501138911", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138911" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_469b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143001", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2143001" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_469c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303135216", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135216" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_469d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139402", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2139402" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_469e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139406", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2139406" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_469f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140205", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140205" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_46a0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140207", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140207" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_46a1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140721", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140721" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_46a2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140901", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140901" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_46a3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601141009", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2141009" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_46a4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21602141114", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2141114" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_46a5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141625", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2141625" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_46a6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142115", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142115" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_46a7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802142602", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2142602" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_46a8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802142628", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142628" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_46a9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802142629", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2142629" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_46aa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802142630", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142630" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_46ab" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802142633", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142633" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_46ac" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902142840", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142840" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_46ad" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143125", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143125" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_46ae" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143420", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143420" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_46af" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144120", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144120" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_46b0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144227", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144227" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_46b1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144633", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144633" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_46b2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144727", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144727" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_46b3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103145210", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145210" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_46b4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203145729", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145729" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_46b5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147919", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147919" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_46b6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204145908", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2145908" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_46b7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204146032", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146032" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_46b8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304146204", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146204" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_46b9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304146342", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146342" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_46ba" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502147030", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147030" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_46bb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147211", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147211" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_46bc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147306", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2147306" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_46bd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147410", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2147410" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_46be" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147828", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147828" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_46bf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117829", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2117829" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_46c0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132042", + "neg_nil_inc_fam_households": 7, + "negative_nil_income_tot": 15, + "sa1_7dig16": "2132042" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_46c1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140616", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140616" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_46c2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138131", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138131" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_46c3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802142632", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142632" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_46c4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106319", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2106319" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_46c5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110005", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110005" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_46c6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605112822", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2112822" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_46c7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113033", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2113033" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_46c8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113331", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2113331" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_46cb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114019", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114019" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_46cc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118707", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2118707" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_46ec" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110601", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110601" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_46ef" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110607", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 11, + "sa1_7dig16": "2110607" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_46f0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100317", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100317" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_46f1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100406", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2100406" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_46f2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100429", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100429" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_46f3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201101836", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101836" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_46f4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110830", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110830" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_46f5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111128", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111128" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_46f6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20102101110", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101110" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_46f7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20103101308", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2101308" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_46f8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20103101607", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101607" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_46f9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201101821", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101821" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_46fa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104036", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104036" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_46fb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111217", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111217" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_46fc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201101837", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101837" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_46fd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201101838", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101838" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_46fe" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102020", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102020" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_46ff" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102405", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102405" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4700" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102420", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102420" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4701" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102806", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2102806" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4702" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202103016", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2103016" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4703" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103725", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2103725" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4704" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103844", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2103844" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4705" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103848", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2103848" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4706" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103927", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103927" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4707" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104243", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104243" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4708" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104343", + "neg_nil_inc_fam_households": 7, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2104343" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4709" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104527", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104527" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_470a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105032", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105032" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_470b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105624", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2105624" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_470c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105721", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105721" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_470d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401106002", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2106002" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_470e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107625", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107625" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_470f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107630", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2107630" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4710" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108126", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108126" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4711" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111226", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111226" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4712" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111453", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111453" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4713" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108425", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108425" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4714" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109345", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2109345" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4715" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109356", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2109356" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4716" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109610", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2109610" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4717" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114302", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2114302" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4718" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114305", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2114305" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4719" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114710", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2114710" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_471a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114850", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2114850" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_471b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115221", + "neg_nil_inc_fam_households": 7, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2115221" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_471c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115329", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115329" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_471d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115357", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2115357" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_471e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115513", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2115513" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_471f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115520", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115520" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4720" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115716", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115716" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4721" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115728", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2115728" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4722" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115924", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115924" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4723" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116145", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116145" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4724" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116216", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116216" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4725" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116403", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116403" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4726" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116705", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116705" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4727" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116711", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116711" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4728" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116951", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2116951" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4729" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116952", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2116952" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_472a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117814", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117814" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_472b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117839", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2117839" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_472c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117911", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2117911" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_472d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118832", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118832" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_472e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118917", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2118917" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_472f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119026", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2119026" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4730" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119711", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119711" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4731" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119719", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119719" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4732" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119925", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119925" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4733" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120413", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120413" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4734" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120702", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120702" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4735" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120743", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120743" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4736" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120805", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2120805" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4737" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121205", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121205" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4738" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121517", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121517" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4739" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904121951", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121951" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_473a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122404", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122404" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_473b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21002123208", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123208" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_473c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21002123223", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2123223" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_473d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21002123310", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123310" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_473e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124138", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124138" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_473f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124510", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124510" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4740" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124712", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124712" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4741" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125116", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125116" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4742" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126511", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126511" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4743" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126711", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2126711" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4744" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126737", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2126737" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4745" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104126913", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126913" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4746" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131458", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131458" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4747" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125121", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125121" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4748" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125639", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2125639" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4749" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125705", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125705" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_474a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125808", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125808" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_474b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125920", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2125920" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_474c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131701", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2131701" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_474d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127603", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2127603" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_474e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127621", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127621" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_474f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127908", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127908" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4750" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128113", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2128113" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4751" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128215", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128215" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4752" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128628", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2128628" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4753" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128807", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2128807" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4754" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130540", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130540" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4755" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129139", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2129139" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4756" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129245", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129245" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4757" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130010", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130010" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4758" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130042", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130042" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4759" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130043", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130043" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_475a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130312", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130312" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_475b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131229", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131229" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_475c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131724", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131724" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_475d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205131930", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131930" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_475e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132030", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2132030" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_475f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132038", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132038" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4760" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132111", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2132111" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4761" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132247", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132247" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4762" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132326", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132326" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4763" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132414", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2132414" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4764" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132619", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2132619" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4765" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132728", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132728" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4766" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133063", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133063" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4767" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133315", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2133315" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4768" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133509", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133509" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4769" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133722", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133722" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_476a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133815", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133815" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_476b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301134023", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2134023" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_476c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301134025", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134025" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_476d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134125", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134125" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_476e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134131", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134131" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_476f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134916", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134916" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4770" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303135008", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2135008" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4771" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135623", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2135623" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4772" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135641", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2135641" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4773" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135649", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2135649" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4774" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135805", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2135805" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4775" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135822", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2135822" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4776" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304136019", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136019" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4777" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304136031", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136031" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4778" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136214", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2136214" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4779" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137409", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137409" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_477a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136616", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136616" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_477b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136619", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136619" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_477c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136630", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136630" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_477d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137719", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137719" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_477e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137724", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137724" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_477f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138233", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138233" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4780" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136814", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136814" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4781" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137137", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2137137" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4782" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137214", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137214" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4783" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137340", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137340" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4784" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140305", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140305" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4785" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138501", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138501" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4786" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138530", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138530" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4787" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138534", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138534" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4788" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139014", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2139014" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4789" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139106", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139106" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_478a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139202", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139202" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_478b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502139605", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2139605" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_478c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502139612", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139612" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_478d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502139906", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139906" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_478e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140019", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2140019" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_478f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21602141417", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2141417" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4790" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141505", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141505" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4791" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902142812", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2142812" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4792" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902142837", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2142837" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4793" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143122", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143122" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4794" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143217", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143217" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4795" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143422", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2143422" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4796" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143504", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143504" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4797" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143626", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2143626" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4798" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144716", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2144716" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4799" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144818", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144818" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_479a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103145022", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2145022" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_479b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145620", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145620" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_479c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204146011", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146011" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_479d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204146021", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2146021" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_479e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304146103", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146103" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_479f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304146328", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146328" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_47a0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146614", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146614" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_47a1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146736", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146736" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_47a2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147105", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2147105" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_47a3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147215", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147215" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_47a4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147936", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147936" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_47a5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704148005", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2148005" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_47a6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116432", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2116432" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_47c1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132309", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132309" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_47ca" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104401", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104401" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_47cb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130016", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130016" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_47cc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130233", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130233" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_47cd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116328", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116328" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_47d1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100617", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2100617" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_47d2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100841", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100841" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_47d3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20102100917", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2100917" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_47d4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100339", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100339" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_47d5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100402", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2100402" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_47d6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100519", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2100519" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_47d7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100606", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100606" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_47d8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116418", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2116418" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_47d9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20102101008", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101008" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_47da" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20102101120", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101120" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_47db" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20103101618", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2101618" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_47dc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20103101712", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2101712" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_47dd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201101804", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101804" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_47de" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201101808", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101808" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_47df" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201101813", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2101813" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_47e0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202103006", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103006" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_47e1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202103114", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2103114" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_47e2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107902", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2107902" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_47e3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103936", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103936" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_47e4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104315", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104315" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_47e5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104505", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104505" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_47e6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104616", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104616" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_47e7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303104805", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104805" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_47e8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303104818", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104818" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_47e9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107702", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107702" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_47ea" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107704", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107704" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_47eb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105114", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2105114" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_47ec" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105514", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2105514" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_47ed" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105713", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2105713" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_47ee" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105806", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2105806" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_47ef" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105913", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105913" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_47f0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106706", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2106706" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_47f1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403106801", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2106801" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_47f2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107103", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2107103" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_47f3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107110", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107110" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_47f4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107904", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2107904" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_47f5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108423", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108423" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_47f6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108505", + "neg_nil_inc_fam_households": 7, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2108505" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_47f7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108608", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108608" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_47f8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108610", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2108610" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_47f9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116310", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2116310" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_47fa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503108914", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108914" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_47fb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503108916", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108916" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_47fc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109502", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2109502" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_47fd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109629", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2109629" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_47fe" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110008", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110008" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_47ff" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110325", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110325" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4800" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110551", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2110551" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4801" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110609", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110609" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4802" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110918", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110918" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4803" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111325", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111325" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4804" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111511", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111511" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4805" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112211", + "neg_nil_inc_fam_households": 32, + "negative_nil_income_tot": 158, + "sa1_7dig16": "2112211" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4806" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113324", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2113324" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4807" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114441", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 15, + "sa1_7dig16": "2114441" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4808" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114446", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114446" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4809" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114505", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2114505" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_480a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115006", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115006" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_480b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115040", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115040" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_480c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115124", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115124" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_480d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115619", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115619" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_480e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115737", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2115737" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_480f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115931", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2115931" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4810" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115938", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2115938" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4811" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116717", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116717" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4812" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117119", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117119" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4813" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117636", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117636" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4814" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117719", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117719" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4815" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117801", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2117801" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4816" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802118005", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118005" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4817" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802118109", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118109" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4818" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118617", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2118617" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4819" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118627", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2118627" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_481a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118629", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118629" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_481b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119018", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119018" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_481c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119109", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119109" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_481d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119707", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119707" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_481e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119828", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119828" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_481f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120007", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120007" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4820" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120014", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2120014" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4821" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120117", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120117" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4822" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120215", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120215" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4823" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120725", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120725" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4824" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120734", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2120734" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4825" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120748", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120748" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4826" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120751", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120751" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4827" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903120931", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120931" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4828" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904121930", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2121930" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4829" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122036", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2122036" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_482a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121208", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121208" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_482b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904121708", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2121708" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_482c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001123111", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123111" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_482d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138002", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138002" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_482e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122101", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122101" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_482f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122117", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2122117" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4830" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122119", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122119" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4831" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122413", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122413" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4832" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122902", + "neg_nil_inc_fam_households": 7, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2122902" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4833" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122914", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122914" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4834" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21002123220", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123220" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4835" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21002123301", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2123301" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4836" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124130", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124130" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4837" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124611", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124611" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4838" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125926", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125926" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4839" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124622", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124622" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_483a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124918", + "neg_nil_inc_fam_households": 8, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2124918" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_483b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124920", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2124920" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_483c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125109", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2125109" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_483d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130009", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130009" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_483e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101126003", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126003" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_483f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101126024", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126024" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4840" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21102126126", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126126" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4841" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21102126224", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126224" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4842" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126626", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126626" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4843" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126627", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126627" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4844" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126642", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2126642" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4845" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127010", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2127010" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4846" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127117", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2127117" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4847" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127320", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2127320" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4848" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127405", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127405" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4849" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128232", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128232" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_484a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128305", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128305" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_484b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128711", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2128711" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_484c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129131", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2129131" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_484d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129304", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129304" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_484e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129313", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129313" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_484f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129405", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2129405" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4850" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130242", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2130242" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4851" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130419", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130419" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4852" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129507", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129507" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4853" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129920", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129920" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4854" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130608", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130608" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4855" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131203", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131203" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4856" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131227", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2131227" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4857" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131307", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131307" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4858" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131423", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131423" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4859" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131439", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2131439" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_485a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131823", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2131823" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_485b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132139", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132139" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_485c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132144", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132144" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_485d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132149", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132149" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_485e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132437", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132437" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_485f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132615", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2132615" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4860" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133917", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133917" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4861" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301134014", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134014" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4862" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134432", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134432" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4863" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134714", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134714" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4864" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134740", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 12, + "sa1_7dig16": "2134740" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4865" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134823", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134823" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4866" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303135219", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2135219" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4867" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303135220", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135220" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4868" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135619", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2135619" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4869" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136303", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136303" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_486a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136510", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136510" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_486b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136562", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136562" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_486c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136940", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136940" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_486d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136952", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136952" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_486e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137207", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2137207" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_486f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137403", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137403" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4870" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137511", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2137511" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4871" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137527", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137527" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4872" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137721", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137721" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4873" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112415", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2112415" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4874" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138043", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138043" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4875" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138119", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138119" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4876" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138143", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138143" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4877" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138417", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138417" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4878" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501138909", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138909" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4879" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502139908", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2139908" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_487a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144408", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144408" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_487b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601141010", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141010" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_487c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21602141109", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2141109" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_487d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21602141116", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141116" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_487e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21602141337", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141337" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_487f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141627", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2141627" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4880" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142102", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142102" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4881" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142127", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142127" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4882" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702142416", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2142416" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4883" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702142522", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2142522" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4884" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902142826", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2142826" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4885" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144722", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2144722" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4886" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143116", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143116" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4887" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143604", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143604" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4888" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003143824", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2143824" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4889" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003143901", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2143901" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_488a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144202", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144202" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_488b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144217", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2144217" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_488c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144312", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144312" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_488d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144406", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2144406" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_488e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144907", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2144907" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_488f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103145123", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2145123" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4890" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145433", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145433" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4891" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145508", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145508" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4892" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145629", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2145629" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4893" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145632", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145632" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4894" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204145923", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2145923" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4895" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146514", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146514" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4896" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605112937", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2112937" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4897" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146710", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146710" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4898" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146812", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2146812" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4899" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502146940", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146940" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_489a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147106", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2147106" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_489b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147309", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147309" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_489c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147310", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147310" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_489d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147414", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2147414" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_489e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147706", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2147706" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_489f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147806", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147806" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_48a0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147929", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147929" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_48a1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704148001", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2148001" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_48a2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113301", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 16, + "sa1_7dig16": "2113301" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_48a3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116521", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116521" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_48a4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116609", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116609" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_48a5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112230", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2112230" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_48a6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113414", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113414" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_48c0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113643", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2113643" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_48c2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113810", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113810" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_48c5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702116004", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116004" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_48cb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113501", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2113501" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_48cc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115117", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 25, + "sa1_7dig16": "2115117" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_48cd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109711", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109711" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_48cf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604111705", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2111705" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_48d1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604111910", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111910" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_48d2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100114", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2100114" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_48d3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100342", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100342" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_48d4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100453", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2100453" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_48d5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100822", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100822" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_48d6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100831", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100831" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_48d7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20102101122", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2101122" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_48d8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20103101305", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2101305" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_48d9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20103101409", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101409" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_48da" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201101835", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101835" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_48db" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102034", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102034" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_48dc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102222", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2102222" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_48dd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102409", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2102409" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_48de" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104213", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104213" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_48df" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104239", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104239" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_48e0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102605", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102605" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_48e1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102810", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2102810" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_48e2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202103018", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103018" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_48e3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103843", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2103843" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_48e4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103853", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103853" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_48e5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103939", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2103939" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_48e6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104145", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104145" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_48e7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104536", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104536" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_48e8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104623", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2104623" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_48e9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105035", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105035" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_48ea" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105309", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105309" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_48eb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105414", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105414" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_48ec" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105704", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2105704" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_48ed" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105811", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105811" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_48ee" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401106203", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2106203" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_48ef" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401106208", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106208" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_48f0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106626", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106626" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_48f1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108614", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108614" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_48f2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112109", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2112109" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_48f3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107301", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107301" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_48f4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107612", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107612" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_48f5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107618", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107618" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_48f6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503108904", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2108904" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_48f7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109010", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109010" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_48f8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109338", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2109338" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_48f9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107807", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2107807" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_48fa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107914", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2107914" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_48fb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107918", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107918" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_48fc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109524", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109524" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_48fd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109537", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2109537" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_48fe" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109601", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109601" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_48ff" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108101", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108101" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4900" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108117", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2108117" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4901" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110129", + "neg_nil_inc_fam_households": 7, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2110129" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4902" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110320", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110320" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4903" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110509", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110509" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4904" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110923", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110923" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4905" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111323", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2111323" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4906" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113629", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113629" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4907" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113826", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113826" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4908" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607113906", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2113906" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4909" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114203", + "neg_nil_inc_fam_households": 7, + "negative_nil_income_tot": 15, + "sa1_7dig16": "2114203" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_490a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114306", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114306" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_490b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114314", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114314" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_490c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114436", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114436" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_490d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114459", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114459" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_490e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114733", + "neg_nil_inc_fam_households": 10, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2114733" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_490f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114821", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114821" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4910" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115025", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115025" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4911" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116142", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116142" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4912" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116928", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116928" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4913" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117004", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117004" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4914" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117017", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117017" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4915" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117108", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2117108" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4916" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117426", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2117426" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4917" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117429", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2117429" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4918" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117626", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2117626" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4919" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117725", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2117725" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_491a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117751", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117751" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_491b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117752", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2117752" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_491c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802118105", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118105" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_491d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118518", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118518" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_491e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118710", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118710" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_491f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118804", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118804" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4920" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119002", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119002" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4921" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119404", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119404" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4922" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119517", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119517" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4923" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119518", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2119518" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4924" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119609", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119609" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4925" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119742", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119742" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4926" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120113", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120113" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4927" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120316", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120316" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4928" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117630", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117630" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4929" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120318", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120318" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_492a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120830", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2120830" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_492b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903120910", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120910" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_492c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903120929", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120929" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_492d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903120951", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2120951" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_492e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121005", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121005" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_492f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122909", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122909" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4930" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121210", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121210" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4931" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121403", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121403" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4932" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121502", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2121502" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4933" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122001", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2122001" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4934" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122109", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2122109" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4935" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122113", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122113" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4936" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21002123305", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123305" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4937" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123946", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2123946" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4938" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124018", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124018" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4939" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124307", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124307" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_493a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117735", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117735" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_493b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124932", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124932" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_493c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125426", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125426" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_493d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125716", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125716" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_493e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125806", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2125806" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_493f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125918", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125918" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4940" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21102126203", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126203" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4941" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126523", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2126523" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4942" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126541", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2126541" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4943" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132740", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132740" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4944" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126542", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126542" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4945" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126622", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2126622" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4946" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126738", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126738" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4947" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127104", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127104" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4948" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127125", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2127125" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4949" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127211", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2127211" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_494a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127609", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127609" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_494b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127832", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2127832" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_494c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128004", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128004" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_494d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128302", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128302" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_494e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128325", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128325" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_494f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128415", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128415" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4950" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128515", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128515" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4951" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128646", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128646" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4952" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128951", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128951" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4953" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129215", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129215" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4954" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129317", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129317" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4955" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129355", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129355" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4956" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129912", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129912" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4957" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130526", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130526" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4958" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131145", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131145" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4959" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131240", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131240" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_495a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131249", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131249" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_495b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131305", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131305" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_495c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131312", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131312" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_495d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131425", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131425" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_495e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131824", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131824" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_495f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205131906", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2131906" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4960" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133232", + "neg_nil_inc_fam_households": 8, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2133232" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4961" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205131938", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131938" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4962" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205131939", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131939" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4963" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132029", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2132029" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4964" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132112", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2132112" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4965" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132332", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132332" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4966" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132432", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2132432" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4967" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132631", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2132631" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4968" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132716", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132716" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4969" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132720", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132720" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_496a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117749", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2117749" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_496b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133306", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2133306" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_496c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133323", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133323" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_496d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133832", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133832" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_496e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134508", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134508" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_496f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134629", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134629" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4970" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134723", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134723" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4971" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135653", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135653" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4972" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135841", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2135841" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4973" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304136002", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136002" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4974" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304136008", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136008" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4975" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136525", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136525" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4976" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137206", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2137206" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4977" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137441", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137441" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4978" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138444", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138444" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4979" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139203", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139203" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_497a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147205", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147205" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_497b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137616", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137616" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_497c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137703", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137703" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_497d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138053", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138053" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_497e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138116", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138116" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_497f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138127", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138127" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4980" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138138", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2138138" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4981" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140109", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140109" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4982" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140110", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2140110" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4983" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502139516", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139516" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4984" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502139518", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139518" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4985" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140013", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2140013" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4986" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140405", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140405" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4987" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140417", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140417" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4988" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140504", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140504" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4989" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140620", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2140620" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_498a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140709", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2140709" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_498b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141521", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141521" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_498c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702142519", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2142519" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_498d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141525", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141525" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_498e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141743", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141743" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_498f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141924", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141924" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4990" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802142631", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142631" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4991" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802142704", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2142704" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4992" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802142728", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142728" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4993" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143203", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2143203" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4994" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144319", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2144319" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4995" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144718", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144718" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4996" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147207", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147207" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4997" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142005", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2142005" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4998" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144815", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144815" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4999" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103145120", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145120" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_499a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142023", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142023" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_499b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142107", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2142107" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_499c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702142508", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2142508" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_499d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204146022", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2146022" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_499e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304146107", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146107" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_499f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304146202", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146202" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_49a0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304146329", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146329" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_49a1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146620", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2146620" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_49a2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146713", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146713" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_49a3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146737", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146737" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_49a4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502146934", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2146934" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_49a5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147219", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147219" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_49a6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147504", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2147504" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_49a7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127220", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127220" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_49a8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117816", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2117816" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_49a9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112417", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2112417" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_49c6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201101818", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101818" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_49d3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100349", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2100349" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_49d4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100823", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2100823" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_49d5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20102101217", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2101217" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_49d6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20103101714", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2101714" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_49d7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102301", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102301" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_49d8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202103109", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103109" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_49d9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20203103308", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2103308" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_49da" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103809", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103809" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_49db" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103872", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103872" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_49dc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104012", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104012" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_49dd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104037", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104037" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_49de" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104128", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104128" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_49df" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104204", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104204" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_49e0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104228", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2104228" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_49e1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105117", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105117" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_49e2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106403", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2106403" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_49e3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403106808", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106808" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_49e4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403106906", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2106906" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_49e5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403106915", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106915" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_49e6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107112", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2107112" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_49e7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107403", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107403" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_49e8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107427", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2107427" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_49e9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107633", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107633" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_49ea" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503108721", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2108721" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_49eb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109017", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2109017" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_49ec" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109018", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2109018" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_49ed" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109102", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2109102" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_49ee" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110507", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110507" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_49ef" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110907", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110907" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_49f0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111111", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111111" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_49f1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111120", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111120" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_49f2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111306", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111306" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_49f3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111331", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111331" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_49f4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111440", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111440" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_49f5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111504", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111504" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_49f6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111605", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2111605" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_49f7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111622", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111622" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_49f8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112126", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2112126" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_49f9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112327", + "neg_nil_inc_fam_households": 19, + "negative_nil_income_tot": 141, + "sa1_7dig16": "2112327" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_49fa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605112825", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2112825" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_49fb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605112913", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2112913" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_49fc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113811", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2113811" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_49fd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114006", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114006" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_49fe" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114324", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114324" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_49ff" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114464", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2114464" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a00" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114618", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114618" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a01" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115205", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115205" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a02" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115503", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115503" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a03" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115705", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115705" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a04" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115903", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2115903" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a05" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115915", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115915" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a06" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116131", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116131" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a07" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116134", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116134" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a08" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116333", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116333" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a09" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116401", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2116401" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a0a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116512", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 21, + "sa1_7dig16": "2116512" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a0b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116703", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116703" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a0c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116709", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116709" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a0d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116801", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116801" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a0e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117309", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2117309" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a0f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117421", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2117421" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a10" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117611", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 11, + "sa1_7dig16": "2117611" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a11" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117843", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117843" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a12" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802118012", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118012" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a13" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802118113", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2118113" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a14" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118304", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118304" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a15" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119107", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 12, + "sa1_7dig16": "2119107" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a16" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119417", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2119417" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a17" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119433", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119433" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a18" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119445", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2119445" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a19" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119617", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2119617" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a1a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120110", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120110" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a1b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120333", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120333" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a1c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120522", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120522" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a1d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120758", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120758" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a1e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903120957", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120957" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a1f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121503", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121503" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a20" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121531", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121531" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a21" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904121944", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121944" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a22" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124109", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124109" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a23" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122032", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2122032" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a24" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122107", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2122107" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a25" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122125", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2122125" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a26" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122318", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2122318" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a27" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122905", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2122905" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a28" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122913", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122913" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a29" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123940", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2123940" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a2a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126725", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2126725" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a2b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124325", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124325" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a2c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124604", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124604" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a2d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124621", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124621" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a2e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005125013", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2125013" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a2f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125516", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125516" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a30" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125623", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125623" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a31" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125937", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125937" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a32" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101126036", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126036" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a33" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126810", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126810" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a34" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21102126132", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2126132" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a35" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126515", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126515" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a36" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126648", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126648" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a37" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127309", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2127309" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a38" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127402", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2127402" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a39" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127518", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2127518" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a3a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128110", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2128110" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a3b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128111", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2128111" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a3c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128320", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128320" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a3d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128503", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128503" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a3e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128509", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2128509" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a3f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128720", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2128720" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a40" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128806", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128806" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a41" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128934", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128934" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a42" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129218", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129218" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a43" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129445", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129445" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a44" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129725", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129725" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a45" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130026", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130026" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a46" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130422", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130422" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a47" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130609", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130609" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a48" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130818", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2130818" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a49" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131156", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131156" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a4a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131409", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131409" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a4b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131438", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131438" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a4c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131609", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131609" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a4d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132122", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2132122" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a4e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132153", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132153" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a4f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132216", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2132216" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a50" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132246", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 15, + "sa1_7dig16": "2132246" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a51" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132249", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132249" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a52" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132316", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2132316" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a53" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132420", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132420" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a54" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132512", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2132512" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a55" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132529", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2132529" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a56" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301132804", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132804" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a57" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133312", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133312" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a58" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133402", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133402" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a59" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133419", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133419" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a5a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133423", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2133423" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a5b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133444", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133444" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a5c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133613", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2133613" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a5d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133717", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133717" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a5e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133805", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 11, + "sa1_7dig16": "2133805" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a5f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134209", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134209" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a60" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134302", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2134302" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a61" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134835", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2134835" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a62" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303135009", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2135009" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a63" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303135202", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2135202" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a64" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135330", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2135330" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a65" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135617", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2135617" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a66" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135628", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135628" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a67" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135648", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135648" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a68" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135817", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2135817" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a69" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304136003", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2136003" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a6a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136125", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136125" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a6b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136526", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136526" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a6c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138220", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2138220" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a6d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136634", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2136634" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a6e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136942", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136942" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a6f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137040", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137040" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a70" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137330", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137330" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a71" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137502", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137502" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a72" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137626", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137626" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a73" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137940", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137940" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a74" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138028", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2138028" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a75" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138441", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2138441" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a76" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138448", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138448" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a77" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501138709", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138709" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a78" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501138834", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138834" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a79" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501138836", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2138836" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a7a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139101", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139101" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a7b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139408", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2139408" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a7c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139417", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2139417" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a7d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139421", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2139421" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a7e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502139505", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139505" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a7f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502139607", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2139607" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a80" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140003", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2140003" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a81" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140106", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2140106" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a82" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141608", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141608" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a83" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141636", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2141636" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a84" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142031", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2142031" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a85" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142118", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142118" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a86" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142119", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142119" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a87" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142223", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142223" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a88" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142235", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142235" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a89" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142303", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142303" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a8a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702142515", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2142515" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a8b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802142626", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142626" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a8c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143221", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143221" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a8d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144318", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2144318" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a8e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144320", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144320" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a8f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144504", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2144504" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a90" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144652", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144652" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a91" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144712", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2144712" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a92" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144730", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144730" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a93" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103145119", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2145119" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a94" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145308", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145308" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a95" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204145909", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2145909" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a96" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204146001", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2146001" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a97" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204146026", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146026" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a98" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146609", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146609" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a99" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146744", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146744" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a9a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146811", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2146811" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a9b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147520", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147520" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a9c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147813", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147813" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a9d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502146918", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146918" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a9e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147217", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2147217" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4a9f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147308", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147308" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4aa0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147944", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147944" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4aa1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134405", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2134405" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4aa2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117916", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117916" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4aa3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604111724", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111724" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4aa5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112323", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2112323" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4aa6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125929", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2125929" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4abc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101126023", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2126023" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4abf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113002", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2113002" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ac0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112410", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2112410" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ace" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113001", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2113001" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4acf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103874", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2103874" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ad0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104110", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104110" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ad1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104143", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104143" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ad2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107819", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2107819" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ad3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100307", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2100307" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ad4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100611", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100611" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ad5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100815", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2100815" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ad6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20102101023", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101023" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ad7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20102101214", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101214" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ad8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20103101615", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101615" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ad9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20103101617", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2101617" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ada" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102033", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102033" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4adb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102204", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102204" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4adc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102308", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102308" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4add" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102706", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102706" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ade" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20301103502", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2103502" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4adf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103702", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2103702" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ae0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104238", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104238" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ae1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104522", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104522" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ae2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104716", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2104716" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ae3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105413", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2105413" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ae4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105511", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105511" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ae5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107910", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107910" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ae6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108225", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2108225" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ae7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113029", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2113029" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ae8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401106201", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2106201" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ae9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107111", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107111" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4aea" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107207", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107207" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4aeb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107455", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107455" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4aec" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107601", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2107601" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4aed" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107619", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107619" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4aee" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107808", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107808" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4aef" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108412", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2108412" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4af0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108419", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108419" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4af1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109120", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2109120" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4af2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109318", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2109318" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4af3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109355", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109355" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4af4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109623", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2109623" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4af5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109637", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109637" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4af6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110105", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110105" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4af7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111019", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2111019" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4af8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111233", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111233" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4af9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111450", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111450" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4afa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110310", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110310" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4afb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111460", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111460" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4afc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110408", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110408" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4afd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110503", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110503" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4afe" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110608", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2110608" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4aff" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110806", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2110806" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b00" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110840", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110840" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b01" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110917", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110917" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b02" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113438", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2113438" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b03" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113829", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113829" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b04" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114201", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2114201" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b05" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114326", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114326" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b06" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114418", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2114418" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b07" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114612", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2114612" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b08" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114616", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114616" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b09" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114835", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114835" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b0a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115028", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115028" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b0b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115147", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2115147" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b0c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115308", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 15, + "sa1_7dig16": "2115308" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b0d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115361", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115361" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b0e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115517", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115517" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b0f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115518", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2115518" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b10" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116102", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116102" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b11" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116617", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 13, + "sa1_7dig16": "2116617" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b12" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117230", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117230" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b13" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117304", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117304" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b14" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117449", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 11, + "sa1_7dig16": "2117449" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b15" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117838", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2117838" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b16" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802118108", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2118108" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b17" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118325", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2118325" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b18" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21002123521", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123521" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b19" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118604", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118604" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b1a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118615", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118615" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b1b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118813", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118813" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b1c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118849", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118849" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b1d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119321", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119321" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b1e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119418", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119418" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b1f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119435", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2119435" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b20" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119447", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119447" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b21" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119928", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2119928" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b22" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120008", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2120008" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b23" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120115", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120115" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b24" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120337", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120337" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b25" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120516", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120516" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b26" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120827", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120827" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b27" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121317", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121317" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b28" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124904", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124904" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b29" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904121902", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2121902" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b2a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122303", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2122303" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b2b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122417", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122417" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b2c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122816", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122816" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b2d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122946", + "neg_nil_inc_fam_households": 7, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2122946" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b2e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125417", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125417" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b2f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125611", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125611" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b30" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125718", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2125718" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b31" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101126005", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126005" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b32" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101126025", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126025" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b33" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101126026", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126026" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b34" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101126030", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2126030" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b35" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101126038", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126038" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b36" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21102126107", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126107" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b37" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21102126125", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2126125" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b38" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21102126214", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126214" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b39" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21102126230", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126230" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b3a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126537", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126537" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b3b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126611", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126611" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b3c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131112", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2131112" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b3d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126632", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2126632" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b3e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127017", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2127017" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b3f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127024", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127024" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b40" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127203", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2127203" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b41" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127421", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127421" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b42" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127714", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127714" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b43" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128138", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128138" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b44" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128139", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128139" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b45" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128412", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128412" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b46" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128607", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128607" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b47" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128616", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2128616" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b48" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128625", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128625" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b49" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128713", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128713" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b4a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128804", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2128804" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b4b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128916", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2128916" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b4c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129007", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129007" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b4d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129919", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129919" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b4e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130018", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2130018" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b4f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130101", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130101" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b50" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130132", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130132" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b51" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130209", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2130209" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b52" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130539", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2130539" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b53" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114317", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114317" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b54" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131124", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2131124" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b55" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131147", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131147" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b56" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131248", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2131248" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b57" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131426", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131426" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b58" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131717", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2131717" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b59" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131801", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131801" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b5a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132004", + "neg_nil_inc_fam_households": 8, + "negative_nil_income_tot": 146, + "sa1_7dig16": "2132004" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b5b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132039", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 13, + "sa1_7dig16": "2132039" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b5c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132601", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2132601" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b5d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137619", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137619" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b5e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132704", + "neg_nil_inc_fam_households": 8, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2132704" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b5f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132725", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2132725" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b60" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133235", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133235" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b61" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133701", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133701" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b62" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133724", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2133724" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b63" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301134019", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134019" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b64" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301134027", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134027" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b65" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301134040", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134040" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b66" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134119", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2134119" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b67" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138109", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138109" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b68" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134309", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134309" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b69" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134404", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134404" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b6a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134409", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134409" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b6b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134617", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134617" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b6c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134706", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134706" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b6d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134736", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2134736" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b6e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134807", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2134807" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b6f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134915", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134915" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b70" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135306", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135306" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b71" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135714", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2135714" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b72" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135722", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2135722" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b73" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135723", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2135723" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b74" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135724", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2135724" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b75" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135733", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135733" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b76" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135735", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135735" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b77" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135830", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135830" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b78" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304136005", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136005" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b79" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137139", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137139" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b7a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137234", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2137234" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b7b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138112", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138112" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b7c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138201", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138201" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b7d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138205", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138205" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b7e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138227", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138227" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b7f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138240", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2138240" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b80" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138514", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138514" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b81" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140624", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140624" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b82" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141501", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2141501" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b83" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141630", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2141630" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b84" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142312", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142312" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b85" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702142421", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2142421" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b86" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902142906", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2142906" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b87" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143027", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143027" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b88" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143113", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2143113" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b89" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143309", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2143309" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b8a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143511", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143511" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b8b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143516", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143516" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b8c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143622", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2143622" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b8d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003143827", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2143827" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b8e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003143834", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2143834" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b8f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003144011", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2144011" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b90" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144219", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144219" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b91" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144608", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144608" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b92" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144648", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144648" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b93" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144729", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2144729" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b94" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103145027", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145027" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b95" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103145103", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2145103" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b96" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145613", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2145613" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b97" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304146213", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146213" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b98" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146507", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2146507" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b99" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146544", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146544" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b9a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146548", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146548" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b9b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146745", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2146745" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b9c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502146905", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2146905" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b9d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502146909", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146909" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b9e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502146927", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146927" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4b9f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147111", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2147111" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ba0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147402", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147402" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ba1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147917", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147917" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ba2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113329", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2113329" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ba4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114451", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114451" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4bc1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502146923", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146923" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4bca" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113408", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2113408" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4bcb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100310", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2100310" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4bcd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100343", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100343" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4bce" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100417", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2100417" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4bcf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100818", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100818" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4bd0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20103101303", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2101303" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4bd1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20103101503", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101503" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4bd2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20103101704", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101704" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4bd3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102242", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102242" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4bd4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102418", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102418" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4bd5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102707", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102707" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4bd6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103727", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103727" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4bd7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103805", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103805" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4bd8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202103104", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103104" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4bd9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202103110", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103110" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4bda" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103715", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2103715" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4bdb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702116031", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2116031" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4bdc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103824", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103824" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4bdd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104005", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104005" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4bde" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104601", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104601" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4bdf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303104822", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2104822" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4be0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303104903", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104903" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4be1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105004", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2105004" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4be2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303104830", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104830" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4be3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105317", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2105317" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4be4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105705", + "neg_nil_inc_fam_households": 7, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2105705" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4be5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106318", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2106318" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4be6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106505", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2106505" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4be7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106629", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2106629" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4be8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106725", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106725" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4be9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107407", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2107407" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4bea" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107456", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107456" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4beb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108130", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108130" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4bec" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108418", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2108418" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4bed" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108615", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2108615" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4bee" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109107", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2109107" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4bef" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109320", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2109320" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4bf0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113730", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2113730" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4bf1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109328", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109328" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4bf2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109715", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109715" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4bf3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109770", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109770" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4bf4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110403", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110403" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4bf5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110527", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110527" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4bf6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110540", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2110540" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4bf7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111013", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111013" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4bf8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111516", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111516" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4bf9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112105", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2112105" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4bfa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112248", + "neg_nil_inc_fam_households": 92, + "negative_nil_income_tot": 440, + "sa1_7dig16": "2112248" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4bfb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112620", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2112620" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4bfc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113813", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2113813" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4bfd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114303", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114303" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4bfe" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114426", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114426" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4bff" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114462", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114462" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c00" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114844", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2114844" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c01" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115312", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115312" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c02" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115321", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115321" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c03" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115339", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115339" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c04" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115346", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115346" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c05" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115505", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115505" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c06" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115604", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2115604" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c07" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115722", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2115722" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c08" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116132", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116132" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c09" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116213", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2116213" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c0a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116311", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 17, + "sa1_7dig16": "2116311" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c0b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116341", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2116341" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c0c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116412", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2116412" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c0d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116431", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116431" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c0e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116713", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116713" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c0f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116718", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116718" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c10" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117030", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117030" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c11" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117209", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117209" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c12" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117306", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2117306" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c13" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117608", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2117608" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c14" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117617", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117617" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c15" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117634", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 19, + "sa1_7dig16": "2117634" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c16" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117923", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2117923" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c17" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802118117", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2118117" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c18" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118510", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2118510" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c19" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118520", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2118520" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c1a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904121918", + "neg_nil_inc_fam_households": 8, + "negative_nil_income_tot": 13, + "sa1_7dig16": "2121918" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c1b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118712", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118712" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c1c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118846", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118846" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c1d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118919", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2118919" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c1e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119030", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2119030" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c1f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119408", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119408" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c20" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119430", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119430" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c21" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119749", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119749" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c22" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904121921", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2121921" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c23" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124011", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124011" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c24" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119906", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119906" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c25" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119913", + "neg_nil_inc_fam_households": 8, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2119913" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c26" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120213", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120213" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c27" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120219", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120219" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c28" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120314", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120314" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c29" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120829", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120829" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c2a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121527", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121527" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c2b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904121908", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2121908" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c2c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122009", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2122009" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c2d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122035", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2122035" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c2e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122301", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122301" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c2f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122317", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122317" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c30" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122329", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2122329" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c31" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21002123303", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2123303" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c32" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21002123507", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2123507" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c33" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123904", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123904" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c34" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124923", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124923" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c35" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005125008", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125008" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c36" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005125017", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125017" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c37" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125403", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2125403" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c38" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125409", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2125409" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c39" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127422", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127422" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c3a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127424", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127424" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c3b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125418", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125418" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c3c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125807", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125807" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c3d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126326", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126326" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c3e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126730", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2126730" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c3f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126818", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126818" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c40" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127027", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127027" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c41" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127105", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 13, + "sa1_7dig16": "2127105" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c42" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127508", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127508" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c43" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127712", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2127712" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c44" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128104", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128104" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c45" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128519", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128519" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c46" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128942", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128942" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c47" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129112", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129112" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c48" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129249", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2129249" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c49" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129404", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129404" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c4a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129411", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129411" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c4b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130126", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130126" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c4c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130231", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2130231" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c4d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130403", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130403" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c4e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130549", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130549" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c4f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204130913", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130913" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c50" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131137", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131137" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c51" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131138", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131138" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c52" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131205", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131205" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c53" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131239", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131239" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c54" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131254", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131254" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c55" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131412", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131412" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c56" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131614", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131614" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c57" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132101", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132101" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c58" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132137", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132137" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c59" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132154", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132154" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c5a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132402", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2132402" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c5b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132508", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2132508" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c5c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132545", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2132545" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c5d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301132908", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132908" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c5e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133014", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133014" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c5f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134428", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134428" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c60" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133042", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133042" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c61" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133328", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133328" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c62" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133329", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2133329" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c63" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133413", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133413" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c64" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133441", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2133441" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c65" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133530", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133530" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c66" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134433", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134433" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c67" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134436", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134436" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c68" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134728", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134728" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c69" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303135210", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2135210" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c6a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143107", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143107" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c6b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134123", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134123" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c6c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134133", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134133" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c6d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134212", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134212" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c6e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134237", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134237" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c6f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304136023", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136023" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c70" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136114", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2136114" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c71" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136117", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136117" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c72" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136244", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136244" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c73" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136542", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136542" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c74" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136633", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2136633" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c75" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137246", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137246" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c76" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137437", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137437" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c77" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137503", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137503" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c78" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137531", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2137531" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c79" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137715", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2137715" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c7a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138104", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138104" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c7b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138216", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138216" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c7c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138237", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138237" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c7d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138411", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138411" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c7e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138540", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138540" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c7f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141612", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141612" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c80" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139012", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2139012" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c81" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139219", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139219" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c82" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502139802", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2139802" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c83" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142215", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142215" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c84" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142229", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142229" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c85" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702142430", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142430" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c86" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702142507", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2142507" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c87" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140011", + "neg_nil_inc_fam_households": 7, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2140011" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c88" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140017", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140017" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c89" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140702", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2140702" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c8a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21602141308", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2141308" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c8b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143304", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143304" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c8c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143307", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2143307" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c8d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143408", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143408" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c8e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144116", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2144116" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c8f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144606", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2144606" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c90" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144720", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2144720" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c91" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144723", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144723" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c92" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103145115", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2145115" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c93" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103145207", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145207" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c94" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145524", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145524" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c95" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203145721", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145721" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c96" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146803", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146803" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c97" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147227", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2147227" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c98" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147313", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2147313" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c99" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147505", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2147505" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c9a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704148025", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2148025" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c9b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141727", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2141727" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c9c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110557", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110557" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c9e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110720", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2110720" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4c9f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110814", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110814" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ca0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111227", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111227" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ca1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111402", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2111402" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4caa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101126020", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126020" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4cb6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111410", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2111410" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4cb7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111607", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2111607" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4cc0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604111725", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 14, + "sa1_7dig16": "2111725" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4cc7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100224", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2100224" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4cce" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100344", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2100344" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ccf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102239", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102239" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4cd0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100404", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100404" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4cd1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100422", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100422" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4cd2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100704", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100704" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4cd3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100801", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100801" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4cd4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20102100905", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2100905" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4cd5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20102101119", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2101119" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4cd6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201101913", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2101913" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4cd7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102013", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102013" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4cd8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20103101511", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101511" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4cd9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20103101610", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2101610" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4cda" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201101828", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101828" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4cdb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102115", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2102115" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4cdc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102614", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102614" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4cdd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202103116", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103116" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4cde" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20301103508", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2103508" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4cdf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20301103608", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103608" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ce0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103713", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103713" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ce1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104048", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104048" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ce2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104122", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104122" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ce3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104219", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104219" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ce4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104314", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104314" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ce5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104506", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2104506" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ce6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104611", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2104611" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ce7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104617", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104617" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ce8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105010", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105010" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ce9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105029", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105029" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4cea" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105407", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2105407" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ceb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105633", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105633" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4cec" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105805", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105805" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ced" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106303", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106303" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4cee" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403106907", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2106907" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4cef" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403106909", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2106909" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4cf0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403106918", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106918" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4cf1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113504", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113504" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4cf2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107326", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107326" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4cf3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107803", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107803" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4cf4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108511", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2108511" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4cf5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109720", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109720" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4cf6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109740", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109740" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4cf7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109760", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2109760" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4cf8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109813", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2109813" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4cf9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110101", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110101" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4cfa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110136", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110136" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4cfb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503108720", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2108720" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4cfc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604111804", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2111804" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4cfd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604111912", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111912" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4cfe" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112317", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2112317" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4cff" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112414", + "neg_nil_inc_fam_households": 8, + "negative_nil_income_tot": 22, + "sa1_7dig16": "2112414" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d00" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112630", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2112630" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d01" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605112809", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2112809" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d02" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605112940", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2112940" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d03" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113022", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2113022" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d04" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113306", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2113306" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d05" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113352", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2113352" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d06" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113824", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113824" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d07" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114113", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114113" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d08" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114603", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114603" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d09" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114805", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114805" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d0a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114829", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114829" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d0b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115019", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115019" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d0c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115325", + "neg_nil_inc_fam_households": 7, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2115325" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d0d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115333", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115333" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d0e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115416", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115416" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d0f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115541", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115541" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d10" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115711", + "neg_nil_inc_fam_households": 7, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2115711" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d11" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115923", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2115923" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d12" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115936", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115936" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d13" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116136", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2116136" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d14" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116208", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116208" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d15" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116336", + "neg_nil_inc_fam_households": 12, + "negative_nil_income_tot": 19, + "sa1_7dig16": "2116336" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d16" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116410", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116410" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d17" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116618", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116618" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d18" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116625", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2116625" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d19" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117023", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117023" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d1a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117323", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 11, + "sa1_7dig16": "2117323" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d1b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117639", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2117639" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d1c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117754", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117754" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d1d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117919", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2117919" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d1e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117920", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2117920" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d1f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118848", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118848" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d20" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119339", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119339" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d21" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119421", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119421" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d22" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119743", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119743" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d23" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120116", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120116" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d24" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120324", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120324" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d25" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120518", + "neg_nil_inc_fam_households": 11, + "negative_nil_income_tot": 13, + "sa1_7dig16": "2120518" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d26" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120527", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 24, + "sa1_7dig16": "2120527" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d27" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903120925", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120925" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d28" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120705", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120705" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d29" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120706", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2120706" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d2a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120753", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120753" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d2b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120807", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120807" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d2c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120809", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120809" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d2d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903120906", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120906" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d2e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903120919", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120919" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d2f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121003", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121003" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d30" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121109", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121109" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d31" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121315", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121315" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d32" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122104", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122104" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d33" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123611", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123611" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d34" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123618", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 13, + "sa1_7dig16": "2123618" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d35" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123720", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2123720" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d36" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123933", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2123933" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d37" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123944", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123944" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d38" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124020", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124020" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d39" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124124", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2124124" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d3a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124202", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2124202" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d3b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124542", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124542" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d3c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124928", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2124928" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d3d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125803", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125803" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d3e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125822", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125822" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d3f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126501", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2126501" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d40" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126617", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2126617" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d41" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126645", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2126645" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d42" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126714", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126714" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d43" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127301", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2127301" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d44" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127507", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2127507" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d45" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127827", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127827" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d46" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128142", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2128142" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d47" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132328", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132328" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d48" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128504", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128504" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d49" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128821", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128821" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d4a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128944", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2128944" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d4b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129248", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2129248" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d4c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129418", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129418" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d4d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129420", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129420" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d4e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129909", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129909" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d4f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130008", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2130008" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d50" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130049", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130049" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d51" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130051", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130051" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d52" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130206", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130206" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d53" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130305", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130305" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d54" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130518", + "neg_nil_inc_fam_households": 8, + "negative_nil_income_tot": 12, + "sa1_7dig16": "2130518" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d55" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130618", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2130618" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d56" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137709", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2137709" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d57" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131020", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131020" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d58" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131125", + "neg_nil_inc_fam_households": 8, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2131125" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d59" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131309", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131309" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d5a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131820", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131820" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d5b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132119", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132119" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d5c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132405", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132405" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d5d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132411", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132411" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d5e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132744", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2132744" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d5f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133009", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133009" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d60" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137424", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2137424" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d61" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133032", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133032" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d62" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133067", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133067" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d63" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133307", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2133307" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d64" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133819", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2133819" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d65" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134228", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134228" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d66" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134306", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2134306" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d67" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134416", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134416" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d68" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134417", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134417" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d69" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134727", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134727" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d6a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303135104", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2135104" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d6b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135904", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2135904" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d6c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137436", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137436" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d6d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135906", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2135906" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d6e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136123", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136123" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d6f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136143", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136143" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d70" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136618", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136618" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d71" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137008", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2137008" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d72" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137028", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137028" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d73" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137332", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137332" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d74" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137420", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137420" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d75" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137801", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2137801" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d76" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137814", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137814" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d77" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139221", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139221" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d78" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702142510", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2142510" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d79" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138013", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138013" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d7a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138111", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138111" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d7b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138211", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138211" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d7c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138236", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138236" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d7d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138510", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138510" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d7e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138517", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138517" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d7f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141913", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141913" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d80" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139404", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2139404" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d81" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142320", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2142320" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d82" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147807", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2147807" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d83" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133523", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2133523" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d84" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139405", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139405" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d85" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502139609", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139609" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d86" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140005", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140005" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d87" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140717", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140717" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d88" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21602141322", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2141322" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d89" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141512", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141512" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d8a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141633", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141633" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d8b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702142531", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2142531" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d8c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802142703", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2142703" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d8d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902142810", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2142810" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d8e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902142814", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142814" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d8f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143025", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143025" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d90" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143112", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143112" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d91" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143115", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143115" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d92" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143417", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143417" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d93" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003143849", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2143849" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d94" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144102", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144102" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d95" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144206", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2144206" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d96" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133603", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2133603" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d97" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144226", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144226" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d98" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144627", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144627" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d99" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145332", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145332" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d9a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145413", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2145413" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d9b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145505", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2145505" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d9c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145527", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145527" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d9d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203145709", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2145709" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d9e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114313", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114313" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4d9f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203145716", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145716" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4da0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203145718", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2145718" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4da1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203145725", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2145725" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4da2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304146317", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2146317" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4da3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146415", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146415" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4da4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146601", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146601" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4da5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502147008", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2147008" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4da6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147514", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147514" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4da7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147602", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2147602" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4da8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147609", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2147609" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4da9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147702", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147702" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4daa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147711", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147711" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4dab" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704148020", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2148020" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4dac" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114422", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114422" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4dad" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114423", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114423" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4dc2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114457", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2114457" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4dc4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126609", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2126609" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4dc9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100414", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100414" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4dd2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20102101115", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2101115" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4dd3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104519", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104519" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4dd4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114510", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114510" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4dd5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20103101611", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2101611" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4dd6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201101909", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2101909" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4dd7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102112", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102112" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4dd8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102113", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102113" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4dd9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102607", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102607" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4dda" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114809", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114809" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ddb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102817", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2102817" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ddc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202103011", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103011" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ddd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202103022", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103022" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4dde" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104001", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104001" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ddf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104208", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2104208" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4de0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104337", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104337" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4de1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104409", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104409" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4de2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117755", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117755" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4de3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104537", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104537" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4de4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104709", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104709" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4de5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105210", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2105210" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4de6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105508", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2105508" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4de7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107203", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107203" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4de8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107909", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107909" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4de9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108137", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108137" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4dea" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108426", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108426" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4deb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503108722", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2108722" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4dec" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503108911", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108911" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ded" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117807", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117807" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4dee" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503108921", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2108921" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4def" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109113", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2109113" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4df0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109748", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109748" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4df1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109767", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109767" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4df2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109806", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109806" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4df3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109807", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109807" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4df4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110404", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110404" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4df5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110535", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110535" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4df6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114104", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 25, + "sa1_7dig16": "2114104" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4df7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110618", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110618" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4df8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110843", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2110843" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4df9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111208", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111208" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4dfa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111222", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2111222" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4dfb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111612", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111612" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4dfc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604111805", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2111805" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4dfd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112701", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2112701" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4dfe" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605112818", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2112818" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4dff" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113311", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2113311" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e00" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113642", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2113642" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e01" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117810", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117810" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e02" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114822", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114822" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e03" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114839", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114839" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e04" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114852", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2114852" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e05" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114905", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114905" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e06" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114942", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2114942" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e07" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115012", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115012" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e08" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115328", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115328" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e09" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115358", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115358" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e0a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115530", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115530" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e0b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115607", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115607" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e0c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115708", + "neg_nil_inc_fam_households": 12, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2115708" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e0d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702116022", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116022" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e0e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116107", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116107" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e0f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116133", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116133" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e10" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116316", + "neg_nil_inc_fam_households": 8, + "negative_nil_income_tot": 16, + "sa1_7dig16": "2116316" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e11" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116323", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116323" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e12" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116433", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116433" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e13" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116719", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116719" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e14" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116947", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116947" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e15" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117213", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2117213" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e16" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117732", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117732" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e17" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117926", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2117926" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e18" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118622", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2118622" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e19" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118815", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118815" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e1a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118908", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2118908" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e1b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119113", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2119113" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e1c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119403", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119403" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e1d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120020", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2120020" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e1e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120228", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2120228" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e1f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121008", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121008" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e20" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904121913", + "neg_nil_inc_fam_households": 7, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2121913" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e21" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904121931", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121931" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e22" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904121942", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121942" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e23" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122118", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2122118" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e24" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122430", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122430" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e25" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122963", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2122963" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e26" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122512", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2122512" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e27" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122815", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2122815" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e28" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122916", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2122916" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e29" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122949", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122949" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e2a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21002123218", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2123218" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e2b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123603", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2123603" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e2c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123703", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123703" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e2d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123728", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2123728" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e2e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124019", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124019" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e2f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124216", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124216" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e30" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124311", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124311" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e31" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124315", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124315" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e32" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124535", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124535" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e33" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124537", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124537" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e34" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124945", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124945" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e35" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005125019", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125019" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e36" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125428", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2125428" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e37" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125514", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125514" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e38" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125515", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2125515" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e39" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101126035", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126035" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e3a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21102126202", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2126202" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e3b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126512", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2126512" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e3c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126531", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2126531" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e3d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126608", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126608" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e3e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126635", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2126635" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e3f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126739", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2126739" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e40" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127210", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127210" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e41" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127304", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127304" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e42" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127407", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127407" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e43" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127707", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2127707" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e44" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127846", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127846" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e45" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128146", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2128146" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e46" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128203", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2128203" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e47" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128653", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128653" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e48" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128814", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2128814" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e49" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128818", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128818" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e4a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129121", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2129121" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e4b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129456", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129456" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e4c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129914", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2129914" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e4d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130024", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2130024" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e4e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130048", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130048" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e4f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130221", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2130221" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e50" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130614", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130614" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e51" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130630", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130630" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e52" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131010", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131010" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e53" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131123", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131123" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e54" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131127", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2131127" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e55" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131234", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131234" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e56" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133533", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133533" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e57" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131302", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131302" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e58" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131321", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131321" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e59" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131707", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2131707" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e5a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131734", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2131734" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e5b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131742", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2131742" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e5c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205131935", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2131935" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e5d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132238", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132238" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e5e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132412", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132412" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e5f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132430", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132430" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e60" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132636", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132636" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e61" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132724", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132724" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e62" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301132915", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132915" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e63" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301132919", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132919" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e64" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133068", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133068" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e65" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133102", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2133102" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e66" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133119", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133119" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e67" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133501", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133501" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e68" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131139", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131139" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e69" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133726", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2133726" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e6a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133801", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2133801" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e6b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133802", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133802" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e6c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133803", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133803" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e6d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301134015", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134015" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e6e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301134020", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134020" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e6f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301134049", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134049" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e70" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134106", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134106" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e71" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134114", + "neg_nil_inc_fam_households": 7, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134114" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e72" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134719", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134719" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e73" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134725", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134725" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e74" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303135230", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2135230" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e75" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135311", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2135311" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e76" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135328", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135328" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e77" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135506", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135506" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e78" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135509", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135509" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e79" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135613", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2135613" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e7a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136807", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136807" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e7b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135625", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135625" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e7c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135702", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2135702" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e7d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135729", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135729" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e7e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135825", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135825" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e7f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304136027", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136027" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e80" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136101", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136101" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e81" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136115", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136115" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e82" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137001", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137001" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e83" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136134", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136134" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e84" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136210", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136210" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e85" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136309", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136309" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e86" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136540", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136540" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e87" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136605", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136605" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e88" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137314", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137314" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e89" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137343", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137343" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e8a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137427", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137427" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e8b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137611", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137611" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e8c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138048", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138048" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e8d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138117", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138117" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e8e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138438", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138438" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e8f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138539", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2138539" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e90" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501138608", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138608" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e91" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501138826", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138826" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e92" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501138906", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138906" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e93" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139307", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2139307" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e94" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140606", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140606" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e95" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140802", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140802" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e96" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140805", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2140805" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e97" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502139522", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139522" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e98" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140103", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140103" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e99" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140421", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140421" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e9a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140602", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2140602" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e9b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140909", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140909" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e9c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21602141314", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2141314" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e9d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141749", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2141749" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e9e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141804", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141804" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4e9f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141906", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141906" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ea0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142123", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142123" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ea1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802142706", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142706" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ea2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902142804", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2142804" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ea3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902142921", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2142921" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ea4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143215", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143215" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ea5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143412", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143412" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ea6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143614", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2143614" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ea7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143705", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2143705" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ea8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003143821", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2143821" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ea9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144326", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144326" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4eaa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144416", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2144416" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4eab" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144632", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2144632" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4eac" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144809", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144809" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ead" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144832", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2144832" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4eae" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103145017", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145017" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4eaf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145317", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2145317" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4eb0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145523", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145523" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4eb1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204146005", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 14, + "sa1_7dig16": "2146005" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4eb2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304146305", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146305" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4eb3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146626", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146626" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4eb4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304146113", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146113" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4eb5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146738", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146738" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4eb6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146814", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146814" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4eb7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502147020", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147020" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4eb8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147501", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147501" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4eb9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704148034", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2148034" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4eba" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802118220", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2118220" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ebb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124214", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124214" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ed1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125928", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2125928" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ed3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113509", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2113509" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4eda" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127031", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2127031" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ee0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132617", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132617" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ee6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134834", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 13, + "sa1_7dig16": "2134834" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ee7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138051", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138051" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ee8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104319", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104319" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4eeb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100428", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2100428" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4eec" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100431", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100431" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4eed" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100511", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100511" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4eee" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100702", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100702" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4eef" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104610", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104610" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ef0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100838", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100838" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ef1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20102100906", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100906" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ef2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20103101309", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2101309" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ef3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201101811", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101811" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ef4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102039", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102039" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ef5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102212", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102212" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ef6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102302", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102302" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ef7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202103008", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103008" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ef8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109009", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109009" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ef9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202103106", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2103106" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4efa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20203103313", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2103313" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4efb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20203103318", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2103318" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4efc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103730", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103730" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4efd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303104815", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104815" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4efe" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105103", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105103" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4eff" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105109", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2105109" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f00" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105315", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2105315" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f01" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105408", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105408" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f02" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105619", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2105619" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f03" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105626", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105626" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f04" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105810", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105810" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f05" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105910", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2105910" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f06" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106502", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2106502" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f07" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106611", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2106611" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f08" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107206", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2107206" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f09" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107214", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107214" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f0a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107302", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107302" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f0b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112512", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2112512" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f0c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107511", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107511" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f0d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107722", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107722" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f0e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108217", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2108217" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f0f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108420", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108420" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f10" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109007", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2109007" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f11" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605112802", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2112802" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f12" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109026", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109026" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f13" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109358", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109358" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f14" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109519", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109519" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f15" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109731", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109731" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f16" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109747", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109747" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f17" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109803", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109803" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f18" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110111", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110111" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f19" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110112", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110112" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f1a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110708", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110708" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f1b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110712", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110712" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f1c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110713", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2110713" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f1d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110836", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110836" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f1e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111142", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111142" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f1f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111207", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111207" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f20" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111236", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111236" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f21" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111307", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2111307" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f22" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111524", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111524" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f23" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604111711", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111711" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f24" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604111731", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 112, + "sa1_7dig16": "2111731" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f25" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112245", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 46, + "sa1_7dig16": "2112245" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f26" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112311", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2112311" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f27" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112402", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2112402" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f28" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112412", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2112412" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f29" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113102", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2113102" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f2a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113217", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2113217" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f2b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113405", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2113405" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f2c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113407", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113407" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f2d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113603", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2113603" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f2e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113731", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113731" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f2f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114826", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114826" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f30" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114828", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114828" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f31" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114927", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114927" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f32" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115145", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115145" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f33" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115201", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 11, + "sa1_7dig16": "2115201" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f34" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115230", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115230" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f35" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115324", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 13, + "sa1_7dig16": "2115324" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f36" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115327", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2115327" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f37" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115744", + "neg_nil_inc_fam_households": 14, + "negative_nil_income_tot": 30, + "sa1_7dig16": "2115744" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f38" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702116020", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116020" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f39" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116339", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116339" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f3a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143035", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143035" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f3b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116342", + "neg_nil_inc_fam_households": 26, + "negative_nil_income_tot": 98, + "sa1_7dig16": "2116342" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f3c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116812", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116812" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f3d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116940", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116940" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f3e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117220", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2117220" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f3f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117227", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117227" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f40" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117703", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2117703" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f41" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117721", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117721" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f42" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117840", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2117840" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f43" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117912", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117912" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f44" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117914", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117914" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f45" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802118212", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2118212" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f46" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119333", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2119333" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f47" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119340", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119340" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f48" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119519", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2119519" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f49" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119603", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119603" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f4a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120217", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120217" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f4b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120509", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 13, + "sa1_7dig16": "2120509" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f4c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120721", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120721" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f4d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120739", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120739" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f4e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120857", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120857" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f4f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903120905", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120905" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f50" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903120935", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120935" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f51" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903120942", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120942" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f52" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121214", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2121214" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f53" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121411", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2121411" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f54" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121504", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121504" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f55" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124303", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124303" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f56" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124505", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124505" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f57" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125615", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125615" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f58" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904121906", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2121906" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f59" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122814", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122814" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f5a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122950", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2122950" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f5b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124631", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124631" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f5c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21002123520", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123520" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f5d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123708", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2123708" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f5e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123906", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123906" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f5f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124003", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124003" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f60" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124159", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124159" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f61" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101126004", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126004" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f62" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21102126133", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126133" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f63" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127036", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127036" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f64" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128008", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2128008" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f65" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130230", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130230" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f66" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21102126201", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126201" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f67" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126303", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2126303" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f68" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126323", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126323" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f69" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126508", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2126508" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f6a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126618", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2126618" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f6b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126733", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126733" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f6c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128121", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128121" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f6d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128137", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2128137" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f6e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128417", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128417" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f6f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128701", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2128701" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f70" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128716", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128716" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f71" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128930", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2128930" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f72" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129302", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2129302" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f73" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129455", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129455" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f74" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130241", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130241" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f75" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130303", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130303" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f76" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130401", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2130401" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f77" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130421", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130421" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f78" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130515", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130515" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f79" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130619", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130619" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f7a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130629", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130629" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f7b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131118", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2131118" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f7c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131208", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131208" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f7d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132208", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132208" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f7e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301132905", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132905" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f7f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133052", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133052" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f80" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133303", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133303" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f81" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133712", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133712" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f82" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133721", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2133721" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f83" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133827", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2133827" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f84" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301134026", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134026" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f85" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134220", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2134220" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f86" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134316", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134316" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f87" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134632", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134632" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f88" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134810", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2134810" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f89" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134928", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2134928" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f8a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135336", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2135336" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f8b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136116", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2136116" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f8c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136535", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136535" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f8d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136566", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136566" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f8e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137114", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137114" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f8f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137217", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2137217" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f90" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137231", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2137231" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f91" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138102", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138102" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f92" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137247", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137247" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f93" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137338", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137338" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f94" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137401", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137401" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f95" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137404", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137404" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f96" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137413", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2137413" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f97" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137418", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137418" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f98" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137438", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137438" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f99" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137524", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137524" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f9a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137707", + "neg_nil_inc_fam_households": 7, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2137707" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f9b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501138614", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138614" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f9c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501138820", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138820" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f9d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139010", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139010" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f9e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139020", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139020" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4f9f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139222", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2139222" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4fa0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502139805", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139805" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4fa1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140511", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2140511" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4fa2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140718", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140718" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4fa3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21602141102", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2141102" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4fa4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21602141404", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141404" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4fa5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141606", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2141606" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4fa6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141740", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141740" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4fa7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141813", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2141813" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4fa8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141928", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141928" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4fa9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143024", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2143024" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4faa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143031", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143031" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4fab" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142006", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142006" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4fac" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142027", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142027" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4fad" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142230", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142230" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4fae" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702142428", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2142428" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4faf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143315", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2143315" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4fb0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003143828", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2143828" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4fb1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144629", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2144629" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4fb2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144812", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144812" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4fb3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103145026", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2145026" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4fb4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203145815", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145815" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4fb5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304146108", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146108" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4fb6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304146111", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146111" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4fb7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502146903", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146903" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4fb8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502146904", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146904" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4fb9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502147010", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147010" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4fba" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502147011", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147011" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4fbb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147228", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147228" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4fbc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147416", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147416" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4fbd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147905", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147905" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4fbe" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147940", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147940" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4fbf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704148012", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2148012" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4fc0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116715", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2116715" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4fc1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802118010", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2118010" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4fc2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120726", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2120726" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4fce" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124152", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124152" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4fe8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102028", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102028" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4fe9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102032", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2102032" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4fea" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131142", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2131142" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4feb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401106011", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106011" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4fec" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138521", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138521" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4fed" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100324", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2100324" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4fee" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100501", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2100501" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4fef" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100824", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2100824" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ff0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20102100913", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2100913" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ff1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20102101017", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101017" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ff2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20103101608", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101608" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ff3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102422", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102422" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ff4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202103019", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2103019" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ff5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20203103314", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2103314" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ff6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20301103501", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2103501" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ff7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20301103610", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103610" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ff8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103728", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2103728" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ff9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103814", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103814" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ffa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103827", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2103827" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ffb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103834", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103834" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ffc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104107", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2104107" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ffd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104120", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2104120" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4ffe" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104131", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104131" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_4fff" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303104814", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104814" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5000" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105021", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2105021" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5001" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105813", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105813" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5002" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118602", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118602" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5003" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106622", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106622" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5004" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403106911", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106911" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5005" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107108", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107108" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5006" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107415", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2107415" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5007" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107428", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107428" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5008" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108223", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2108223" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5009" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108407", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2108407" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_500a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108504", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2108504" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_500b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108512", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2108512" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_500c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109312", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109312" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_500d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110910", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110910" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_500e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109337", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2109337" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_500f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109517", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2109517" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5010" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109534", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109534" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5011" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109804", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109804" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5012" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110125", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110125" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5013" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110924", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110924" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5014" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111012", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111012" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5015" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111311", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111311" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5016" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111420", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111420" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5017" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111447", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111447" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5018" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110134", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110134" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5019" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110205", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110205" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_501a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110318", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110318" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_501b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110546", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2110546" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_501c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110552", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110552" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_501d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116420", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 11, + "sa1_7dig16": "2116420" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_501e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111614", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111614" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_501f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604111727", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 18, + "sa1_7dig16": "2111727" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5020" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112215", + "neg_nil_inc_fam_households": 7, + "negative_nil_income_tot": 21, + "sa1_7dig16": "2112215" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5021" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112501", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2112501" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5022" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113015", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2113015" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5023" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113326", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2113326" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5024" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113332", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2113332" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5025" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113351", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2113351" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5026" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114112", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2114112" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5027" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114614", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2114614" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5028" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114713", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2114713" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5029" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115227", + "neg_nil_inc_fam_households": 14, + "negative_nil_income_tot": 52, + "sa1_7dig16": "2115227" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_502a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115302", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115302" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_502b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115319", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115319" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_502c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115356", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115356" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_502d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115405", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115405" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_502e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115406", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115406" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_502f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116124", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2116124" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5030" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116206", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2116206" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5031" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116214", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116214" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5032" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116810", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2116810" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5033" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116915", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2116915" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5034" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117428", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2117428" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5035" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117450", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117450" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5036" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117452", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117452" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5037" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802118004", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2118004" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5038" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802118119", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2118119" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5039" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802118209", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2118209" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_503a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802118217", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2118217" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_503b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118310", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118310" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_503c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118822", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2118822" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_503d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119336", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119336" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_503e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119523", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119523" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_503f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119537", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2119537" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5040" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119549", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119549" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5041" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119820", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119820" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5042" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120002", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120002" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5043" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120326", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120326" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5044" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120528", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2120528" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5045" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120741", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2120741" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5046" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120817", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2120817" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5047" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903120909", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120909" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5048" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903120912", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120912" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5049" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121409", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121409" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_504a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21102126129", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2126129" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_504b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121410", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121410" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_504c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121518", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121518" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_504d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904121611", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121611" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_504e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904121919", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2121919" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_504f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122021", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2122021" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5050" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122338", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2122338" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5051" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133605", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133605" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5052" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122506", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122506" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5053" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122608", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2122608" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5054" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122940", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2122940" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5055" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123924", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2123924" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5056" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123942", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123942" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5057" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124110", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124110" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5058" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124115", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124115" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5059" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133702", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2133702" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_505a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124153", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124153" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_505b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124226", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124226" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_505c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124728", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124728" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_505d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124730", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124730" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_505e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125107", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2125107" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_505f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125510", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125510" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5060" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125625", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125625" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5061" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101126040", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126040" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5062" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126521", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126521" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5063" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104126908", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2126908" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5064" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127018", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2127018" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5065" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127025", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127025" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5066" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127323", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2127323" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5067" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127403", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127403" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5068" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127519", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2127519" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5069" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127805", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127805" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_506a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127833", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127833" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_506b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128103", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128103" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_506c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128106", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2128106" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_506d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128116", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2128116" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_506e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129305", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129305" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_506f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129314", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2129314" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5070" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132232", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2132232" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5071" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128131", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128131" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5072" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128219", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128219" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5073" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128525", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128525" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5074" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129117", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2129117" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5075" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129320", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2129320" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5076" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129916", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2129916" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5077" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130220", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2130220" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5078" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131232", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131232" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5079" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131317", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131317" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_507a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131428", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131428" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_507b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131723", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131723" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_507c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205131923", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2131923" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_507d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205131927", + "neg_nil_inc_fam_households": 8, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2131927" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_507e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132022", + "neg_nil_inc_fam_households": 11, + "negative_nil_income_tot": 30, + "sa1_7dig16": "2132022" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_507f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132422", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2132422" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5080" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132439", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132439" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5081" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132639", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132639" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5082" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301132815", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2132815" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5083" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301132909", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132909" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5084" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133105", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2133105" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5085" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133209", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2133209" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5086" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133227", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133227" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5087" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133403", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133403" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5088" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133515", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2133515" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5089" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133709", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2133709" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_508a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133811", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133811" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_508b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133817", + "neg_nil_inc_fam_households": 8, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2133817" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_508c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133841", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2133841" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_508d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133918", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133918" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_508e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134201", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134201" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_508f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303135007", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135007" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5090" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135319", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2135319" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5091" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135334", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2135334" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5092" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135507", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135507" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5093" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135521", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135521" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5094" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135527", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135527" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5095" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135612", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2135612" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5096" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135734", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2135734" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5097" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135824", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135824" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5098" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304136029", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136029" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5099" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136122", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2136122" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_509a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501138821", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138821" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_509b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501138904", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138904" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_509c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136145", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136145" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_509d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136217", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2136217" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_509e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136238", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136238" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_509f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137044", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2137044" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_50a0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137053", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137053" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_50a1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137248", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137248" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_50a2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137313", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137313" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_50a3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138334", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138334" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_50a4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141921", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141921" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_50a5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137336", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2137336" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_50a6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137614", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137614" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_50a7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137722", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2137722" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_50a8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138348", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2138348" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_50a9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138450", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2138450" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_50aa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137811", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2137811" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_50ab" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137930", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137930" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_50ac" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138203", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138203" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_50ad" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138232", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138232" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_50ae" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138318", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138318" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_50af" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139027", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139027" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_50b0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140002", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140002" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_50b1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140117", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2140117" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_50b2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140415", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140415" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_50b3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140618", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140618" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_50b4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140623", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140623" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_50b5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140632", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2140632" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_50b6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140713", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140713" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_50b7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21602141111", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141111" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_50b8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21602141312", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141312" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_50b9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21602141325", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141325" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_50ba" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141621", + "neg_nil_inc_fam_households": 7, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2141621" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_50bb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21602141303", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141303" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_50bc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141721", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2141721" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_50bd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702142418", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2142418" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_50be" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902142806", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2142806" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_50bf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902142830", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2142830" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_50c0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143204", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143204" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_50c1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003143830", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143830" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_50c2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144104", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2144104" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_50c3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144404", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2144404" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_50c4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144424", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144424" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_50c5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144704", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2144704" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_50c6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144714", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2144714" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_50c7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103145109", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145109" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_50c8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145315", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145315" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_50c9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145410", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2145410" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_50ca" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145502", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145502" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_50cb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145512", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145512" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_50cc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145311", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145311" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_50cd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304146306", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146306" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_50ce" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146746", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2146746" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_50cf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502146929", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2146929" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_50d0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147512", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147512" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_50d1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147712", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147712" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_50d2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704148002", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2148002" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_50d3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704148007", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2148007" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_50d4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704148027", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2148027" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_50d5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115015", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115015" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_50f0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115037", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2115037" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_50f1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107812", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2107812" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_50f7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100206", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100206" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_50f8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100433", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2100433" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_50f9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100507", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100507" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_50fa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107912", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2107912" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_50fb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20102101025", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101025" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_50fc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20102101114", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2101114" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_50fd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102522", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102522" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_50fe" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102824", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102824" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_50ff" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102913", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102913" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5100" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108516", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2108516" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5101" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119527", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 38, + "sa1_7dig16": "2119527" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5102" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102619", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102619" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5103" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202103115", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2103115" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5104" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20203103302", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103302" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5105" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20301103609", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103609" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5106" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103802", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2103802" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5107" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103914", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2103914" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5108" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104031", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104031" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5109" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110818", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110818" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_510a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104341", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104341" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_510b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104518", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104518" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_510c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104720", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104720" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_510d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105102", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105102" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_510e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105510", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105510" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_510f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105615", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2105615" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5110" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107435", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107435" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5111" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107443", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2107443" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5112" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107714", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2107714" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5113" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401106004", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106004" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5114" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107204", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107204" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5115" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107406", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107406" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5116" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503108920", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108920" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5117" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109020", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109020" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5118" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109319", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2109319" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5119" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109724", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109724" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_511a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110822", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110822" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_511b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110920", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2110920" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_511c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111007", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111007" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_511d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113423", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2113423" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_511e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110130", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2110130" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_511f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110411", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2110411" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5120" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110619", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110619" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5121" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111020", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111020" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5122" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111223", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2111223" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5123" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111310", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111310" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5124" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111417", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111417" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5125" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111421", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111421" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5126" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111446", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111446" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5127" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111626", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2111626" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5128" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604111712", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111712" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5129" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112239", + "neg_nil_inc_fam_households": 60, + "negative_nil_income_tot": 320, + "sa1_7dig16": "2112239" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_512a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113008", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113008" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_512b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113347", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2113347" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_512c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113818", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2113818" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_512d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114001", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114001" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_512e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114617", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114617" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_512f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114709", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114709" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5130" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114846", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114846" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5131" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111320", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111320" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5132" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115137", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115137" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5133" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115707", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2115707" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5134" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115725", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115725" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5135" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115734", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2115734" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5136" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115738", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115738" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5137" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115926", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2115926" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5138" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116144", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116144" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5139" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116319", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116319" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_513a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116428", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116428" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_513b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116943", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116943" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_513c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117118", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117118" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_513d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117208", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117208" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_513e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117717", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117717" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_513f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117809", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117809" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5140" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117831", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117831" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5141" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117905", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117905" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5142" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802118120", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2118120" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5143" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119410", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119410" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5144" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119411", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2119411" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5145" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119528", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2119528" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5146" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120205", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120205" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5147" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120226", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120226" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5148" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120306", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120306" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5149" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120411", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120411" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_514a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120825", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120825" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_514b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903120913", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120913" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_514c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903120933", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120933" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_514d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121002", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2121002" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_514e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121102", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121102" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_514f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121217", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121217" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5150" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125820", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2125820" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5151" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121218", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2121218" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5152" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904121614", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121614" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5153" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122020", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122020" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5154" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122103", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122103" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5155" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21102126123", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126123" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5156" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21102126219", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126219" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5157" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122335", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122335" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5158" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122817", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122817" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5159" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21002123513", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2123513" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_515a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123717", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2123717" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_515b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124027", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124027" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_515c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124328", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124328" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_515d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124331", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124331" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_515e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126505", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 11, + "sa1_7dig16": "2126505" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_515f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125607", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125607" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5160" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125632", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125632" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5161" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125704", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125704" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5162" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126703", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126703" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5163" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127201", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127201" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5164" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127510", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2127510" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5165" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127701", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2127701" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5166" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127821", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127821" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5167" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127839", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127839" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5168" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128144", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2128144" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5169" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128212", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128212" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_516a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128424", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128424" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_516b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128524", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2128524" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_516c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128812", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128812" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_516d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129008", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129008" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_516e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129013", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129013" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_516f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129236", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129236" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5170" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129243", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129243" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5171" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129244", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129244" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5172" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133707", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2133707" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5173" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129349", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129349" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5174" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129516", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2129516" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5175" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129525", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2129525" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5176" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130238", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2130238" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5177" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130514", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130514" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5178" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130627", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130627" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5179" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130803", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130803" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_517a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204130903", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2130903" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_517b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131121", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2131121" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_517c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131132", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2131132" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_517d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131427", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2131427" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_517e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131605", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131605" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_517f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131704", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131704" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5180" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131744", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131744" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5181" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131804", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131804" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5182" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132336", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132336" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5183" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132525", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132525" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5184" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132532", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132532" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5185" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133919", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133919" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5186" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132540", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132540" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5187" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132634", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132634" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5188" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132638", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132638" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5189" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132653", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132653" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_518a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132707", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2132707" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_518b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133064", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133064" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_518c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133106", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133106" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_518d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133116", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133116" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_518e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133309", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133309" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_518f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133920", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133920" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5190" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133924", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133924" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5191" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134243", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134243" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5192" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134312", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2134312" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5193" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134726", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134726" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5194" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134919", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134919" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5195" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303135127", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2135127" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5196" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135317", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2135317" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5197" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135731", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135731" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5198" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136124", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136124" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5199" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136213", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2136213" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_519a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136509", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136509" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_519b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136529", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136529" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_519c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136536", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136536" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_519d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502139613", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139613" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_519e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136822", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2136822" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_519f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136933", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136933" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_51a0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137011", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2137011" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_51a1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137031", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137031" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_51a2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137138", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2137138" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_51a3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137152", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2137152" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_51a4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137448", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137448" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_51a5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137523", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2137523" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_51a6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137815", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137815" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_51a7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138040", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138040" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_51a8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138059", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138059" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_51a9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138106", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138106" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_51aa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138447", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138447" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_51ab" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501138620", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138620" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_51ac" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502139801", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139801" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_51ad" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502139808", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139808" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_51ae" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140020", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140020" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_51af" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140612", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2140612" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_51b0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501138818", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138818" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_51b1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501138901", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138901" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_51b2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140639", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140639" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_51b3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140640", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140640" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_51b4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140907", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140907" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_51b5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21602141106", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2141106" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_51b6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141723", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141723" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_51b7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142014", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142014" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_51b8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142015", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2142015" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_51b9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142017", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142017" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_51ba" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902142919", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142919" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_51bb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143507", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143507" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_51bc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21602141407", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2141407" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_51bd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141639", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2141639" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_51be" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143618", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143618" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_51bf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144403", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144403" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_51c0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144411", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144411" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_51c1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103145031", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2145031" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_51c2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145624", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2145624" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_51c3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145631", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2145631" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_51c4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203145704", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145704" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_51c5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203145731", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145731" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_51c6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203145807", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2145807" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_51c7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204146029", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2146029" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_51c8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304146320", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146320" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_51c9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146404", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 12, + "sa1_7dig16": "2146404" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_51ca" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147220", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147220" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_51cb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147901", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2147901" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_51cc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147916", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147916" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_51cd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115502", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115502" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_51ce" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117431", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117431" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_51cf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117443", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117443" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_51d0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111326", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111326" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_51d1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111416", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111416" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_51d2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117723", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117723" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_51d3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117733", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117733" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_51f1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117818", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2117818" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_51f2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104034", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104034" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_51f3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117824", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117824" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_51f4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117825", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117825" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_51f8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117837", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117837" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_51f9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111522", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111522" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_51fa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112249", + "neg_nil_inc_fam_households": 28, + "negative_nil_income_tot": 194, + "sa1_7dig16": "2112249" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_51fb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100706", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100706" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_51fc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20102101106", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101106" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_51fd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20103101711", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2101711" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_51fe" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102030", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102030" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_51ff" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102509", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2102509" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5200" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202103013", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2103013" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5201" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104032", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104032" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5202" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202103103", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103103" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5203" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20203103301", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103301" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5204" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103829", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103829" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5205" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103841", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2103841" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5206" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103867", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103867" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5207" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104028", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104028" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5208" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104132", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104132" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5209" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104503", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104503" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_520a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104524", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104524" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_520b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104705", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104705" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_520c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104707", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104707" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_520d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105303", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105303" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_520e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105513", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2105513" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_520f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105701", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2105701" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5210" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303104833", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104833" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5211" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105201", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105201" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5212" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105301", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105301" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5213" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107325", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107325" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5214" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107417", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107417" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5215" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107505", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107505" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5216" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112509", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2112509" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5217" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113006", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2113006" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5218" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107613", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2107613" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5219" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107631", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2107631" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_521a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109346", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2109346" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_521b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113315", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113315" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_521c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113345", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2113345" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_521d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109518", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2109518" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_521e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109608", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109608" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_521f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109735", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2109735" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5220" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109755", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109755" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5221" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109759", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2109759" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5222" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109775", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109775" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5223" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110004", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110004" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5224" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110115", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110115" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5225" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110122", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110122" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5226" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110124", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110124" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5227" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110730", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110730" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5228" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111015", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111015" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5229" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111115", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111115" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_522a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111213", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111213" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_522b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111235", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2111235" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_522c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113817", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2113817" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_522d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114222", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114222" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_522e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114439", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114439" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_522f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114732", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2114732" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5230" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114734", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2114734" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5231" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114807", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2114807" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5232" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114924", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114924" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5233" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115225", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2115225" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5234" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115305", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 11, + "sa1_7dig16": "2115305" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5235" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115318", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115318" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5236" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115323", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2115323" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5237" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115411", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115411" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5238" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115521", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2115521" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5239" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115912", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115912" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_523a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115921", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115921" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_523b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702116015", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116015" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_523c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702116033", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116033" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_523d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116506", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116506" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_523e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116816", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116816" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_523f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116824", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116824" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5240" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116923", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116923" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5241" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117109", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117109" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5242" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118301", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118301" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5243" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118323", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2118323" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5244" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118503", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118503" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5245" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119123", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119123" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5246" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119335", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119335" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5247" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119505", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119505" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5248" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119534", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 22, + "sa1_7dig16": "2119534" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5249" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119822", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119822" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_524a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120206", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120206" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_524b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120334", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120334" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_524c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120407", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120407" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_524d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120421", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2120421" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_524e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120501", + "neg_nil_inc_fam_households": 11, + "negative_nil_income_tot": 33, + "sa1_7dig16": "2120501" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_524f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120717", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2120717" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5250" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120814", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2120814" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5251" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120845", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120845" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5252" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120849", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120849" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5253" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120851", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120851" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5254" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903120946", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120946" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5255" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121203", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121203" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5256" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121306", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121306" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5257" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904121904", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121904" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5258" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122003", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122003" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5259" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122316", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2122316" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_525a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122606", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2122606" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_525b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125818", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125818" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_525c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001123119", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2123119" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_525d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21002123225", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123225" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_525e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123918", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2123918" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_525f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123934", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123934" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5260" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124026", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2124026" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5261" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124506", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2124506" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5262" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104126907", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126907" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5263" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124507", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124507" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5264" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124517", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124517" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5265" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124533", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124533" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5266" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124614", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124614" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5267" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124627", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124627" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5268" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005125002", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125002" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5269" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125128", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2125128" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_526a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125701", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125701" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_526b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125924", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2125924" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_526c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101126033", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126033" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_526d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21102126109", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2126109" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_526e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21102126232", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126232" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_526f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126606", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2126606" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5270" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126716", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126716" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5271" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104126910", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2126910" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5272" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127035", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127035" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5273" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127310", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127310" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5274" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127631", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2127631" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5275" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127903", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127903" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5276" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128147", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128147" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5277" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128506", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128506" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5278" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129124", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2129124" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5279" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129260", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129260" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_527a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129333", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2129333" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_527b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129711", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129711" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_527c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129904", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2129904" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_527d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130030", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130030" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_527e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130037", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130037" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_527f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130228", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2130228" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5280" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130517", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2130517" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5281" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130521", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2130521" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5282" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131108", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131108" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5283" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131149", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131149" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5284" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131159", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2131159" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5285" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131805", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131805" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5286" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131825", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131825" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5287" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205131903", + "neg_nil_inc_fam_households": 7, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2131903" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5288" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132002", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132002" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5289" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132106", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132106" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_528a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136559", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136559" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_528b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132229", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132229" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_528c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132401", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132401" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_528d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132424", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132424" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_528e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132431", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2132431" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_528f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132522", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132522" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5290" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132603", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2132603" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5291" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133003", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133003" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5292" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133112", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133112" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5293" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133120", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133120" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5294" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133221", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133221" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5295" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133236", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133236" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5296" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133311", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133311" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5297" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133322", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133322" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5298" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133324", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2133324" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5299" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133713", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2133713" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_529a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133813", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2133813" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_529b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133916", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133916" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_529c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133927", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133927" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_529d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134211", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134211" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_529e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134213", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134213" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_529f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134606", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134606" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_52a0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134804", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134804" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_52a1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136604", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136604" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_52a2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135514", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2135514" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_52a3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135647", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135647" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_52a4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135836", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135836" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_52a5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135905", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135905" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_52a6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136104", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2136104" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_52a7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136226", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136226" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_52a8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136508", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136508" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_52a9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137210", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137210" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_52aa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137320", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137320" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_52ab" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137446", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137446" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_52ac" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137630", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137630" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_52ad" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138302", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2138302" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_52ae" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137809", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137809" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_52af" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137929", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137929" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_52b0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137933", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137933" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_52b1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138335", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138335" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_52b2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138308", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2138308" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_52b3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138323", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138323" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_52b4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138325", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2138325" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_52b5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802142727", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2142727" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_52b6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138341", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138341" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_52b7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138442", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138442" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_52b8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501138832", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138832" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_52b9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139204", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139204" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_52ba" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502139601", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139601" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_52bb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902142808", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 11, + "sa1_7dig16": "2142808" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_52bc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502139604", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2139604" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_52bd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140116", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2140116" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_52be" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140610", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2140610" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_52bf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902142838", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142838" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_52c0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21602141329", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141329" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_52c1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21602141334", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2141334" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_52c2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141618", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141618" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_52c3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141734", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2141734" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_52c4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142311", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2142311" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_52c5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142315", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2142315" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_52c6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802142605", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2142605" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_52c7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143430", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143430" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_52c8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143701", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2143701" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_52c9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144649", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144649" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_52ca" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204146023", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2146023" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_52cb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144810", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2144810" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_52cc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103145008", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2145008" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_52cd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145409", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145409" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_52ce" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145605", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2145605" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_52cf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145628", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145628" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_52d0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204145916", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145916" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_52d1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204146015", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146015" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_52d2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204146027", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146027" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_52d3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304146343", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146343" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_52d4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146403", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146403" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_52d5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146608", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146608" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_52d6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146610", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146610" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_52d7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146823", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146823" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_52d8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502146914", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146914" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_52d9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147103", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147103" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_52da" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147224", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2147224" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_52db" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147953", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2147953" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_52dc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147314", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147314" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_52dd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704148004", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2148004" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_52de" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147808", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147808" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_52df" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802118211", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2118211" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_52e1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113716", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2113716" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_52f5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118820", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2118820" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_52f6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113823", + "neg_nil_inc_fam_households": 7, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2113823" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_52f7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114005", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114005" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_52fc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114312", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114312" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_52fe" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116817", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2116817" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5303" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116936", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116936" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5304" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104426", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104426" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5305" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103904", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103904" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_530a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104021", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104021" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_530b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100115", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100115" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_530c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105914", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105914" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_530d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20102101024", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101024" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_530e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20103101405", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2101405" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_530f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20103101614", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101614" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5310" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201101903", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101903" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5311" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201101904", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2101904" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5312" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102015", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102015" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5313" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102233", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2102233" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5314" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102306", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102306" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5315" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102511", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102511" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5316" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102609", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102609" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5317" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102903", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2102903" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5318" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202103113", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103113" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5319" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104134", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104134" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_531a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104408", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104408" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_531b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106307", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106307" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_531c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109535", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2109535" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_531d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20301103606", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103606" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_531e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104429", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104429" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_531f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105019", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105019" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5320" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105630", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2105630" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5321" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105814", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2105814" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5322" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403106803", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106803" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5323" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107304", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107304" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5324" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107307", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107307" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5325" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107336", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107336" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5326" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107449", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107449" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5327" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107453", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107453" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5328" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109013", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109013" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5329" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109416", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109416" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_532a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109622", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109622" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_532b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109631", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2109631" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_532c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109704", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109704" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_532d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109762", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109762" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_532e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109764", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2109764" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_532f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110003", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110003" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5330" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110833", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2110833" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5331" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110903", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2110903" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5332" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110913", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110913" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5333" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113401", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113401" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5334" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111021", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111021" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5335" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111219", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111219" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5336" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112116", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2112116" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5337" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112240", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 12, + "sa1_7dig16": "2112240" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5338" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112318", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2112318" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5339" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112629", + "neg_nil_inc_fam_households": 13, + "negative_nil_income_tot": 62, + "sa1_7dig16": "2112629" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_533a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605112806", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2112806" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_533b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605112831", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 30, + "sa1_7dig16": "2112831" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_533c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605112915", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2112915" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_533d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113025", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2113025" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_533e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113211", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2113211" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_533f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113349", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2113349" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5340" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114466", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114466" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5341" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114731", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114731" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5342" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114808", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114808" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5343" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114840", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114840" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5344" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114938", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2114938" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5345" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115119", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 17, + "sa1_7dig16": "2115119" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5346" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115222", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2115222" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5347" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115501", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115501" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5348" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702116027", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116027" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5349" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116116", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2116116" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_534a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116130", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116130" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_534b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117322", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2117322" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_534c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117612", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 11, + "sa1_7dig16": "2117612" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_534d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118315", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2118315" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_534e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118516", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118516" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_534f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118808", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2118808" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5350" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118842", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118842" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5351" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119003", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119003" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5352" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119028", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2119028" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5353" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119033", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2119033" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5354" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119343", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119343" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5355" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119826", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2119826" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5356" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122419", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122419" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5357" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120011", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2120011" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5358" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120112", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120112" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5359" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120211", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120211" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_535a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120237", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120237" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_535b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120303", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120303" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_535c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903120955", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120955" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_535d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121321", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121321" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_535e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001123007", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123007" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_535f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126816", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2126816" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5360" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121415", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121415" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5361" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904121702", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121702" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5362" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904121934", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2121934" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5363" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122342", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2122342" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5364" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124112", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124112" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5365" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124129", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2124129" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5366" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124301", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124301" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5367" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124327", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2124327" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5368" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124503", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124503" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5369" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124618", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2124618" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_536a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005125018", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2125018" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_536b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126321", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126321" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_536c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125506", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2125506" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_536d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125811", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125811" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_536e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125824", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2125824" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_536f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125917", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125917" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5370" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101126029", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126029" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5371" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104126914", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126914" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5372" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127306", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2127306" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5373" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127308", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2127308" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5374" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127824", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127824" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5375" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128135", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128135" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5376" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128407", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128407" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5377" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128411", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128411" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5378" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128710", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2128710" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5379" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129122", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2129122" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_537a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129132", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129132" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_537b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129217", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2129217" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_537c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129267", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129267" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_537d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129312", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129312" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_537e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129457", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129457" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_537f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130223", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130223" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5380" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131201", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2131201" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5381" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133107", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133107" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5382" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130317", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130317" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5383" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130318", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130318" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5384" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130822", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2130822" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5385" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204130923", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2130923" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5386" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131030", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2131030" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5387" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131126", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131126" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5388" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118836", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118836" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5389" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131243", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131243" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_538a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131252", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131252" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_538b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131410", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131410" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_538c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131821", + "neg_nil_inc_fam_households": 8, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2131821" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_538d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132031", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 25, + "sa1_7dig16": "2132031" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_538e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132118", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2132118" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_538f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132126", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132126" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5390" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132206", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132206" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5391" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132406", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2132406" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5392" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133123", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133123" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5393" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132503", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2132503" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5394" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132648", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2132648" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5395" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132709", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132709" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5396" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132726", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132726" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5397" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132732", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132732" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5398" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301132801", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132801" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5399" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301132816", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132816" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_539a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301132902", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132902" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_539b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133015", + "neg_nil_inc_fam_households": 7, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133015" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_539c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133435", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2133435" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_539d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301134001", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134001" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_539e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134113", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134113" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_539f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134204", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134204" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_53a0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134232", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134232" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_53a1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134712", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134712" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_53a2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134802", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2134802" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_53a3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303135011", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2135011" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_53a4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303135101", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2135101" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_53a5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303135211", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135211" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_53a6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135720", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2135720" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_53a7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136617", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136617" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_53a8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136826", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136826" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_53a9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136954", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136954" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_53aa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136956", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136956" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_53ab" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137012", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137012" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_53ac" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137051", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2137051" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_53ad" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137130", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137130" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_53ae" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137133", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137133" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_53af" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137608", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137608" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_53b0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137609", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137609" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_53b1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137702", + "neg_nil_inc_fam_households": 8, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2137702" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_53b2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137705", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2137705" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_53b3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137923", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137923" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_53b4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137931", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137931" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_53b5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138531", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138531" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_53b6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119406", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119406" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_53b7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137941", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137941" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_53b8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138033", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138033" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_53b9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138125", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138125" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_53ba" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138222", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2138222" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_53bb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138404", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2138404" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_53bc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138513", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138513" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_53bd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138532", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138532" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_53be" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138541", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138541" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_53bf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502139901", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139901" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_53c0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140507", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140507" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_53c1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601141007", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2141007" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_53c2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601141011", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2141011" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_53c3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21602141331", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141331" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_53c4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21602141335", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2141335" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_53c5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21602141418", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141418" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_53c6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143016", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143016" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_53c7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143131", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2143131" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_53c8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143426", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143426" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_53c9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120750", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2120750" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_53ca" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141720", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2141720" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_53cb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141725", + "neg_nil_inc_fam_households": 7, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2141725" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_53cc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141916", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2141916" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_53cd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902142913", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142913" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_53ce" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143011", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2143011" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_53cf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143707", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2143707" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_53d0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003143903", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143903" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_53d1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144308", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2144308" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_53d2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144419", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144419" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_53d3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144827", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2144827" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_53d4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103145209", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2145209" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_53d5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145504", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2145504" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_53d6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145627", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145627" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_53d7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204145910", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145910" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_53d8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204146010", + "neg_nil_inc_fam_households": 7, + "negative_nil_income_tot": 12, + "sa1_7dig16": "2146010" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_53d9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146611", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2146611" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_53da" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502147005", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2147005" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_53db" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502147007", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147007" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_53dc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147212", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147212" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_53dd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147717", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2147717" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_53de" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147812", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147812" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_53df" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147824", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2147824" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_53e0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111628", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111628" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_540b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605112830", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2112830" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_540c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605112835", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2112835" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5411" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605112921", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2112921" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5412" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117613", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2117613" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5413" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802118106", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2118106" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5414" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100427", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2100427" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5415" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100601", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100601" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5416" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104232", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2104232" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5417" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100705", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2100705" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5418" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20102101201", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2101201" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5419" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20103101620", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101620" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_541a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201101817", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101817" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_541b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102119", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2102119" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_541c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102514", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102514" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_541d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102515", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102515" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_541e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102618", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102618" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_541f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102818", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2102818" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5420" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104303", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104303" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5421" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102909", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2102909" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5422" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20301103513", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103513" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5423" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103812", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103812" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5424" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103909", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103909" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5425" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104003", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104003" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5426" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104008", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2104008" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5427" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104013", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104013" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5428" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104022", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104022" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5429" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104108", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2104108" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_542a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118311", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2118311" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_542b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104625", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104625" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_542c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303104806", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104806" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_542d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106603", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2106603" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_542e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106633", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106633" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_542f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107719", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2107719" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5430" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105037", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2105037" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5431" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111610", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111610" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5432" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105116", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2105116" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5433" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105204", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2105204" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5434" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107804", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2107804" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5435" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107810", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2107810" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5436" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109108", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2109108" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5437" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108216", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108216" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5438" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108517", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108517" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5439" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109002", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109002" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_543a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109025", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109025" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_543b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111623", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111623" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_543c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109627", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2109627" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_543d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110212", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110212" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_543e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110305", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110305" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_543f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110413", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110413" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5440" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110554", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2110554" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5441" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110702", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110702" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5442" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110817", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110817" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5443" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110849", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110849" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5444" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111130", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111130" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5445" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111131", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111131" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5446" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111145", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111145" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5447" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111438", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111438" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5448" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113229", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113229" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5449" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113429", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113429" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_544a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113511", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113511" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_544b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113721", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2113721" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_544c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113725", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2113725" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_544d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113809", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2113809" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_544e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114219", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2114219" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_544f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114221", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114221" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5450" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114223", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114223" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5451" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114309", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114309" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5452" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117615", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2117615" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5453" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114504", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114504" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5454" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114717", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2114717" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5455" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115030", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115030" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5456" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115109", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115109" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5457" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115112", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115112" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5458" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115125", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115125" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5459" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115343", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115343" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_545a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115609", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2115609" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_545b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115929", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115929" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_545c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702116029", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116029" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_545d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117623", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 11, + "sa1_7dig16": "2117623" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_545e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116119", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116119" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_545f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116421", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2116421" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5460" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116523", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 72, + "sa1_7dig16": "2116523" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5461" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116806", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116806" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5462" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116914", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116914" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5463" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116920", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116920" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5464" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116924", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2116924" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5465" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116946", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116946" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5466" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117033", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117033" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5467" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117106", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117106" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5468" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117215", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117215" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5469" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117417", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117417" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_546a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117430", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117430" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_546b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118527", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118527" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_546c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119309", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2119309" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_546d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119407", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119407" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_546e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119545", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119545" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_546f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119716", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119716" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5470" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120119", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120119" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5471" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120327", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120327" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5472" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120736", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2120736" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5473" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120828", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2120828" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5474" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120833", + "neg_nil_inc_fam_households": 7, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2120833" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5475" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121004", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121004" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5476" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121514", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121514" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5477" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121520", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121520" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5478" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133101", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133101" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5479" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904121704", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121704" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_547a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904121709", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 20, + "sa1_7dig16": "2121709" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_547b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122516", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122516" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_547c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122908", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2122908" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_547d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122952", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122952" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_547e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21002123226", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123226" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_547f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129210", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2129210" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5480" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21002123307", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123307" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5481" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21002123401", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123401" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5482" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21002123506", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123506" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5483" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123947", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2123947" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5484" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124934", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124934" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5485" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125804", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2125804" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5486" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101126015", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2126015" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5487" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126502", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126502" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5488" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129261", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2129261" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5489" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129514", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129514" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_548a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126731", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2126731" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_548b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126804", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2126804" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_548c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126819", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126819" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_548d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127008", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127008" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_548e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127322", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127322" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_548f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127417", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127417" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5490" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127418", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127418" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5491" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127620", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2127620" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5492" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135340", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2135340" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5493" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127633", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127633" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5494" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127718", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2127718" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5495" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128425", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128425" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5496" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128631", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128631" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5497" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129128", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129128" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5498" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129704", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129704" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5499" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129717", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2129717" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_549a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130417", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130417" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_549b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130427", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130427" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_549c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130623", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2130623" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_549d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130624", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130624" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_549e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130820", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130820" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_549f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131131", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131131" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_54a0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131157", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131157" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_54a1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131318", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131318" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_54a2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131319", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131319" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_54a3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131404", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131404" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_54a4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131459", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131459" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_54a5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205131940", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131940" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_54a6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132214", + "neg_nil_inc_fam_households": 9, + "negative_nil_income_tot": 23, + "sa1_7dig16": "2132214" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_54a7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132224", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2132224" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_54a8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132241", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2132241" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_54a9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132323", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132323" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_54aa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132730", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132730" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_54ab" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133002", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2133002" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_54ac" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133011", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133011" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_54ad" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133111", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2133111" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_54ae" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133224", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133224" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_54af" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133331", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133331" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_54b0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133843", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133843" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_54b1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133844", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133844" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_54b2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134241", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2134241" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_54b3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134421", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134421" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_54b4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134609", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2134609" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_54b5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134735", + "neg_nil_inc_fam_households": 7, + "negative_nil_income_tot": 15, + "sa1_7dig16": "2134735" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_54b6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134822", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134822" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_54b7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303135001", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135001" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_54b8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135536", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135536" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_54b9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135618", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2135618" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_54ba" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135716", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2135716" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_54bb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135818", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135818" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_54bc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135827", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135827" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_54bd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136110", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136110" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_54be" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136118", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136118" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_54bf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136119", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2136119" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_54c0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136241", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136241" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_54c1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136507", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136507" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_54c2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136928", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136928" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_54c3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136932", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136932" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_54c4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136946", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136946" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_54c5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137018", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137018" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_54c6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147935", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147935" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_54c7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137022", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137022" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_54c8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137155", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2137155" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_54c9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137236", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2137236" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_54ca" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137333", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137333" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_54cb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137455", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137455" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_54cc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137610", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137610" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_54cd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137918", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137918" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_54ce" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137921", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137921" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_54cf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138108", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2138108" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_54d0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138343", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138343" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_54d1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138452", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138452" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_54d2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138511", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138511" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_54d3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21602141338", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141338" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_54d4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139005", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139005" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_54d5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139213", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2139213" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_54d6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139310", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2139310" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_54d7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140312", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140312" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_54d8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144645", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2144645" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_54d9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140502", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140502" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_54da" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144711", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2144711" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_54db" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21602141411", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141411" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_54dc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141509", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2141509" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_54dd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141510", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141510" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_54de" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141808", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2141808" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_54df" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142105", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2142105" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_54e0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142124", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2142124" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_54e1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502146922", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146922" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_54e2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147222", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147222" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_54e3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142319", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142319" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_54e4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702142521", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2142521" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_54e5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802142603", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2142603" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_54e6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802142721", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2142721" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_54e7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902142918", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2142918" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_54e8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143303", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143303" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_54e9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143411", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2143411" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_54ea" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143414", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143414" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_54eb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144813", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2144813" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_54ec" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144821", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144821" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_54ed" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144905", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2144905" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_54ee" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103145003", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2145003" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_54ef" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304146109", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146109" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_54f0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304146311", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146311" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_54f1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146719", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2146719" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_54f2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146735", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146735" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_54f3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303135018", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2135018" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_550c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303135204", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2135204" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5515" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113354", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113354" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5516" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140412", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140412" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5517" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113502", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2113502" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5518" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128006", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128006" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_551c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100303", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100303" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_551d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100315", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100315" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_551e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100607", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2100607" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_551f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100809", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100809" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5520" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20102101108", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101108" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5521" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117622", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2117622" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5522" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20102101102", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101102" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5523" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20103101506", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2101506" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5524" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201101834", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101834" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5525" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102229", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102229" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5526" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102414", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102414" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5527" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102616", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102616" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5528" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104730", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104730" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5529" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117908", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2117908" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_552a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202103107", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2103107" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_552b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103832", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2103832" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_552c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104010", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104010" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_552d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104119", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104119" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_552e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104242", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104242" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_552f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104311", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104311" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5530" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303104825", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2104825" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5531" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105017", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105017" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5532" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105207", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105207" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5533" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105808", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105808" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5534" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106501", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106501" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5535" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106601", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2106601" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5536" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106708", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106708" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5537" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403106905", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106905" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5538" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107002", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107002" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5539" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108123", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2108123" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_553a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108208", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108208" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_553b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503108913", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2108913" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_553c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111403", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2111403" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_553d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112108", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2112108" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_553e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503108925", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108925" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_553f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109023", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109023" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5540" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109516", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109516" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5541" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109620", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109620" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5542" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109749", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109749" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5543" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110839", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110839" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5544" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111001", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111001" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5545" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111121", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111121" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5546" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111134", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111134" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5547" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111308", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111308" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5548" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113507", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113507" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5549" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113802", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2113802" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_554a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114207", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114207" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_554b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114215", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114215" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_554c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114948", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114948" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_554d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115340", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115340" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_554e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115341", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2115341" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_554f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115409", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115409" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5550" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115515", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115515" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5551" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115613", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2115613" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5552" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115714", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2115714" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5553" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115723", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2115723" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5554" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115905", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2115905" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5555" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115908", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115908" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5556" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116103", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2116103" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5557" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116204", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116204" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5558" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116823", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2116823" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5559" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117006", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117006" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_555a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117010", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2117010" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_555b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117328", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2117328" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_555c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117336", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117336" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_555d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117423", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117423" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_555e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802118202", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2118202" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_555f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119721", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119721" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5560" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119746", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119746" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5561" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119917", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2119917" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5562" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120221", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120221" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5563" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120312", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120312" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5564" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120409", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120409" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5565" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120504", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 12, + "sa1_7dig16": "2120504" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5566" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120724", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120724" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5567" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121521", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121521" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5568" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904121701", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121701" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5569" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904121932", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121932" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_556a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122002", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122002" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_556b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122030", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122030" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_556c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122415", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122415" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_556d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134415", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134415" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_556e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122423", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122423" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_556f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122945", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2122945" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5570" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001123001", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123001" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5571" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123718", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123718" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5572" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123943", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2123943" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5573" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124015", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124015" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5574" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124949", + "neg_nil_inc_fam_households": 7, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124949" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5575" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005125009", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125009" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5576" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128318", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128318" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5577" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134608", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134608" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5578" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126528", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126528" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5579" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126536", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126536" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_557a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126637", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2126637" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_557b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127218", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127218" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_557c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127627", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2127627" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_557d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127702", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2127702" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_557e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127813", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127813" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_557f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127816", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127816" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5580" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128427", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128427" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5581" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128808", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128808" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5582" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128923", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128923" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5583" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129119", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129119" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5584" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129306", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2129306" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5585" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134328", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134328" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5586" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129319", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129319" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5587" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129350", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129350" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5588" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129449", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2129449" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5589" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129512", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2129512" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_558a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129526", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2129526" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_558b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129906", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129906" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_558c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130110", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130110" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_558d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130135", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130135" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_558e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130301", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2130301" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_558f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204130916", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2130916" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5590" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131618", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131618" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5591" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131736", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2131736" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5592" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205131929", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131929" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5593" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132103", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2132103" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5594" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132150", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132150" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5595" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132233", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2132233" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5596" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132245", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132245" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5597" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132523", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132523" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5598" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132537", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132537" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5599" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132546", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2132546" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_559a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133301", + "neg_nil_inc_fam_households": 7, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2133301" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_559b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133426", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 11, + "sa1_7dig16": "2133426" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_559c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133529", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133529" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_559d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133604", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2133604" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_559e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133611", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133611" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_559f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133809", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133809" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_55a0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133839", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133839" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_55a1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301134046", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134046" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_55a2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301134047", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134047" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_55a3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303135212", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2135212" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_55a4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303135222", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2135222" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_55a5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135614", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135614" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_55a6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135643", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135643" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_55a7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135736", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2135736" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_55a8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304136033", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136033" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_55a9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143520", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143520" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_55aa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136109", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136109" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_55ab" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136224", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136224" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_55ac" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136543", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136543" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_55ad" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136545", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136545" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_55ae" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136621", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136621" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_55af" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136941", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136941" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_55b0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136953", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136953" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_55b1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137106", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137106" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_55b2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137132", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137132" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_55b3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147203", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147203" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_55b4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137344", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137344" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_55b5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137428", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2137428" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_55b6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138055", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138055" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_55b7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138140", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138140" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_55b8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138208", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138208" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_55b9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138439", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138439" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_55ba" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502139913", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139913" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_55bb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140309", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2140309" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_55bc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140509", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140509" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_55bd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21602141306", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2141306" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_55be" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141617", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141617" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_55bf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141635", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2141635" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_55c0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141708", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2141708" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_55c1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103145208", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2145208" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_55c2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142029", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2142029" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_55c3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145303", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2145303" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_55c4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142030", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142030" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_55c5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142112", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142112" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_55c6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142113", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142113" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_55c7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142130", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142130" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_55c8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702142506", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2142506" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_55c9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702142514", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2142514" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_55ca" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802142713", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142713" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_55cb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902142813", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142813" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_55cc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902142821", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2142821" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_55cd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143312", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143312" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_55ce" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143629", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143629" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_55cf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003143835", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2143835" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_55d0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144208", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2144208" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_55d1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144305", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2144305" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_55d2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144625", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2144625" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_55d3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103145034", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2145034" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_55d4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145312", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2145312" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_55d5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145612", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2145612" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_55d6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203145711", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145711" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_55d7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204146019", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146019" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_55d8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204146028", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146028" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_55d9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146708", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2146708" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_55da" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146743", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146743" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_55db" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147603", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2147603" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_55dc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147718", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147718" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_55dd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147915", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147915" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_55de" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147930", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2147930" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_55df" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113610", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113610" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_55e0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113343", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2113343" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_55e4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113402", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113402" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5600" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100837", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2100837" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5604" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20102101003", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2101003" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5605" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20102101125", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2101125" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5606" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201101801", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2101801" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5607" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100311", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2100311" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5608" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100331", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100331" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5609" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100430", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100430" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_560a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100447", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2100447" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_560b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102018", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102018" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_560c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20301103404", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103404" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_560d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20301103607", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103607" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_560e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103811", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103811" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_560f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104042", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104042" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5610" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104218", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2104218" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5611" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104502", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104502" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5612" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303104809", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104809" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5613" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106405", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106405" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5614" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106602", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2106602" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5615" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107115", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2107115" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5616" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110820", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2110820" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5617" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111009", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111009" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5618" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111205", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2111205" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5619" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111312", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2111312" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_561a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111432", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111432" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_561b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605112804", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 12, + "sa1_7dig16": "2112804" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_561c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107507", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107507" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_561d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108127", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108127" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_561e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108503", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108503" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_561f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108604", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2108604" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5620" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503108710", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108710" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5621" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112125", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2112125" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5622" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112214", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2112214" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5623" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503108716", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2108716" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5624" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109808", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109808" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5625" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110002", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2110002" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5626" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110521", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110521" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5627" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110813", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110813" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5628" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113428", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2113428" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5629" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113506", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2113506" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_562a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113626", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2113626" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_562b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114429", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2114429" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_562c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114503", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114503" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_562d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114701", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114701" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_562e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116825", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116825" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_562f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115031", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115031" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5630" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115139", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2115139" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5631" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115301", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115301" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5632" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115508", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115508" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5633" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115616", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115616" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5634" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115919", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115919" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5635" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116126", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116126" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5636" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116220", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116220" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5637" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116714", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116714" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5638" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116918", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2116918" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5639" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116938", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2116938" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_563a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117236", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117236" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_563b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117438", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117438" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_563c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117603", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117603" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_563d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117619", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2117619" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_563e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117621", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117621" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_563f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117727", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2117727" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5640" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802118017", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2118017" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5641" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802118222", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118222" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5642" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118906", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118906" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5643" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119106", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119106" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5644" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119114", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119114" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5645" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119303", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119303" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5646" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119409", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119409" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5647" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119419", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2119419" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5648" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119449", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119449" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5649" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119506", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119506" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_564a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133012", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2133012" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_564b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119725", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119725" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_564c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120201", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120201" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_564d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120202", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120202" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_564e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120238", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120238" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_564f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903120949", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120949" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5650" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121104", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121104" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5651" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122346", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122346" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5652" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121204", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121204" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5653" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121319", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121319" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5654" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121513", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121513" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5655" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904121939", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121939" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5656" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904121947", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2121947" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5657" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904121949", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2121949" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5658" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122116", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122116" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5659" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113426", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113426" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_565a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122959", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2122959" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_565b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21002123202", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2123202" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_565c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21002123508", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2123508" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_565d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21002123509", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123509" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_565e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123716", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2123716" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_565f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123721", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2123721" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5660" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123919", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123919" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5661" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125936", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2125936" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5662" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124101", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124101" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5663" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124518", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2124518" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5664" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124612", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124612" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5665" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124620", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124620" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5666" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101126007", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126007" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5667" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101126008", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2126008" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5668" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21102126113", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126113" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5669" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134737", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2134737" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_566a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124935", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124935" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_566b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124936", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124936" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_566c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124943", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124943" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_566d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136943", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136943" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_566e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21102126226", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126226" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_566f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126614", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2126614" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5670" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126822", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126822" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5671" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127023", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127023" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5672" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127404", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127404" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5673" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127831", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2127831" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5674" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128225", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128225" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5675" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128502", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128502" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5676" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128512", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128512" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5677" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129237", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129237" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5678" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129241", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2129241" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5679" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129442", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129442" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_567a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129515", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2129515" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_567b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129707", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129707" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_567c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130109", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130109" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_567d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132248", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2132248" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_567e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130319", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2130319" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_567f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130429", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130429" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5680" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130548", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2130548" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5681" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131245", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131245" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5682" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131301", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131301" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5683" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131421", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131421" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5684" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131446", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131446" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5685" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131802", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131802" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5686" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132128", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2132128" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5687" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132207", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132207" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5688" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133018", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133018" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5689" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133114", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133114" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_568a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133207", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133207" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_568b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133212", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2133212" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_568c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133218", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133218" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_568d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133703", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2133703" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_568e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133718", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2133718" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_568f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134224", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2134224" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5690" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134510", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134510" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5691" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134701", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134701" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5692" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134829", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134829" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5693" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303135120", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2135120" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5694" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135338", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135338" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5695" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304136028", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136028" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5696" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136129", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136129" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5697" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136234", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136234" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5698" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136556", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2136556" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5699" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136606", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136606" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_569a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136907", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136907" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_569b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137907", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2137907" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_569c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137920", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2137920" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_569d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137947", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137947" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_569e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138035", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138035" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_569f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138038", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138038" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_56a0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501138831", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2138831" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_56a1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501138908", + "neg_nil_inc_fam_households": 7, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2138908" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_56a2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138130", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138130" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_56a3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138319", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2138319" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_56a4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138333", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138333" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_56a5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501138910", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2138910" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_56a6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139209", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2139209" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_56a7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139220", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2139220" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_56a8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502139521", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2139521" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_56a9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140118", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140118" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_56aa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140501", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2140501" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_56ab" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138344", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2138344" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_56ac" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501138610", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138610" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_56ad" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21602141203", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141203" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_56ae" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21602141302", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2141302" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_56af" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141623", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2141623" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_56b0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141718", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141718" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_56b1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141738", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2141738" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_56b2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141747", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2141747" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_56b3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141805", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2141805" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_56b4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143039", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2143039" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_56b5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144307", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144307" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_56b6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144402", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2144402" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_56b7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144635", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2144635" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_56b8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103145102", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145102" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_56b9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145405", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145405" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_56ba" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203145835", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145835" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_56bb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204146012", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2146012" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_56bc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304146324", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146324" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_56bd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146541", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146541" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_56be" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147108", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147108" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_56bf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147304", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147304" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_56c0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147415", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2147415" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_56c1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147802", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2147802" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_56c2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147903", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2147903" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_56c3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147925", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147925" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_56c4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147926", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147926" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_56c5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116909", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2116909" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_56c6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117225", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117225" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_56c7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117614", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117614" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_56c8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802118011", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2118011" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_56c9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100219", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2100219" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5705" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100333", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2100333" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5706" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100518", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100518" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5707" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100825", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100825" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5708" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201101803", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2101803" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5709" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201101917", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2101917" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_570a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102010", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2102010" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_570b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102117", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102117" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_570c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104019", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104019" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_570d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104305", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104305" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_570e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104402", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104402" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_570f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104513", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104513" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5710" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303104905", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104905" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5711" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113503", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2113503" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5712" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20203103306", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2103306" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5713" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103726", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2103726" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5714" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103732", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2103732" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5715" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109632", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109632" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5716" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303104906", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104906" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5717" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105036", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2105036" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5718" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105327", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105327" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5719" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105501", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2105501" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_571a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105722", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105722" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_571b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113609", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2113609" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_571c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105901", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105901" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_571d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106630", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106630" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_571e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106647", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106647" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_571f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106724", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106724" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5720" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107114", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2107114" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5721" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107338", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107338" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5722" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107703", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2107703" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5723" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108202", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108202" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5724" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108424", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2108424" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5725" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503108708", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2108708" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5726" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109008", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109008" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5727" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109510", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109510" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5728" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109611", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2109611" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5729" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109708", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2109708" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_572a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109709", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2109709" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_572b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109710", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2109710" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_572c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110719", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2110719" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_572d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110825", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110825" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_572e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111603", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2111603" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_572f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604111729", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 45, + "sa1_7dig16": "2111729" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5730" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112606", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 22, + "sa1_7dig16": "2112606" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5731" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113207", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113207" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5732" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113327", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2113327" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5733" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113337", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 11, + "sa1_7dig16": "2113337" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5734" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110131", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2110131" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5735" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110416", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110416" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5736" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110717", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110717" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5737" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113612", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113612" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5738" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113628", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2113628" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5739" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113635", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113635" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_573a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113638", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113638" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_573b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113711", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2113711" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_573c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114212", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114212" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_573d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114619", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114619" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_573e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114833", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114833" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_573f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115219", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115219" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5740" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115511", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115511" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5741" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115605", + "neg_nil_inc_fam_households": 7, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2115605" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5742" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117332", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117332" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5743" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115709", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2115709" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5744" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115927", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115927" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5745" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115944", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2115944" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5746" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702116017", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116017" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5747" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702116026", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116026" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5748" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116127", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116127" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5749" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116425", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2116425" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_574a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116706", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2116706" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_574b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802118013", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118013" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_574c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802118219", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2118219" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_574d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118320", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118320" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_574e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118702", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118702" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_574f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118922", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2118922" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5750" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119007", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2119007" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5751" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119420", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119420" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5752" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119526", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2119526" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5753" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119536", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2119536" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5754" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119608", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2119608" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5755" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119614", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119614" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5756" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119802", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2119802" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5757" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119926", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2119926" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5758" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120103", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120103" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5759" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120203", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120203" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_575a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120340", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120340" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_575b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120813", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120813" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_575c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903120911", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120911" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_575d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122921", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122921" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_575e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123610", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 11, + "sa1_7dig16": "2123610" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_575f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123948", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2123948" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5760" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903120936", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120936" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5761" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903120950", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120950" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5762" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903120959", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120959" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5763" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121213", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2121213" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5764" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121510", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121510" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5765" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121530", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121530" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5766" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904121605", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 12, + "sa1_7dig16": "2121605" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5767" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904121606", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2121606" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5768" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122029", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2122029" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5769" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122322", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2122322" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_576a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122915", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122915" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_576b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124160", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124160" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_576c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124339", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2124339" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_576d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124521", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124521" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_576e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124544", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124544" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_576f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124601", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124601" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5770" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128001", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128001" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5771" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124723", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124723" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5772" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125604", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2125604" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5773" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125627", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125627" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5774" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125706", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125706" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5775" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128108", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128108" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5776" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128505", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128505" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5777" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125909", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2125909" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5778" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126704", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126704" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5779" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126801", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126801" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_577a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104126915", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2126915" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_577b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127401", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127401" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_577c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127505", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127505" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_577d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127618", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2127618" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_577e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127624", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127624" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_577f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127902", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127902" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5780" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131713", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131713" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5781" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128907", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128907" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5782" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129209", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2129209" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5783" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129335", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129335" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5784" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129524", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2129524" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5785" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130130", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130130" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5786" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130309", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2130309" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5787" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130414", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130414" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5788" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130607", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2130607" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5789" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131004", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131004" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_578a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131730", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2131730" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_578b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131021", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131021" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_578c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131164", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131164" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_578d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131206", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131206" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_578e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131210", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131210" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_578f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131211", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131211" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5790" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131221", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131221" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5791" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131414", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131414" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5792" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131460", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2131460" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5793" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131708", + "neg_nil_inc_fam_households": 9, + "negative_nil_income_tot": 16, + "sa1_7dig16": "2131708" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5794" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205131915", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2131915" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5795" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205131928", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2131928" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5796" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132107", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132107" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5797" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132409", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2132409" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5798" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132712", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2132712" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5799" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132714", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132714" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_579a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132745", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132745" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_579b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301132817", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132817" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_579c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301132912", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2132912" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_579d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133065", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2133065" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_579e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133427", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133427" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_579f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133826", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2133826" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_57a0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301134010", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134010" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_57a1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134208", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134208" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_57a2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134210", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134210" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_57a3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134410", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134410" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_57a4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134819", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2134819" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_57a5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134826", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2134826" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_57a6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303135113", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2135113" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_57a7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135339", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2135339" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_57a8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135719", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135719" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_57a9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304136035", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136035" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_57aa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136245", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136245" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_57ab" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136307", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136307" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_57ac" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136523", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2136523" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_57ad" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136561", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136561" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_57ae" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136901", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136901" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_57af" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137140", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2137140" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_57b0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137146", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2137146" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_57b1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137216", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137216" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_57b2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137946", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137946" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_57b3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138105", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138105" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_57b4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138312", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138312" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_57b5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501138621", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138621" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_57b6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140630", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2140630" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_57b7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501138801", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138801" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_57b8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501138817", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138817" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_57b9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140212", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140212" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_57ba" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140407", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140407" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_57bb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140621", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2140621" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_57bc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21602141201", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141201" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_57bd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21602141318", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2141318" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_57be" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21602141408", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2141408" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_57bf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141603", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141603" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_57c0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141731", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2141731" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_57c1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141744", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141744" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_57c2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142004", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142004" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_57c3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802142623", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2142623" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_57c4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902142909", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142909" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_57c5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143005", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143005" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_57c6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143121", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143121" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_57c7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144122", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2144122" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_57c8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144221", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144221" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_57c9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144414", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2144414" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_57ca" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144811", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144811" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_57cb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103145105", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2145105" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_57cc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145320", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2145320" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_57cd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145503", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145503" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_57ce" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145517", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145517" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_57cf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145526", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145526" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_57d0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145534", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145534" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_57d1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145608", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2145608" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_57d2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304146303", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146303" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_57d3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304146341", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146341" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_57d4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146618", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146618" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_57d5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502147018", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147018" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_57d6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147510", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147510" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_57d7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147713", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2147713" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_57d8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147922", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147922" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_57d9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147924", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147924" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_57da" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704148022", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2148022" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_57db" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114951", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114951" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_57dc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204146025", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2146025" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_57dd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104220", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104220" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_57f5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109422", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2109422" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_57f6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115206", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2115206" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_57f7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115408", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115408" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_57fc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115538", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115538" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_57fd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119830", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119830" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_57ff" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119923", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2119923" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5800" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115702", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2115702" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5802" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126820", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2126820" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5807" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100222", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100222" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5809" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100348", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100348" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_580a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100445", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2100445" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_580b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100610", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2100610" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_580c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100707", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2100707" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_580d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102725", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102725" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_580e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102803", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102803" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_580f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20102101004", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101004" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5810" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20102101007", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101007" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5811" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20102101105", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2101105" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5812" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20103101410", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2101410" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5813" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20103101606", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101606" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5814" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201101810", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101810" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5815" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102102", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102102" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5816" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102106", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102106" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5817" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102108", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102108" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5818" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102819", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102819" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5819" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20203103209", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2103209" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_581a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20203103304", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2103304" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_581b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20301103407", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2103407" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_581c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103911", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2103911" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_581d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104043", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104043" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_581e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104113", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104113" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_581f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104118", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104118" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5820" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104209", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104209" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5821" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104313", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104313" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5822" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104533", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104533" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5823" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105013", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105013" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5824" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105402", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105402" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5825" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105405", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105405" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5826" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105608", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2105608" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5827" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106612", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106612" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5828" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111624", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111624" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5829" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106637", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106637" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_582a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403106810", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106810" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_582b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403106927", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106927" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_582c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107217", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2107217" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_582d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107419", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107419" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_582e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107638", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2107638" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_582f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107706", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107706" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5830" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107713", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2107713" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5831" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109728", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109728" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5832" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110109", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2110109" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5833" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110133", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110133" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5834" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107938", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2107938" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5835" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109333", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2109333" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5836" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109419", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2109419" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5837" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110302", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110302" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5838" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111133", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111133" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5839" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111150", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111150" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_583a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111225", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111225" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_583b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111319", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2111319" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_583c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111413", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111413" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_583d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111414", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111414" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_583e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111608", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111608" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_583f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111629", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111629" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5840" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605112827", + "neg_nil_inc_fam_households": 8, + "negative_nil_income_tot": 18, + "sa1_7dig16": "2112827" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5841" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605112905", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2112905" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5842" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605112923", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2112923" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5843" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113218", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113218" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5844" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113418", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113418" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5845" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113720", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2113720" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5846" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114304", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2114304" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5847" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114427", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114427" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5848" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114613", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114613" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5849" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114823", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2114823" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_584a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114933", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114933" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_584b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702116014", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2116014" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_584c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702116025", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116025" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_584d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116121", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2116121" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_584e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116337", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2116337" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_584f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116408", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2116408" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5850" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116605", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116605" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5851" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116937", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2116937" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5852" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117003", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2117003" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5853" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117419", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2117419" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5854" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118513", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118513" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5855" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119723", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119723" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5856" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118522", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2118522" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5857" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118704", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2118704" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5858" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118801", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2118801" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5859" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118814", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2118814" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_585a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118840", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2118840" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_585b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118926", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118926" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_585c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119330", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119330" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_585d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119512", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119512" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_585e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119541", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119541" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_585f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119807", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119807" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5860" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120012", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120012" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5861" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120216", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120216" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5862" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120417", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120417" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5863" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120737", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2120737" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5864" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120757", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2120757" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5865" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121103", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121103" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5866" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121215", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121215" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5867" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127011", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2127011" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5868" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122025", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122025" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5869" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122102", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122102" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_586a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122324", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122324" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_586b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122347", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2122347" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_586c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122406", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122406" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_586d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122410", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2122410" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_586e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124162", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124162" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_586f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124332", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124332" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5870" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122503", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2122503" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5871" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122802", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2122802" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5872" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122910", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2122910" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5873" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21002123231", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123231" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5874" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21002123503", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2123503" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5875" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123910", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2123910" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5876" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124025", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124025" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5877" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126732", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2126732" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5878" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124523", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2124523" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5879" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005125015", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125015" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_587a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125412", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125412" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_587b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21102126210", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2126210" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_587c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126514", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126514" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_587d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126623", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2126623" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_587e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127123", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2127123" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_587f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127329", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2127329" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5880" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127604", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127604" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5881" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127622", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127622" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5882" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303135121", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2135121" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5883" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127704", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127704" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5884" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127823", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2127823" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5885" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128109", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128109" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5886" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128307", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128307" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5887" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128313", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128313" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5888" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128518", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128518" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5889" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128621", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128621" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_588a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128920", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128920" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_588b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129104", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2129104" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_588c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129111", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129111" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_588d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129135", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129135" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_588e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129344", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129344" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_588f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129513", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129513" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5890" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129722", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2129722" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5891" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130513", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2130513" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5892" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130534", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130534" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5893" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130601", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130601" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5894" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131320", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131320" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5895" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501138704", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138704" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5896" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131716", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2131716" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5897" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205131920", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 12, + "sa1_7dig16": "2131920" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5898" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132202", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132202" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5899" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132204", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2132204" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_589a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132209", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 12, + "sa1_7dig16": "2132209" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_589b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132217", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2132217" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_589c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132305", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2132305" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_589d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132324", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2132324" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_589e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132425", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132425" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_589f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132531", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132531" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58a0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132534", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2132534" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58a1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132710", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2132710" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58a2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133023", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133023" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58a3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133113", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133113" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58a4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133237", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133237" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58a5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133404", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133404" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58a6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133503", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2133503" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58a7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133810", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133810" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58a8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301134007", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134007" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58a9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301134034", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134034" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58aa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134215", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 11, + "sa1_7dig16": "2134215" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58ab" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134423", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134423" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58ac" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134604", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134604" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58ad" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134631", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2134631" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58ae" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134821", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 11, + "sa1_7dig16": "2134821" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58af" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134927", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2134927" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58b0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135513", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2135513" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58b1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135803", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135803" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58b2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136107", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136107" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58b3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136246", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136246" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58b4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136311", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136311" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58b5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136515", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136515" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58b6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136924", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2136924" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58b7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136949", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136949" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58b8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146513", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146513" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58b9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137135", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 11, + "sa1_7dig16": "2137135" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58ba" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137144", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137144" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58bb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137213", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137213" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58bc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137243", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137243" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58bd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137308", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137308" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58be" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137440", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137440" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58bf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137452", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137452" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58c0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137520", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137520" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58c1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137708", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2137708" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58c2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137916", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137916" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58c3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138004", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2138004" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58c4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138118", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138118" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58c5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138218", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138218" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58c6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138320", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2138320" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58c7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138427", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138427" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58c8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138435", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138435" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58c9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139102", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2139102" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58ca" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139205", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139205" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58cb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139211", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2139211" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58cc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139215", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2139215" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58cd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139216", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139216" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58ce" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139303", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2139303" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58cf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140012", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2140012" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58d0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140211", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2140211" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58d1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140302", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2140302" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58d2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140908", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140908" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58d3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141711", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141711" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58d4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142129", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2142129" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58d5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142211", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142211" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58d6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142217", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2142217" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58d7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142221", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142221" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58d8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702142432", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2142432" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58d9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802142715", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2142715" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58da" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902142904", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142904" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58db" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141810", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141810" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58dc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142106", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142106" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58dd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143003", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143003" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58de" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143101", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2143101" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58df" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143103", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2143103" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58e0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143207", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143207" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58e1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204145911", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2145911" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58e2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204145913", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2145913" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58e3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143209", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2143209" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58e4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143428", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2143428" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58e5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003143810", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2143810" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58e6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144216", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144216" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58e7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144501", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144501" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58e8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144834", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2144834" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58e9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145302", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145302" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58ea" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145609", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145609" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58eb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146534", + "neg_nil_inc_fam_households": 7, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2146534" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58ec" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146613", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146613" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58ed" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146728", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146728" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58ee" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502146910", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146910" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58ef" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147202", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2147202" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58f0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147317", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2147317" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58f1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147407", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147407" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58f2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147708", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2147708" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58f3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147902", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147902" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58f4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113012", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2113012" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58f5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802118206", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2118206" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58f6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135645", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135645" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_58f9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137312", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2137312" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5910" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103919", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103919" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5911" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105031", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2105031" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5925" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100111", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2100111" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5926" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100123", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100123" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5927" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100212", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100212" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5928" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100811", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100811" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5929" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20102101213", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2101213" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_592a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102125", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102125" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_592b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102227", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102227" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_592c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102523", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102523" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_592d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102713", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102713" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_592e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102723", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102723" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_592f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20301103504", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103504" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5930" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103711", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2103711" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5931" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103860", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2103860" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5932" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103862", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103862" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5933" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104038", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104038" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5934" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104317", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104317" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5935" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104331", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104331" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5936" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104420", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104420" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5937" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104422", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104422" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5938" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104517", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104517" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5939" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303104801", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2104801" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_593a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105005", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105005" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_593b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105909", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105909" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_593c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401106003", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106003" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_593d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106621", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2106621" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_593e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106627", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106627" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_593f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106642", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2106642" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5940" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106719", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106719" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5941" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107432", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107432" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5942" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107610", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2107610" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5943" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107624", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107624" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5944" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109701", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109701" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5945" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109734", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109734" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5946" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109810", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109810" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5947" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107717", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107717" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5948" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107919", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107919" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5949" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110545", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2110545" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_594a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116950", + "neg_nil_inc_fam_households": 7, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2116950" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_594b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108119", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108119" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_594c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108209", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2108209" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_594d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108220", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2108220" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_594e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109112", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109112" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_594f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109121", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2109121" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5950" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109354", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109354" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5951" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116510", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2116510" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5952" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110815", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2110815" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5953" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111512", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111512" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5954" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112235", + "neg_nil_inc_fam_households": 15, + "negative_nil_income_tot": 52, + "sa1_7dig16": "2112235" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5955" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112326", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2112326" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5956" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112627", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2112627" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5957" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112633", + "neg_nil_inc_fam_households": 24, + "negative_nil_income_tot": 64, + "sa1_7dig16": "2112633" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5958" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605112823", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2112823" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5959" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113026", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2113026" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_595a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113820", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113820" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_595b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114321", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2114321" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_595c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114435", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114435" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_595d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114803", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114803" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_595e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116813", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116813" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_595f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114849", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114849" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5960" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114851", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114851" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5961" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115359", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115359" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5962" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115911", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115911" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5963" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115916", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115916" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5964" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116344", + "neg_nil_inc_fam_households": 9, + "negative_nil_income_tot": 53, + "sa1_7dig16": "2116344" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5965" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117710", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2117710" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5966" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117927", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117927" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5967" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802118009", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118009" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5968" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802118103", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2118103" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5969" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118514", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118514" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_596a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119022", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119022" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_596b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119318", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119318" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_596c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119416", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119416" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_596d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119514", + "neg_nil_inc_fam_households": 15, + "negative_nil_income_tot": 46, + "sa1_7dig16": "2119514" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_596e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119732", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119732" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_596f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120023", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120023" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5970" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120239", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120239" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5971" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120330", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2120330" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5972" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120714", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2120714" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5973" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120801", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120801" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5974" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121202", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121202" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5975" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121515", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121515" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5976" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121528", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121528" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5977" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904121924", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2121924" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5978" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122046", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2122046" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5979" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122128", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122128" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_597a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122314", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2122314" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_597b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122315", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122315" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_597c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122605", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2122605" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_597d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123604", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123604" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_597e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123926", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2123926" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_597f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124708", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2124708" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5980" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124915", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124915" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5981" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124001", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124001" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5982" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124010", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2124010" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5983" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124530", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124530" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5984" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125111", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125111" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5985" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124150", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124150" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5986" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124320", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2124320" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5987" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124324", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124324" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5988" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124329", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124329" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5989" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124330", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124330" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_598a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124335", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2124335" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_598b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125508", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125508" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_598c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125512", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2125512" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_598d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125616", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125616" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_598e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101126018", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2126018" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_598f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21102126121", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126121" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5990" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21102126128", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2126128" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5991" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126306", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2126306" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5992" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126525", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126525" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5993" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126527", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126527" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5994" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126607", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2126607" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5995" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126729", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126729" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5996" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127039", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2127039" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5997" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128018", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128018" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5998" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128122", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128122" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5999" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128208", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128208" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_599a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129454", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129454" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_599b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129913", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129913" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_599c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128708", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128708" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_599d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128803", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128803" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_599e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128943", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2128943" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_599f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130547", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2130547" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59a0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131018", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131018" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59a1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131133", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2131133" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59a2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129004", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129004" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59a3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129310", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2129310" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59a4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131251", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131251" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59a5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133401", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2133401" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59a6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129354", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129354" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59a7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129441", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2129441" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59a8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131401", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131401" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59a9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131408", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2131408" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59aa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131807", + "neg_nil_inc_fam_households": 8, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2131807" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59ab" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205131924", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2131924" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59ac" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132021", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 14, + "sa1_7dig16": "2132021" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59ad" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132505", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2132505" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59ae" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132727", + "neg_nil_inc_fam_households": 8, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2132727" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59af" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301132818", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132818" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59b0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133434", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2133434" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59b1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133517", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2133517" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59b2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133606", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2133606" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59b3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134419", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134419" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59b4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134437", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134437" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59b5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134628", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134628" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59b6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134738", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2134738" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59b7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134815", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134815" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59b8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134827", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2134827" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59b9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134905", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2134905" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59ba" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134911", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134911" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59bb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135313", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135313" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59bc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304136013", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136013" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59bd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136137", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2136137" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59be" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136240", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136240" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59bf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136560", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136560" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59c0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136620", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136620" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59c1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136808", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136808" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59c2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137104", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137104" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59c3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137124", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2137124" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59c4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137326", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137326" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59c5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137533", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2137533" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59c6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137618", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137618" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59c7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137629", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137629" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59c8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137805", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137805" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59c9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138206", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138206" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59ca" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138225", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138225" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59cb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138429", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2138429" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59cc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138440", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138440" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59cd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501138708", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138708" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59ce" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501138804", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138804" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59cf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501138835", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138835" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59d0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139008", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139008" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59d1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142013", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2142013" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59d2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139019", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2139019" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59d3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139304", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139304" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59d4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502139804", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139804" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59d5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502139917", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139917" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59d6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142222", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2142222" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59d7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142322", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142322" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59d8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140631", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2140631" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59d9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21602141326", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2141326" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59da" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21602141409", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2141409" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59db" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141634", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2141634" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59dc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141726", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2141726" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59dd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142008", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142008" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59de" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702142431", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142431" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59df" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143010", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143010" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59e0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143038", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143038" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59e1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143110", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143110" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59e2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143302", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143302" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59e3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143505", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143505" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59e4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143513", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143513" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59e5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143631", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143631" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59e6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143702", + "neg_nil_inc_fam_households": 9, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2143702" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59e7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003143808", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2143808" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59e8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003143814", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143814" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59e9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003143839", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2143839" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59ea" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003144001", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2144001" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59eb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144118", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2144118" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59ec" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144407", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144407" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59ed" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144647", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144647" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59ee" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145328", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145328" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59ef" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203145808", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2145808" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59f0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203145836", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2145836" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59f1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204146034", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146034" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59f2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204146035", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2146035" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59f3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146509", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146509" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59f4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146516", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146516" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59f5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502147009", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2147009" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59f6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147104", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147104" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59f7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147705", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147705" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59f8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147721", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2147721" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59f9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147946", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2147946" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59fa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111110", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111110" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_59fb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113017", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2113017" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a03" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113222", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2113222" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a17" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119511", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119511" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a18" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113302", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113302" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a1f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113330", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2113330" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a22" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116926", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116926" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a23" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116932", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116932" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a26" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119543", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119543" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a27" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104235", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104235" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a28" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100302", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100302" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a29" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100408", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2100408" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a2a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100415", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100415" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a2b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100613", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100613" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a2c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100806", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100806" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a2d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100844", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100844" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a2e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20102100916", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2100916" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a2f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20102101103", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2101103" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a30" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201101921", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2101921" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a31" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102026", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2102026" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a32" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102122", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102122" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a33" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102601", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102601" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a34" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102608", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102608" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a35" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303104904", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104904" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a36" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102710", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2102710" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a37" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102714", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102714" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a38" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102821", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102821" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a39" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102910", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102910" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a3a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112103", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2112103" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a3b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102911", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102911" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a3c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20301103510", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103510" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a3d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20301103601", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103601" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a3e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103731", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2103731" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a3f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103922", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103922" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a40" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104148", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104148" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a41" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104216", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104216" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a42" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105206", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2105206" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a43" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105623", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105623" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a44" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105710", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105710" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a45" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105719", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2105719" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a46" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105809", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2105809" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a47" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401106008", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106008" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a48" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106707", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106707" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a49" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403106928", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106928" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a4a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107323", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2107323" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a4b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107416", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107416" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a4c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107451", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107451" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a4d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107616", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2107616" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a4e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108114", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108114" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a4f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108518", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2108518" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a50" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503108713", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108713" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a51" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112329", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2112329" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a52" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605112914", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2112914" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a53" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109523", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2109523" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a54" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109726", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109726" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a55" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109750", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2109750" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a56" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110802", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2110802" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a57" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110858", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110858" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a58" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111103", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111103" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a59" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111112", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2111112" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a5a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111149", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111149" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a5b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111206", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111206" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a5c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111237", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111237" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a5d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111604", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111604" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a5e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113611", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113611" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a5f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113705", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2113705" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a60" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113707", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113707" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a61" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607113909", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113909" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a62" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114453", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2114453" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a63" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117026", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2117026" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a64" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117122", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117122" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a65" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117214", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2117214" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a66" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117221", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117221" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a67" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117602", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117602" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a68" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117804", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117804" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a69" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117813", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117813" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a6a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114509", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114509" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a6b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114711", + "neg_nil_inc_fam_households": 8, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2114711" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a6c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115507", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115507" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a6d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115519", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115519" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a6e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115920", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115920" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a6f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116327", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2116327" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a70" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118623", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2118623" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a71" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119338", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119338" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a72" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119432", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119432" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a73" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119530", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2119530" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a74" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119620", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119620" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a75" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119705", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2119705" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a76" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119715", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119715" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a77" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119804", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119804" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a78" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119827", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119827" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a79" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120229", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2120229" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a7a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120301", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120301" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a7b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120342", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2120342" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a7c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120525", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120525" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a7d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120823", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120823" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a7e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903120904", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120904" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a7f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121220", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121220" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a80" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124721", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124721" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a81" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121529", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121529" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a82" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904121714", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121714" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a83" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904121923", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2121923" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a84" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122344", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122344" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a85" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122402", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122402" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a86" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124725", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2124725" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a87" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005125012", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125012" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a88" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122408", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122408" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a89" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122517", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2122517" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a8a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122616", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122616" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a8b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122811", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2122811" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a8c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001123110", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123110" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a8d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21002123505", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123505" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a8e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123905", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123905" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a8f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124526", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2124526" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a90" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125511", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125511" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a91" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125628", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125628" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a92" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125934", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125934" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a93" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21102126116", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126116" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a94" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127709", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127709" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a95" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128112", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128112" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a96" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131324", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131324" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a97" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21102126216", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126216" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a98" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126320", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126320" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a99" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126522", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126522" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a9a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126621", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2126621" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a9b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126809", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2126809" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a9c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127114", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127114" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a9d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127212", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127212" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a9e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128117", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2128117" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5a9f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128309", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2128309" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5aa0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128404", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128404" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5aa1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128813", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2128813" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5aa2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128903", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2128903" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5aa3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128937", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128937" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5aa4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129014", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129014" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5aa5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129113", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2129113" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5aa6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129229", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129229" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5aa7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129257", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129257" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5aa8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129522", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2129522" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5aa9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130040", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130040" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5aaa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130204", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130204" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5aab" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130306", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2130306" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5aac" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130532", + "neg_nil_inc_fam_households": 9, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2130532" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5aad" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130542", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2130542" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5aae" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204130926", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130926" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5aaf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131811", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2131811" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ab0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205131936", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2131936" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ab1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132032", + "neg_nil_inc_fam_households": 13, + "negative_nil_income_tot": 58, + "sa1_7dig16": "2132032" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ab2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132145", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132145" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ab3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132426", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132426" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ab4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132542", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132542" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ab5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133035", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133035" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ab6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133215", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133215" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ab7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133220", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133220" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ab8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133302", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133302" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ab9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133326", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2133326" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5aba" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133409", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133409" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5abb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133715", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133715" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5abc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133719", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133719" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5abd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133830", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2133830" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5abe" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137541", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137541" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5abf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133833", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133833" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ac0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133904", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133904" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ac1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134238", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2134238" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ac2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134504", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134504" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ac3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134622", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2134622" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ac4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134824", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2134824" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ac5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134833", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134833" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ac6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303135005", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2135005" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ac7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135635", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2135635" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ac8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135730", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135730" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ac9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135828", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135828" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5aca" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304136010", + "neg_nil_inc_fam_households": 8, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2136010" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5acb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304136016", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2136016" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5acc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304136036", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2136036" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5acd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136148", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2136148" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ace" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136202", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2136202" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5acf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136310", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136310" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ad0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136315", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2136315" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ad1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136919", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136919" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ad2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137050", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137050" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ad3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137136", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2137136" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ad4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137331", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137331" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ad5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137516", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137516" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ad6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137612", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137612" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ad7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137807", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137807" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ad8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137901", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137901" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ad9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137906", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2137906" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ada" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137919", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137919" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5adb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137948", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137948" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5adc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138204", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2138204" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5add" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138412", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138412" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ade" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138430", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138430" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5adf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138509", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138509" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ae0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502139902", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139902" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ae1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140513", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140513" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ae2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140701", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140701" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ae3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140730", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2140730" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ae4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140809", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140809" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ae5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21602141103", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141103" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ae6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141703", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141703" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ae7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141724", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2141724" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ae8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141802", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141802" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ae9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142128", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142128" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5aea" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702142509", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142509" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5aeb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702142524", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2142524" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5aec" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702142533", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2142533" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5aed" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802142610", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2142610" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5aee" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802142718", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142718" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5aef" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902142916", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142916" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5af0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143015", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143015" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5af1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143026", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143026" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5af2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143040", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143040" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5af3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143128", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2143128" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5af4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143311", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143311" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5af5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143503", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143503" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5af6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143517", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2143517" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5af7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003144012", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144012" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5af8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144117", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144117" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5af9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144213", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144213" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5afa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144310", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2144310" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5afb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144328", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2144328" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5afc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144614", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144614" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5afd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144906", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144906" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5afe" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103145028", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2145028" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5aff" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203145713", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145713" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b00" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204145921", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145921" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b01" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146528", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146528" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b02" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146535", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146535" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b03" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146825", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146825" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b04" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146828", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146828" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b05" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147231", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147231" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b06" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147515", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147515" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b07" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147952", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147952" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b08" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704148008", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2148008" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b09" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100604", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100604" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b2a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104726", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104726" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b2b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100444", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2100444" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b31" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100323", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2100323" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b32" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100411", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100411" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b33" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100416", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100416" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b34" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100451", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2100451" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b35" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100701", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100701" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b36" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20102100914", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100914" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b37" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102218", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2102218" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b38" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20203103312", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103312" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b39" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103704", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2103704" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b3a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103842", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2103842" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b3b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103866", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103866" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b3c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103875", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103875" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b3d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104117", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104117" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b3e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104244", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104244" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b3f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104507", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2104507" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b40" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104732", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104732" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b41" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105331", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2105331" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b42" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105415", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2105415" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b43" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401106204", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2106204" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b44" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106709", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106709" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b45" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106723", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2106723" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b46" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403106913", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106913" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b47" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107104", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107104" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b48" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107205", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2107205" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b49" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107306", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107306" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b4a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107923", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2107923" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b4b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107926", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2107926" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b4c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108416", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108416" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b4d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110517", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110517" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b4e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110706", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110706" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b4f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111138", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111138" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b50" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111201", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2111201" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b51" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109116", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109116" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b52" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109621", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2109621" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b53" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109707", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2109707" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b54" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110716", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2110716" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b55" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110859", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110859" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b56" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109805", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109805" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b57" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110202", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110202" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b58" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110415", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110415" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b59" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111005", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111005" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b5a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111428", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111428" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b5b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111503", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111503" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b5c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111602", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2111602" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b5d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604111714", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111714" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b5e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112104", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2112104" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b5f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112221", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2112221" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b60" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113404", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2113404" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b61" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113431", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2113431" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b62" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113613", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2113613" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b63" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113633", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2113633" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b64" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113639", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2113639" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b65" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113641", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113641" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b66" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114403", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 11, + "sa1_7dig16": "2114403" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b67" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115120", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115120" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b68" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115313", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2115313" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b69" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115317", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115317" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b6a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115322", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2115322" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b6b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116128", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116128" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b6c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116309", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116309" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b6d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116509", + "neg_nil_inc_fam_households": 8, + "negative_nil_income_tot": 18, + "sa1_7dig16": "2116509" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b6e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116907", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116907" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b6f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116911", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116911" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b70" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117206", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117206" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b71" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117216", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117216" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b72" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117302", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2117302" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b73" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117305", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117305" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b74" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117422", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117422" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b75" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117448", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117448" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b76" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802118118", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118118" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b77" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802118208", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2118208" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b78" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802118216", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2118216" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b79" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118829", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118829" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b7a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118930", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118930" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b7b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119110", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2119110" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b7c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119712", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119712" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b7d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119824", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119824" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b7e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120024", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120024" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b7f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120108", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120108" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b80" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120341", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120341" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b81" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120712", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2120712" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b82" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120722", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120722" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b83" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124931", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124931" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b84" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121219", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121219" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b85" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904121603", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2121603" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b86" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904121612", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121612" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b87" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904121716", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2121716" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b88" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904121936", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121936" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b89" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904121940", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2121940" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b8a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125414", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2125414" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b8b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122028", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122028" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b8c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122431", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2122431" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b8d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122504", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122504" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b8e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122513", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122513" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b8f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001123117", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123117" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b90" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21002123219", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123219" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b91" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133219", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133219" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b92" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21002123408", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123408" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b93" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123602", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2123602" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b94" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123712", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 12, + "sa1_7dig16": "2123712" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b95" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123915", + "neg_nil_inc_fam_households": 7, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2123915" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b96" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124028", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124028" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b97" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124114", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124114" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b98" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125927", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2125927" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b99" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101126022", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126022" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b9a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139206", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2139206" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b9b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124139", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124139" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b9c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124141", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124141" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b9d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124511", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2124511" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b9e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124531", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2124531" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5b9f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126319", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126319" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ba0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124538", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124538" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ba1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124602", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124602" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ba2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124617", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124617" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ba3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124911", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124911" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ba4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124913", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124913" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ba5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126629", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126629" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ba6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126640", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126640" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ba7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126727", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2126727" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ba8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127108", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127108" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ba9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127215", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127215" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5baa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127312", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2127312" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5bab" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127502", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127502" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5bac" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128204", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128204" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5bad" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130117", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2130117" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5bae" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204130929", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2130929" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5baf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128648", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128648" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5bb0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129264", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129264" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5bb1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129301", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129301" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5bb2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129326", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129326" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5bb3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130038", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2130038" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5bb4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003143838", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2143838" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5bb5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131437", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131437" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5bb6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131816", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131816" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5bb7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205131919", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131919" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5bb8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132017", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2132017" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5bb9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132041", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2132041" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5bba" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132320", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132320" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5bbb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132703", + "neg_nil_inc_fam_households": 7, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2132703" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5bbc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132729", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132729" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5bbd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132742", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132742" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5bbe" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133905", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133905" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5bbf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134217", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134217" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5bc0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134407", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2134407" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5bc1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303135110", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135110" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5bc2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135528", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2135528" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5bc3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135616", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135616" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5bc4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135712", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135712" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5bc5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136133", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136133" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5bc6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136248", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136248" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5bc7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136934", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136934" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5bc8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136958", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136958" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5bc9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137045", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2137045" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5bca" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137912", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2137912" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5bcb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138202", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138202" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5bcc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501138616", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138616" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5bcd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501138619", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138619" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5bce" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501138902", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2138902" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5bcf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139110", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139110" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5bd0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139223", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139223" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5bd1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139409", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2139409" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5bd2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140723", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2140723" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5bd3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21602141332", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141332" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5bd4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142002", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2142002" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5bd5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142205", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142205" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5bd6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142306", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142306" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5bd7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702142403", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2142403" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5bd8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702142520", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2142520" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5bd9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902142908", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142908" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5bda" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902142911", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2142911" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5bdb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143022", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143022" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5bdc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143023", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143023" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5bdd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143216", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143216" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5bde" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143226", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2143226" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5bdf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143605", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2143605" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5be0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144322", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2144322" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5be1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144330", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144330" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5be2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144631", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144631" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5be3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144814", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2144814" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5be4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144826", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2144826" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5be5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103145001", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145001" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5be6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145419", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145419" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5be7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145611", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2145611" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5be8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203145710", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145710" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5be9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204145901", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2145901" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5bea" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146408", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2146408" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5beb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146523", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2146523" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5bec" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146820", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146820" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5bed" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502146908", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146908" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5bee" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502147013", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147013" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5bef" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502147024", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147024" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5bf0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147503", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2147503" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5bf1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147507", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147507" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5bf2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147931", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147931" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5bf3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704148006", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2148006" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5bf4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704148024", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2148024" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5bf5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704148033", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2148033" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5bf6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113005", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113005" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5bf9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114949", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114949" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5bfa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117806", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2117806" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5bfb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100105", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2100105" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c16" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100202", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100202" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c17" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118611", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2118611" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c18" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100605", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100605" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c19" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100816", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100816" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c1a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20102100907", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100907" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c1b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20103101715", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2101715" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c1c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102116", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102116" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c1d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103854", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2103854" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c1e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102711", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2102711" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c1f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102906", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2102906" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c20" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20203103307", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2103307" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c21" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20301103516", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103516" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c22" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103865", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103865" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c23" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104335", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104335" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c24" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104418", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104418" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c25" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104504", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2104504" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c26" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303104803", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2104803" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c27" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105028", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105028" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c28" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106641", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2106641" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c29" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403106811", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2106811" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c2a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105601", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2105601" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c2b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105611", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2105611" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c2c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106623", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2106623" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c2d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107101", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2107101" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c2e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118907", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2118907" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c2f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107109", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107109" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c30" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107429", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107429" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c31" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107439", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2107439" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c32" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109521", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2109521" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c33" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109626", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2109626" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c34" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110324", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110324" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c35" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110519", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110519" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c36" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119001", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119001" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c37" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107720", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2107720" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c38" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107721", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107721" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c39" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109016", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109016" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c3a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109019", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2109019" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c3b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109341", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109341" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c3c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109505", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109505" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c3d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110714", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110714" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c3e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111022", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111022" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c3f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111445", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111445" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c40" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112313", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2112313" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c41" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112406", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2112406" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c42" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112613", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2112613" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c43" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113314", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2113314" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c44" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113621", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2113621" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c45" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113624", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2113624" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c46" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114217", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2114217" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c47" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114407", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114407" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c48" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114417", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114417" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c49" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114718", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114718" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c4a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114723", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2114723" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c4b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115203", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115203" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c4c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115417", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115417" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c4d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115602", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2115602" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c4e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115622", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115622" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c4f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702116012", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2116012" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c50" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116113", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2116113" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c51" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116305", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 11, + "sa1_7dig16": "2116305" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c52" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116422", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2116422" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c53" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117035", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117035" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c54" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117324", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117324" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c55" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117329", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2117329" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c56" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117750", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117750" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c57" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119104", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119104" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c58" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119540", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2119540" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c59" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119551", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2119551" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c5a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119722", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119722" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c5b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119747", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119747" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c5c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119907", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2119907" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c5d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120015", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120015" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c5e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120309", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120309" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c5f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120703", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2120703" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c60" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120806", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2120806" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c61" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120839", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120839" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c62" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120854", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120854" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c63" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121301", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121301" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c64" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904121710", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2121710" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c65" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904121715", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121715" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c66" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122320", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2122320" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c67" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122907", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2122907" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c68" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122960", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2122960" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c69" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001123005", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123005" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c6a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123929", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2123929" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c6b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123938", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2123938" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c6c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124145", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124145" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c6d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124532", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124532" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c6e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124702", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124702" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c6f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124919", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124919" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c70" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125122", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125122" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c71" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125126", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125126" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c72" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125430", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2125430" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c73" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125624", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2125624" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c74" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125635", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2125635" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c75" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125707", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125707" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c76" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125812", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125812" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c77" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21102126110", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126110" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c78" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129235", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129235" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c79" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130125", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130125" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c7a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21102126127", + "neg_nil_inc_fam_households": 8, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2126127" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c7b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126322", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126322" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c7c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126510", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2126510" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c7d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126543", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2126543" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c7e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126544", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2126544" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c7f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127007", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2127007" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c80" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127431", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127431" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c81" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130506", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2130506" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c82" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127602", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2127602" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c83" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127806", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127806" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c84" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128014", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128014" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c85" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128615", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128615" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c86" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128630", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2128630" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c87" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128718", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128718" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c88" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129207", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129207" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c89" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129238", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2129238" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c8a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129338", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129338" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c8b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129702", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129702" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c8c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129726", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129726" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c8d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130027", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2130027" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c8e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130055", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130055" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c8f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133030", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133030" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c90" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130625", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130625" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c91" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204130930", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130930" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c92" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131008", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131008" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c93" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131226", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131226" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c94" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131314", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131314" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c95" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131613", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131613" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c96" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131737", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2131737" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c97" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132011", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132011" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c98" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132110", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2132110" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c99" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132124", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2132124" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c9a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133016", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133016" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c9b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133502", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2133502" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c9c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133505", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2133505" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c9d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133831", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133831" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c9e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301134012", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134012" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5c9f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134721", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134721" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ca0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135302", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135302" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ca1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135526", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135526" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ca2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135709", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2135709" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ca3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135801", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2135801" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ca4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136144", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136144" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ca5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136563", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2136563" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ca6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136957", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136957" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ca7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137026", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137026" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ca8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137529", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137529" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ca9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137613", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137613" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5caa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137632", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137632" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5cab" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141912", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141912" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5cac" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137938", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137938" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5cad" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138027", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138027" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5cae" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138054", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138054" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5caf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138057", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138057" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5cb0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138124", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138124" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5cb1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138305", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2138305" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5cb2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138401", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138401" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5cb3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501138907", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138907" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5cb4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139022", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139022" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5cb5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139414", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2139414" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5cb6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502139810", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139810" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5cb7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140114", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2140114" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5cb8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140209", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140209" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5cb9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141622", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2141622" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5cba" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140712", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2140712" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5cbb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141520", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141520" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5cbc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142218", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142218" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5cbd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142313", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142313" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5cbe" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802142604", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2142604" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5cbf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902142819", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2142819" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5cc0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902142912", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2142912" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5cc1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143208", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2143208" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5cc2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144653", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144653" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5cc3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144908", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144908" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5cc4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103145019", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145019" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5cc5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103145202", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145202" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5cc6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145314", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145314" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5cc7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145516", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2145516" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5cc8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145616", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2145616" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5cc9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203145701", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2145701" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5cca" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203145724", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2145724" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ccb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203145726", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2145726" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ccc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203145828", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145828" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ccd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204145905", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2145905" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5cce" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304146112", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2146112" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ccf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304146302", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2146302" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5cd0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146537", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146537" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5cd1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147724", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147724" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5cd2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147937", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2147937" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5cd3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704148015", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2148015" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5cd4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704148021", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2148021" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5cd5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104531", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104531" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5cd6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110812", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110812" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5cd7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802118218", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2118218" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5cd9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100608", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100608" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d03" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20102100908", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100908" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d04" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100209", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100209" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d05" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100338", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100338" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d06" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102008", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2102008" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d07" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20203103316", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103316" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d08" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103910", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 18, + "sa1_7dig16": "2103910" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d09" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103920", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2103920" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d0a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103928", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2103928" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d0b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104129", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2104129" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d0c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104308", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104308" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d0d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104325", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104325" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d0e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104405", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104405" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d0f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104406", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104406" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d10" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104710", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104710" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d11" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104734", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104734" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d12" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105049", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2105049" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d13" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105113", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2105113" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d14" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105334", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2105334" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d15" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105804", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2105804" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d16" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106323", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2106323" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d17" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106703", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106703" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d18" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111132", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2111132" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d19" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107311", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107311" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d1a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107330", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107330" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d1b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107621", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2107621" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d1c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107623", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107623" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d1d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110715", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110715" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d1e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107637", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107637" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d1f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108131", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108131" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d20" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109114", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109114" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d21" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109540", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109540" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d22" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109612", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2109612" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d23" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109758", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2109758" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d24" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110317", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110317" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d25" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110332", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110332" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d26" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110410", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2110410" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d27" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110515", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110515" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d28" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110854", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2110854" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d29" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605112903", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2112903" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d2a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111151", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111151" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d2b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111152", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111152" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d2c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111406", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2111406" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d2d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111442", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111442" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d2e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111508", + "neg_nil_inc_fam_households": 7, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2111508" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d2f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111521", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111521" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d30" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111601", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111601" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d31" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111606", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111606" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d32" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111613", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111613" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d33" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604111726", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2111726" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d34" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112101", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2112101" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d35" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112225", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2112225" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d36" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113619", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2113619" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d37" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114015", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114015" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d38" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114450", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114450" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d39" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114519", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2114519" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d3a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115035", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115035" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d3b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115307", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2115307" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d3c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115704", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2115704" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d3d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115735", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115735" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d3e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118308", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2118308" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d3f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115937", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115937" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d40" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116417", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 12, + "sa1_7dig16": "2116417" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d41" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116818", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116818" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d42" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116829", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116829" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d43" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116934", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116934" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d44" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117021", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117021" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d45" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117212", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117212" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d46" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117222", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2117222" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d47" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117902", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117902" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d48" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117924", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117924" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d49" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802118225", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2118225" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d4a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118309", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118309" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d4b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118812", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2118812" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d4c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118826", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2118826" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d4d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118841", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118841" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d4e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119710", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2119710" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d4f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119750", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119750" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d50" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120106", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120106" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d51" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120730", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120730" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d52" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120844", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2120844" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d53" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120856", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120856" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d54" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124209", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2124209" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d55" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124801", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124801" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d56" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903120923", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120923" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d57" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121108", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2121108" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d58" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121325", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2121325" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d59" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121505", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121505" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d5a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122334", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2122334" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d5b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122502", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2122502" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d5c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122601", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2122601" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d5d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001123107", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2123107" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d5e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001123121", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123121" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d5f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123608", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2123608" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d60" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123614", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123614" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d61" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125117", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125117" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d62" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125427", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 11, + "sa1_7dig16": "2125427" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d63" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125610", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125610" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d64" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125634", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125634" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d65" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125826", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2125826" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d66" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125903", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125903" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d67" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128823", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128823" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d68" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128948", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128948" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d69" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21102126105", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126105" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d6a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21102126131", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2126131" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d6b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126724", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2126724" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d6c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127013", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2127013" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d6d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127429", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127429" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d6e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127910", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2127910" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d6f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128609", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128609" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d70" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128656", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128656" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d71" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128817", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128817" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d72" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134921", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134921" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d73" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129316", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2129316" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d74" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129416", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129416" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d75" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129467", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129467" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d76" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129908", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129908" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d77" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130023", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2130023" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d78" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130056", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2130056" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d79" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130114", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130114" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d7a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130225", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130225" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d7b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130407", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130407" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d7c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130531", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2130531" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d7d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130812", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130812" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d7e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204130905", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130905" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d7f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131429", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2131429" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d80" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131809", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131809" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d81" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132147", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2132147" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d82" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132311", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132311" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d83" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132502", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132502" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d84" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132543", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132543" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d85" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301132812", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132812" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d86" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301132911", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2132911" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d87" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133231", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133231" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d88" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133319", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133319" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d89" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133504", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2133504" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d8a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133617", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133617" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d8b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133710", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2133710" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d8c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133907", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133907" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d8d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301134011", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134011" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d8e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134107", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134107" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d8f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134223", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134223" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d90" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134509", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2134509" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d91" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134602", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134602" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d92" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134605", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2134605" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d93" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134801", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134801" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d94" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135347", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135347" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d95" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135901", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2135901" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d96" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136533", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136533" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d97" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136534", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136534" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d98" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136624", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136624" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d99" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136902", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136902" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d9a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136935", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136935" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d9b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137027", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137027" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d9c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137134", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137134" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d9d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137417", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137417" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d9e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137802", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137802" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5d9f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137939", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137939" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5da0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138049", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138049" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5da1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138437", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138437" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5da2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138520", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2138520" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5da3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139009", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2139009" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5da4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139011", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2139011" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5da5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139108", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139108" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5da6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139407", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139407" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5da7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501138703", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138703" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5da8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501138802", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138802" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5da9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502139812", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2139812" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5daa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140004", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2140004" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5dab" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140203", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140203" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5dac" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140310", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140310" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5dad" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141629", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2141629" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5dae" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141732", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2141732" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5daf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142101", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2142101" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5db0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142212", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2142212" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5db1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143220", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2143220" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5db2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143316", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2143316" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5db3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143602", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143602" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5db4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143634", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143634" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5db5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144314", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2144314" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5db6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144420", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2144420" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5db7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145406", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145406" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5db8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145417", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145417" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5db9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145425", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145425" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5dba" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145625", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145625" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5dbb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145630", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145630" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5dbc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203145705", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145705" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5dbd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203145722", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145722" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5dbe" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203145804", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145804" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5dbf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204145919", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145919" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5dc0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304146101", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2146101" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5dc1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146540", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2146540" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5dc2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146726", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146726" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5dc3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146740", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146740" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5dc4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146804", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146804" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5dc5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146809", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146809" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5dc6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147315", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2147315" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5dc7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147511", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147511" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5dc8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147722", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147722" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5dc9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147948", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147948" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5dca" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113704", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 16, + "sa1_7dig16": "2113704" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5de0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116302", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2116302" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5de1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116318", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116318" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5de2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116322", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116322" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5dea" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116826", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2116826" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5df2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117616", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2117616" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5df3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117618", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117618" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5df4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110823", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2110823" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5df5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110827", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2110827" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5df6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113606", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2113606" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5df9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102501", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102501" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5dfa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102606", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102606" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5dfb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113614", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113614" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5dfc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113618", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113618" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5dfd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20102101123", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2101123" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5dfe" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20103101310", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101310" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5dff" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102105", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102105" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e00" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102801", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102801" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e01" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103851", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103851" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e02" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104025", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104025" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e03" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104035", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104035" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e04" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104111", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104111" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e05" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104306", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104306" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e06" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104417", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2104417" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e07" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104516", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104516" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e08" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104523", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2104523" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e09" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104528", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2104528" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e0a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303104902", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2104902" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e0b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105302", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105302" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e0c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401106206", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2106206" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e0d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106631", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106631" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e0e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106636", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2106636" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e0f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106718", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2106718" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e10" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403106809", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106809" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e11" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107005", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107005" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e12" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107410", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107410" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e13" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107614", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2107614" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e14" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107811", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107811" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e15" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107922", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107922" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e16" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109001", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2109001" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e17" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109316", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109316" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e18" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109332", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2109332" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e19" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109716", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109716" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e1a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109802", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109802" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e1b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110528", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110528" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e1c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110711", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110711" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e1d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110916", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110916" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e1e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111125", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111125" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e1f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111143", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111143" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e20" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111147", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111147" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e21" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111441", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111441" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e22" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111520", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2111520" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e23" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111618", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111618" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e24" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112205", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2112205" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e25" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605112811", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2112811" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e26" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605112824", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2112824" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e27" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605112826", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2112826" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e28" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113010", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113010" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e29" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113212", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2113212" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e2a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113413", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2113413" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e2b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113822", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113822" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e2c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114021", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2114021" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e2d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114413", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114413" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e2e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114607", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114607" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e2f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114611", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2114611" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e30" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115210", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2115210" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e31" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115304", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115304" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e32" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115743", + "neg_nil_inc_fam_households": 12, + "negative_nil_income_tot": 20, + "sa1_7dig16": "2115743" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e33" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115745", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2115745" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e34" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116122", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116122" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e35" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116123", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116123" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e36" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118521", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118521" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e37" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118524", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2118524" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e38" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118824", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2118824" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e39" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119312", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119312" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e3a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119718", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119718" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e3b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119733", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119733" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e3c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119739", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119739" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e3d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113204", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2113204" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e3e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119752", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119752" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e3f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119810", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2119810" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e40" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119815", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119815" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e41" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120003", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120003" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e42" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120114", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120114" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e43" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120231", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120231" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e44" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120311", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120311" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e45" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120319", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120319" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e46" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120408", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120408" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e47" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21102126225", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126225" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e48" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133909", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133909" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e49" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120502", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120502" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e4a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120720", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120720" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e4b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121007", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121007" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e4c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121314", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121314" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e4d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131749", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131749" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e4e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121506", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121506" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e4f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122019", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122019" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e50" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122129", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122129" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e51" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122345", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2122345" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e52" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122958", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2122958" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e53" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001123008", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123008" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e54" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001123009", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2123009" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e55" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001123016", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123016" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e56" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124016", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124016" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e57" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124715", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2124715" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e58" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101126032", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126032" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e59" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101126043", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126043" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e5a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21102126135", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126135" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e5b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21102126209", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126209" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e5c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21102126217", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126217" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e5d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126305", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126305" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e5e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126311", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126311" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e5f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126605", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126605" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e60" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127209", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127209" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e61" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127408", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127408" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e62" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127705", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2127705" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e63" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127706", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127706" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e64" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128637", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2128637" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e65" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128638", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128638" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e66" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128819", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128819" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e67" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128918", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128918" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e68" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129125", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2129125" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e69" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137111", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137111" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e6a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129253", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129253" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e6b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129255", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2129255" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e6c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129339", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129339" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e6d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129343", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2129343" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e6e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129348", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129348" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e6f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129453", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129453" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e70" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205131922", + "neg_nil_inc_fam_households": 7, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2131922" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e71" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140108", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2140108" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e72" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129461", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129461" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e73" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129504", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129504" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e74" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130428", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2130428" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e75" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130622", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130622" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e76" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204130911", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130911" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e77" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131316", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131316" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e78" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131322", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131322" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e79" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131722", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131722" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e7a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131745", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131745" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e7b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140506", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140506" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e7c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132134", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132134" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e7d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132235", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132235" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e7e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132308", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2132308" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e7f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132606", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2132606" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e80" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132641", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132641" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e81" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301132913", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132913" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e82" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133053", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133053" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e83" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133433", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133433" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e84" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133716", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133716" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e85" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133821", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2133821" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e86" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140905", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140905" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e87" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134116", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134116" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e88" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134247", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134247" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e89" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134431", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134431" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e8a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134505", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134505" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e8b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134607", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134607" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e8c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134731", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134731" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e8d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303135016", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135016" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e8e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303135208", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135208" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e8f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303135223", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135223" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e90" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135524", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135524" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e91" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136306", + "neg_nil_inc_fam_households": 7, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2136306" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e92" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136528", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136528" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e93" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136813", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2136813" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e94" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136827", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136827" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e95" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137029", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137029" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e96" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137513", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137513" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e97" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137624", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137624" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e98" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138022", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138022" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e99" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138142", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138142" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e9a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138310", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138310" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e9b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138522", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2138522" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e9c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21602141112", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2141112" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e9d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21602141205", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141205" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e9e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21602141313", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141313" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5e9f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139029", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2139029" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ea0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139412", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139412" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ea1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502139517", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139517" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ea2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502139915", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2139915" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ea3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140009", + "neg_nil_inc_fam_households": 11, + "negative_nil_income_tot": 11, + "sa1_7dig16": "2140009" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ea4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21602141324", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141324" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ea5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21602141336", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2141336" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ea6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21602141402", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2141402" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ea7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141524", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2141524" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ea8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141702", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141702" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ea9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141919", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2141919" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5eaa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144302", + "neg_nil_inc_fam_households": 9, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2144302" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5eab" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143002", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143002" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5eac" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143117", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143117" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ead" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147819", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147819" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5eae" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143214", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2143214" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5eaf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143308", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143308" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5eb0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143509", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143509" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5eb1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143607", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143607" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5eb2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143613", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2143613" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5eb3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003143811", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143811" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5eb4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144107", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144107" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5eb5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144334", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2144334" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5eb6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144502", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 11, + "sa1_7dig16": "2144502" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5eb7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144701", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2144701" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5eb8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103145016", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145016" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5eb9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103145125", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2145125" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5eba" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145403", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2145403" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ebb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145428", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2145428" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ebc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145432", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145432" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ebd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203145821", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145821" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ebe" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203145824", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2145824" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ebf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146526", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146526" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ec0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146606", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146606" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ec1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502146939", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146939" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ec2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147906", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147906" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ec3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147418", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147418" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ec4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147521", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2147521" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ec5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147942", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2147942" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ec6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704148029", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2148029" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5ec7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20102100912", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2100912" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5efa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100210", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100210" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5efb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100329", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2100329" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5efc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100420", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2100420" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5efd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20102101005", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101005" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5efe" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100112", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100112" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5eff" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20203103311", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2103311" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f00" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100708", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100708" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f01" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100843", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2100843" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f02" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20102100903", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2100903" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f03" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107911", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2107911" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f04" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201101807", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2101807" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f05" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102217", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2102217" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f06" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102419", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102419" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f07" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102704", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102704" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f08" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102708", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2102708" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f09" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102718", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2102718" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f0a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102722", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2102722" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f0b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102726", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102726" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f0c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20301103515", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2103515" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f0d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103712", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2103712" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f0e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103917", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103917" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f0f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104018", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2104018" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f10" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104140", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2104140" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f11" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104729", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2104729" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f12" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303104811", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104811" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f13" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303104824", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104824" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f14" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107939", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2107939" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f15" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303104911", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104911" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f16" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105007", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105007" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f17" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106313", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2106313" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f18" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106728", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2106728" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f19" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107105", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107105" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f1a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107458", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107458" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f1b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109101", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2109101" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f1c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109428", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109428" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f1d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109525", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2109525" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f1e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109605", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2109605" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f1f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109705", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109705" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f20" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110309", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110309" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f21" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109765", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2109765" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f22" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110534", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2110534" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f23" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110538", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110538" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f24" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110703", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2110703" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f25" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110809", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110809" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f26" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111123", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2111123" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f27" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111230", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111230" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f28" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111239", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111239" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f29" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111444", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2111444" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f2a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111451", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111451" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f2b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604111907", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111907" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f2c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112322", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2112322" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f2d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112328", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 31, + "sa1_7dig16": "2112328" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f2e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112514", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2112514" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f2f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112605", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2112605" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f30" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112622", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2112622" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f31" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113215", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2113215" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f32" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113308", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 14, + "sa1_7dig16": "2113308" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f33" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113339", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2113339" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f34" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113340", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113340" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f35" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113406", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2113406" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f36" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113427", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2113427" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f37" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113435", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113435" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f38" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113519", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113519" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f39" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113734", + "neg_nil_inc_fam_households": 28, + "negative_nil_income_tot": 129, + "sa1_7dig16": "2113734" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f3a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113816", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113816" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f3b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114016", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2114016" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f3c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114022", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114022" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f3d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114428", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114428" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f3e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114454", + "neg_nil_inc_fam_households": 8, + "negative_nil_income_tot": 13, + "sa1_7dig16": "2114454" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f3f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114931", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2114931" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f40" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115020", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115020" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f41" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115610", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2115610" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f42" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116602", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116602" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f43" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116626", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2116626" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f44" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116941", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2116941" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f45" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117013", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117013" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f46" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117014", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117014" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f47" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115418", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115418" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f48" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115504", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115504" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f49" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115512", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115512" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f4a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117817", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117817" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f4b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118326", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118326" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f4c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118526", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2118526" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f4d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118621", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118621" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f4e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119004", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119004" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f4f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119304", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2119304" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f50" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119612", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119612" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f51" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119831", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119831" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f52" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123920", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123920" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f53" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119909", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2119909" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f54" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119927", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119927" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f55" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120321", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120321" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f56" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120422", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120422" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f57" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121206", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121206" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f58" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121323", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2121323" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f59" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122037", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2122037" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f5a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122508", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122508" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f5b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122918", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2122918" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f5c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122929", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122929" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f5d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122942", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122942" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f5e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001123017", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2123017" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f5f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21002123201", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123201" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f60" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21002123211", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123211" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f61" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123606", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2123606" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f62" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123705", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2123705" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f63" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123724", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123724" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f64" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124006", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124006" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f65" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124126", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124126" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f66" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124322", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124322" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f67" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124525", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2124525" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f68" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124547", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124547" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f69" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005125016", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125016" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f6a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21102126137", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2126137" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f6b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21102126206", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126206" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f6c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21102126207", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126207" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f6d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126604", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126604" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f6e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126633", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126633" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f6f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126634", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126634" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f70" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126817", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2126817" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f71" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127037", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2127037" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f72" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127703", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127703" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f73" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127713", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127713" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f74" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128140", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128140" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f75" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128323", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2128323" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f76" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128421", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128421" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f77" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128633", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128633" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f78" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128707", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128707" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f79" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129002", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2129002" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f7a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129105", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2129105" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f7b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129328", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2129328" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f7c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129424", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129424" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f7d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129523", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2129523" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f7e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129915", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129915" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f7f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130005", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2130005" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f80" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130050", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130050" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f81" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130205", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2130205" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f82" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130207", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2130207" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f83" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130313", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130313" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f84" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130430", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2130430" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f85" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130519", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2130519" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f86" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204130921", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130921" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f87" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131130", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131130" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f88" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131611", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2131611" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f89" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131711", + "neg_nil_inc_fam_households": 7, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2131711" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f8a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131728", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131728" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f8b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205131912", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131912" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f8c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205131932", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131932" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f8d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132142", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2132142" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f8e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132151", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132151" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f8f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132239", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132239" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f90" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132624", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132624" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f91" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132642", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2132642" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f92" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133239", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2133239" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f93" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133425", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2133425" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f94" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133912", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133912" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f95" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301134017", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134017" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f96" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134108", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134108" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f97" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134742", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134742" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f98" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134836", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 16, + "sa1_7dig16": "2134836" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f99" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303135013", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135013" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f9a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303135215", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135215" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f9b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303135217", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2135217" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f9c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303135224", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135224" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f9d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135331", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135331" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f9e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135532", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135532" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5f9f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135601", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2135601" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5fa0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135646", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135646" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5fa1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304136001", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136001" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5fa2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136247", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136247" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5fa3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136519", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136519" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5fa4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136625", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136625" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5fa5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136805", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136805" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5fa6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136806", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136806" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5fa7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136825", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136825" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5fa8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136926", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136926" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5fa9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137017", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137017" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5faa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137145", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137145" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5fab" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137211", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137211" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5fac" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137215", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137215" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5fad" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137239", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137239" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5fae" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137512", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137512" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5faf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137924", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2137924" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5fb0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138133", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138133" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5fb1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138207", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2138207" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5fb2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138508", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138508" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5fb3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139225", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2139225" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5fb4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502139615", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2139615" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5fb5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140113", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2140113" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5fb6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140604", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2140604" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5fb7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140628", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140628" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5fb8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140638", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140638" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5fb9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140724", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140724" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5fba" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601141013", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141013" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5fbb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21602141415", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2141415" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5fbc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141641", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141641" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5fbd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142305", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142305" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5fbe" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802142606", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2142606" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5fbf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802142609", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142609" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5fc0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143029", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143029" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5fc1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143212", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2143212" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5fc2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143225", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143225" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5fc3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143306", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143306" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5fc4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143606", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143606" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5fc5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003143843", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2143843" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5fc6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003143848", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143848" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5fc7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144609", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144609" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5fc8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144638", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144638" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5fc9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144803", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144803" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5fca" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103145002", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145002" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5fcb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103145005", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145005" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5fcc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103145037", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145037" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5fcd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147928", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147928" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5fce" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103145112", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2145112" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5fcf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145319", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2145319" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5fd0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145528", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145528" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5fd1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145601", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145601" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5fd2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203145717", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2145717" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5fd3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304146301", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146301" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5fd4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304146312", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146312" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5fd5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146817", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146817" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5fd6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502146902", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146902" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5fd7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502146913", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146913" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5fd8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502146935", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2146935" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5fd9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502146944", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146944" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5fda" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502147031", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147031" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5fdb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147214", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147214" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5fdc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147518", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2147518" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5fdd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604111807", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2111807" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5fde" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003144010", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144010" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5fdf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111127", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111127" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_5fe2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116821", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2116821" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6000" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102402", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102402" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6001" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100124", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100124" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6005" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100216", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2100216" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6006" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100220", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100220" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6007" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100340", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2100340" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6008" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100424", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2100424" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6009" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100437", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100437" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_600a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100442", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2100442" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_600b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20102101014", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101014" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_600c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20102101112", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2101112" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_600d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102231", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102231" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_600e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202103023", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2103023" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_600f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202103108", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103108" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6010" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20301103402", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103402" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6011" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20301103509", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103509" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6012" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103714", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103714" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6013" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103804", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103804" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6014" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103807", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103807" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6015" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111617", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111617" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6016" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104101", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104101" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6017" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104121", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104121" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6018" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104304", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104304" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6019" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104334", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104334" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_601a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104407", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104407" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_601b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104514", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104514" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_601c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104724", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104724" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_601d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604111703", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111703" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_601e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112110", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2112110" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_601f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105041", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105041" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6020" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105314", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2105314" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6021" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105330", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105330" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6022" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105403", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105403" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6023" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105625", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2105625" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6024" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106326", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2106326" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6025" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112206", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 16, + "sa1_7dig16": "2112206" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6026" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106614", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106614" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6027" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107334", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107334" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6028" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107459", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107459" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6029" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108405", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2108405" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_602a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107817", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2107817" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_602b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108129", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108129" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_602c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108402", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2108402" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_602d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109321", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109321" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_602e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109344", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109344" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_602f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108413", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108413" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6030" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108417", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108417" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6031" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503108706", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108706" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6032" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112305", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2112305" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6033" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109357", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2109357" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6034" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109426", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2109426" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6035" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110506", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2110506" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6036" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110606", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110606" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6037" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110701", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110701" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6038" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110832", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110832" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6039" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110922", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2110922" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_603a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111010", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111010" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_603b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111317", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2111317" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_603c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111433", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111433" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_603d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111436", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111436" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_603e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112506", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2112506" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_603f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113004", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113004" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6040" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113356", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113356" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6041" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113602", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 11, + "sa1_7dig16": "2113602" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6042" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607113907", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113907" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6043" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114218", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114218" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6044" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114455", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114455" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6045" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115021", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115021" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6046" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115128", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2115128" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6047" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115129", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115129" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6048" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115506", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115506" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6049" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116716", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116716" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_604a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117203", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117203" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_604b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117408", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2117408" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_604c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117714", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2117714" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_604d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117805", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2117805" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_604e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118318", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118318" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_604f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118401", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118401" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6050" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118512", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118512" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6051" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118601", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118601" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6052" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119122", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119122" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6053" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119438", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2119438" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6054" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119502", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2119502" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6055" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119801", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119801" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6056" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119811", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119811" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6057" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120345", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120345" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6058" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120505", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120505" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6059" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120521", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2120521" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_605a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120523", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2120523" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_605b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120727", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2120727" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_605c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132629", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2132629" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_605d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120749", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120749" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_605e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120818", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120818" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_605f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903120927", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120927" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6060" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903120941", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120941" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6061" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903120948", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120948" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6062" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121111", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121111" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6063" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121525", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2121525" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6064" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904121943", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2121943" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6065" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122018", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2122018" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6066" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122307", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2122307" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6067" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122414", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2122414" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6068" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001123101", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2123101" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6069" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123601", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2123601" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_606a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123925", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123925" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_606b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123936", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123936" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_606c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124338", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124338" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_606d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134623", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134623" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_606e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123701", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123701" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_606f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123706", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2123706" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6070" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123902", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2123902" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6071" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136547", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136547" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6072" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124515", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2124515" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6073" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125425", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125425" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6074" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125509", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125509" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6075" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125719", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125719" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6076" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125932", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125932" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6077" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101126013", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2126013" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6078" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21102126115", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126115" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6079" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21102126227", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126227" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_607a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126328", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126328" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_607b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126533", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126533" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_607c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126719", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2126719" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_607d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126744", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2126744" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_607e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127034", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2127034" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_607f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127202", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2127202" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6080" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127513", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127513" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6081" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128143", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128143" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6082" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129901", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129901" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6083" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130054", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2130054" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6084" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128201", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128201" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6085" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128216", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128216" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6086" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129463", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129463" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6087" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132621", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2132621" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6088" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130131", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2130131" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6089" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130310", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130310" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_608a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130424", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130424" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_608b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130509", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2130509" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_608c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130805", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130805" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_608d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130813", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130813" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_608e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131003", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 13, + "sa1_7dig16": "2131003" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_608f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131104", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2131104" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6090" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131128", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131128" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6091" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131315", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131315" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6092" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131612", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131612" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6093" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131617", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131617" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6094" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131703", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2131703" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6095" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205131911", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2131911" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6096" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205131925", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131925" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6097" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132136", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132136" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6098" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132141", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2132141" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6099" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132146", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132146" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_609a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132329", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2132329" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_609b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132410", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132410" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_609c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132733", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2132733" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_609d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133066", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133066" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_609e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133214", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133214" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_609f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133412", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2133412" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_60a0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133445", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133445" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_60a1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133537", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133537" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_60a2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133923", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133923" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_60a3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301134043", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134043" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_60a4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134619", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134619" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_60a5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134717", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134717" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_60a6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134811", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2134811" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_60a7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303135014", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135014" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_60a8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303135107", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2135107" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_60a9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135510", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135510" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_60aa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135704", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135704" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_60ab" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135708", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2135708" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_60ac" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135832", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135832" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_60ad" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304136004", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136004" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_60ae" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136111", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136111" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_60af" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136623", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136623" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_60b0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136801", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2136801" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_60b1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136904", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136904" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_60b2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137225", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137225" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_60b3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137329", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137329" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_60b4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137515", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137515" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_60b5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136513", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2136513" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_60b6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137532", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137532" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_60b7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137606", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137606" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_60b8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138012", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2138012" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_60b9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138019", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138019" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_60ba" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138331", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2138331" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_60bb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138339", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2138339" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_60bc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601141003", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141003" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_60bd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138503", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138503" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_60be" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138543", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138543" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_60bf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139028", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139028" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_60c0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502139903", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139903" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_60c1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140021", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140021" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_60c2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140111", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2140111" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_60c3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140308", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2140308" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_60c4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21602141115", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141115" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_60c5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141514", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141514" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_60c6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141619", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2141619" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_60c7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141730", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2141730" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_60c8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141750", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141750" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_60c9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141929", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141929" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_60ca" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702142417", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2142417" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_60cb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143028", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143028" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_60cc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143305", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143305" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_60cd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144105", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144105" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_60ce" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144634", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2144634" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_60cf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145424", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2145424" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_60d0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203145719", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2145719" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_60d1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203145818", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145818" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_60d2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204145915", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2145915" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_60d3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304146201", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146201" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_60d4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304146344", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146344" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_60d5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146503", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2146503" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_60d6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146816", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146816" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_60d7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502146907", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2146907" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_60d8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147107", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2147107" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_60d9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147201", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147201" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_60da" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147210", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147210" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_60db" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147938", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147938" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_60dc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704148009", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2148009" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_60dd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112316", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2112316" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_60de" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111204", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2111204" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_60df" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117707", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117707" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6104" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117722", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117722" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6105" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117748", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117748" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6106" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117921", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117921" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6107" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802118104", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2118104" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6108" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100119", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100119" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_610c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100334", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2100334" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_610d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100703", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2100703" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_610e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20103101604", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101604" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_610f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201101816", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2101816" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6110" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102016", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102016" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6111" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102023", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102023" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6112" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102214", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2102214" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6113" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102519", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102519" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6114" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104721", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2104721" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6115" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102709", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102709" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6116" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202103111", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2103111" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6117" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20203103303", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103303" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6118" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20203103320", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103320" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6119" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20203103322", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103322" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_611a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20301103408", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2103408" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_611b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103716", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2103716" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_611c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103850", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103850" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_611d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104103", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104103" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_611e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104712", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104712" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_611f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105101", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2105101" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6120" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105107", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2105107" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6121" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105521", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105521" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6122" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105605", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2105605" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6123" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106304", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106304" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6124" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110123", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110123" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6125" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106701", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106701" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6126" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107409", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2107409" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6127" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107503", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2107503" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6128" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107707", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107707" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6129" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110537", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110537" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_612a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110614", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2110614" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_612b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110709", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2110709" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_612c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110807", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110807" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_612d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108135", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108135" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_612e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108612", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2108612" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_612f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109303", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2109303" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6130" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109811", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109811" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6131" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110114", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2110114" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6132" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111221", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2111221" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6133" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111316", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111316" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6134" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111457", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111457" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6135" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112233", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 16, + "sa1_7dig16": "2112233" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6136" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112306", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2112306" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6137" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112319", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2112319" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6138" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112321", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2112321" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6139" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112330", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2112330" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_613a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112507", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2112507" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_613b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605112815", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2112815" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_613c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605112909", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2112909" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_613d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113424", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2113424" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_613e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113620", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113620" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_613f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113722", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2113722" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6140" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113806", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2113806" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6141" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607113902", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113902" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6142" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114111", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114111" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6143" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114433", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114433" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6144" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115105", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115105" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6145" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115216", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115216" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6146" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115231", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2115231" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6147" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117625", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2117625" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6148" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115712", + "neg_nil_inc_fam_households": 14, + "negative_nil_income_tot": 11, + "sa1_7dig16": "2115712" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6149" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115731", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2115731" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_614a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115910", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115910" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_614b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116414", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2116414" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_614c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117112", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117112" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_614d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117207", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117207" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_614e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117235", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117235" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_614f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117319", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117319" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6150" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117446", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2117446" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6151" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119102", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119102" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6152" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119431", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119431" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6153" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119516", + "neg_nil_inc_fam_households": 8, + "negative_nil_income_tot": 71, + "sa1_7dig16": "2119516" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6154" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119546", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119546" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6155" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119744", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119744" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6156" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120220", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120220" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6157" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120804", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120804" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6158" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120810", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120810" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6159" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904121914", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2121914" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_615a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123722", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2123722" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_615b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122040", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122040" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_615c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122325", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122325" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_615d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122418", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122418" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_615e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122936", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122936" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_615f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001123108", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2123108" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6160" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123727", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2123727" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6161" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123901", + "neg_nil_inc_fam_households": 7, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2123901" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6162" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21002123516", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123516" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6163" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123704", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2123704" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6164" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128418", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2128418" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6165" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123903", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2123903" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6166" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124108", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124108" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6167" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124125", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124125" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6168" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124219", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2124219" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6169" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124508", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124508" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_616a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124927", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124927" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_616b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125602", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125602" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_616c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129446", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129446" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_616d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125633", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125633" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_616e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21102126223", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126223" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_616f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126516", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126516" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6170" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127002", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2127002" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6171" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127033", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127033" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6172" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127318", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2127318" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6173" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128517", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128517" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6174" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127411", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127411" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6175" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127612", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127612" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6176" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127817", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127817" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6177" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127907", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127907" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6178" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128107", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2128107" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6179" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128125", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128125" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_617a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128924", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128924" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_617b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128931", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128931" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_617c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128933", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128933" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_617d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129011", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2129011" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_617e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129353", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129353" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_617f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129415", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2129415" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6180" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129443", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2129443" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6181" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129448", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2129448" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6182" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129509", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129509" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6183" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129716", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2129716" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6184" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129917", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129917" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6185" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130134", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130134" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6186" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130243", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130243" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6187" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130402", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130402" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6188" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130533", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130533" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6189" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131005", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2131005" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_618a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131162", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131162" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_618b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131436", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131436" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_618c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131739", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131739" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_618d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132319", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132319" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_618e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132436", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2132436" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_618f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301134004", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134004" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6190" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134225", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2134225" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6191" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134503", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134503" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6192" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132507", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132507" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6193" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133033", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133033" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6194" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133109", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133109" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6195" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133213", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133213" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6196" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133840", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133840" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6197" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134621", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134621" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6198" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134626", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134626" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6199" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134705", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134705" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_619a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134732", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134732" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_619b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303135116", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135116" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_619c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303135123", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135123" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_619d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135650", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2135650" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_619e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304136021", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136021" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_619f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304136026", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2136026" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_61a0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136102", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136102" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_61a1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136222", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136222" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_61a2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136539", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136539" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_61a3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136626", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136626" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_61a4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136628", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136628" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_61a5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136804", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136804" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_61a6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141706", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141706" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_61a7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136812", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136812" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_61a8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136910", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136910" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_61a9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137052", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137052" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_61aa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137131", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2137131" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_61ab" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137242", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2137242" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_61ac" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137315", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137315" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_61ad" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137325", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137325" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_61ae" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137806", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137806" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_61af" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138023", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138023" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_61b0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138126", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138126" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_61b1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139413", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139413" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_61b2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502139501", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139501" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_61b3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142024", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142024" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_61b4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142116", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142116" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_61b5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142125", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142125" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_61b6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502139614", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2139614" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_61b7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502139909", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139909" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_61b8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140121", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140121" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_61b9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140615", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140615" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_61ba" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140629", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140629" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_61bb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802142618", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2142618" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_61bc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802142720", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2142720" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_61bd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143130", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2143130" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_61be" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003143822", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2143822" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_61bf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003143906", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2143906" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_61c0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144306", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144306" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_61c1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144639", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144639" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_61c2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103145204", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145204" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_61c3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145316", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145316" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_61c4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145318", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2145318" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_61c5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145602", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2145602" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_61c6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203145730", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2145730" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_61c7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146501", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2146501" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_61c8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146515", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146515" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_61c9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146546", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2146546" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_61ca" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146616", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146616" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_61cb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502146916", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146916" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_61cc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502146921", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146921" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_61cd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502146925", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2146925" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_61ce" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147302", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147302" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_61cf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147822", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2147822" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_61d0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112618", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 29, + "sa1_7dig16": "2112618" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_61f1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100107", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2100107" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_61f2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100205", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2100205" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_61f3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100211", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100211" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_61f4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100709", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100709" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_61f5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100827", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2100827" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_61f6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102012", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2102012" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_61f7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103857", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2103857" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_61f8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104230", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104230" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_61f9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104326", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104326" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_61fa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104622", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104622" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_61fb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112623", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 15, + "sa1_7dig16": "2112623" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_61fc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102223", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2102223" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_61fd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102237", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102237" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_61fe" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605112828", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 11, + "sa1_7dig16": "2112828" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_61ff" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605112906", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2112906" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6200" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202103004", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103004" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6201" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20203103201", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2103201" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6202" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104733", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104733" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6203" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104738", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2104738" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6204" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105105", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2105105" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6205" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105209", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2105209" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6206" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113013", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113013" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6207" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303104908", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104908" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6208" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105051", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2105051" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6209" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108128", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108128" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_620a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121318", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121318" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_620b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105401", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2105401" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_620c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105621", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105621" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_620d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105632", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105632" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_620e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105807", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2105807" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_620f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106302", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106302" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6210" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110846", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110846" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6211" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111011", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111011" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6212" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106702", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2106702" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6213" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403106916", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106916" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6214" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107436", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107436" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6215" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111014", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111014" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6216" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107506", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107506" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6217" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107509", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2107509" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6218" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107701", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107701" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6219" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107908", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107908" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_621a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108616", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108616" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_621b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109201", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109201" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_621c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109313", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109313" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_621d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109343", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109343" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_621e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109408", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2109408" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_621f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109509", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109509" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6220" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109511", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2109511" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6221" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109512", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2109512" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6222" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109633", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2109633" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6223" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111148", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111148" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6224" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111431", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111431" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6225" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110104", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110104" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6226" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110207", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110207" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6227" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110326", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110326" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6228" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110523", + "neg_nil_inc_fam_households": 7, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2110523" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6229" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110550", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110550" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_622a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110613", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110613" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_622b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113353", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2113353" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_622c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113516", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2113516" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_622d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113804", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2113804" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_622e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114601", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114601" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_622f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115038", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115038" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6230" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115041", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115041" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6231" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115516", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115516" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6232" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115537", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2115537" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6233" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116117", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116117" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6234" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116513", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 23, + "sa1_7dig16": "2116513" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6235" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116702", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2116702" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6236" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116802", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116802" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6237" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116917", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116917" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6238" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117219", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2117219" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6239" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117321", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117321" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_623a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117609", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117609" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_623b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117637", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 11, + "sa1_7dig16": "2117637" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_623c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117738", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117738" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_623d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118319", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2118319" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_623e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118504", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2118504" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_623f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119006", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119006" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6240" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119115", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2119115" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6241" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119414", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2119414" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6242" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119427", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119427" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6243" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119515", + "neg_nil_inc_fam_households": 7, + "negative_nil_income_tot": 61, + "sa1_7dig16": "2119515" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6244" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119912", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2119912" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6245" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119920", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119920" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6246" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119932", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2119932" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6247" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120005", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120005" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6248" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121404", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2121404" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6249" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145518", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2145518" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_624a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120019", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2120019" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_624b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120335", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120335" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_624c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120401", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2120401" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_624d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120815", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120815" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_624e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903120954", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120954" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_624f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122008", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122008" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6250" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122024", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122024" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6251" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122311", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2122311" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6252" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122614", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122614" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6253" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122801", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122801" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6254" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122931", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2122931" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6255" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21002123302", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123302" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6256" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123729", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2123729" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6257" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123914", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2123914" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6258" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124030", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2124030" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6259" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124142", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124142" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_625a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124220", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124220" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_625b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124509", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124509" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_625c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124607", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124607" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_625d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124633", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2124633" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_625e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124703", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124703" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_625f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124917", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124917" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6260" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125411", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2125411" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6261" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101126016", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126016" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6262" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101126045", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2126045" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6263" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21102126114", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126114" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6264" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126534", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126534" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6265" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126710", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2126710" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6266" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127012", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2127012" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6267" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128422", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2128422" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6268" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146518", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2146518" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6269" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127409", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127409" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_626a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127613", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127613" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_626b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127801", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127801" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_626c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128224", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128224" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_626d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128420", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2128420" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_626e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129345", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129345" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_626f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128641", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128641" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6270" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128802", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128802" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6271" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129322", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2129322" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6272" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129414", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129414" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6273" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129417", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129417" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6274" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130503", + "neg_nil_inc_fam_households": 7, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2130503" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6275" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130602", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130602" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6276" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131009", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2131009" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6277" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131024", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131024" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6278" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131228", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131228" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6279" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131233", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131233" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_627a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131237", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131237" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_627b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131431", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2131431" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_627c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131450", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131450" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_627d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131453", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2131453" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_627e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132009", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132009" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_627f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132132", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132132" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6280" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133205", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133205" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6281" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135637", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135637" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6282" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133439", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133439" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6283" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133519", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133519" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6284" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133845", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133845" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6285" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301134003", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2134003" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6286" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134301", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134301" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6287" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134406", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2134406" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6288" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134430", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2134430" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6289" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134614", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134614" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_628a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134722", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134722" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_628b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143021", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143021" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_628c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135703", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2135703" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_628d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135804", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2135804" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_628e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136207", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136207" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_628f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136237", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136237" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6290" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136548", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136548" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6291" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137016", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137016" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6292" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137021", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2137021" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6293" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137101", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137101" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6294" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103145011", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145011" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6295" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137153", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2137153" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6296" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137408", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137408" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6297" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137416", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137416" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6298" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137519", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2137519" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6299" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138446", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138446" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_629a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138544", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138544" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_629b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501138828", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138828" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_629c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501138833", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138833" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_629d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139103", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2139103" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_629e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139201", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2139201" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_629f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140010", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140010" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_62a0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140728", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2140728" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_62a1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141729", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2141729" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_62a2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141745", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2141745" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_62a3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145301", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145301" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_62a4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702142410", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2142410" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_62a5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702142525", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142525" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_62a6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802142724", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2142724" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_62a7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902142803", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142803" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_62a8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143632", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143632" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_62a9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143703", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2143703" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_62aa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003143825", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2143825" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_62ab" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003143842", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2143842" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_62ac" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144119", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144119" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_62ad" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144205", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144205" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_62ae" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145416", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145416" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_62af" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145436", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145436" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_62b0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145506", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145506" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_62b1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144301", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144301" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_62b2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144417", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2144417" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_62b3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144724", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2144724" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_62b4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144829", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2144829" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_62b5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145626", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145626" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_62b6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203145708", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2145708" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_62b7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203145832", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2145832" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_62b8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304146208", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146208" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_62b9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304146315", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146315" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_62ba" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146542", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146542" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_62bb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502147023", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147023" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_62bc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147209", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2147209" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_62bd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147218", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147218" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_62be" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304146330", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2146330" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_62bf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146402", + "neg_nil_inc_fam_households": 11, + "negative_nil_income_tot": 22, + "sa1_7dig16": "2146402" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_62c0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704148003", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2148003" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_62c1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704148030", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2148030" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_62c2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141812", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141812" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_62dc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113220", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113220" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_62dd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21102126228", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126228" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_62e7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111302", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2111302" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_62ea" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110851", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110851" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_62eb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141922", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141922" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_62ec" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111455", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111455" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_62ed" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802118221", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2118221" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_62ee" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111322", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111322" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_62f1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100102", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100102" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_62f2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100122", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100122" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_62f3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100446", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100446" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_62f4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100505", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100505" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_62f5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100508", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100508" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_62f6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20103101612", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101612" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_62f7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201101820", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101820" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_62f8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102017", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102017" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_62f9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102604", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102604" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_62fa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102617", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102617" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_62fb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102811", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2102811" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_62fc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111411", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111411" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_62fd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20301103505", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103505" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_62fe" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103707", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 12, + "sa1_7dig16": "2103707" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_62ff" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103913", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103913" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6300" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104024", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2104024" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6301" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104133", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104133" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6302" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104149", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104149" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6303" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104338", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104338" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6304" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114448", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2114448" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6305" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104415", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104415" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6306" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104613", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104613" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6307" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104618", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104618" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6308" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303104820", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104820" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6309" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105106", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2105106" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_630a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105202", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105202" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_630b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105307", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2105307" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_630c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105618", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2105618" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_630d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105708", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105708" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_630e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105720", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2105720" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_630f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106310", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106310" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6310" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106605", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106605" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6311" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106646", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2106646" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6312" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109619", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109619" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6313" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110201", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2110201" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6314" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110516", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110516" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6315" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106321", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106321" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6316" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106329", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106329" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6317" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106506", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106506" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6318" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110710", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2110710" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6319" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106715", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106715" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_631a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106731", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2106731" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_631b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403106903", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106903" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_631c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109334", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2109334" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_631d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110856", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110856" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_631e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107106", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2107106" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_631f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107113", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107113" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6320" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109349", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109349" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6321" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109418", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109418" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6322" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107324", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107324" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6323" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107418", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107418" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6324" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107423", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107423" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6325" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109515", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2109515" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6326" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109613", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2109613" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6327" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111105", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111105" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6328" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107710", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107710" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6329" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107917", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2107917" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_632a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108611", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108611" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_632b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503108715", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2108715" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_632c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109006", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109006" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_632d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109302", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109302" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_632e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111242", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111242" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_632f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111412", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111412" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6330" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111449", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2111449" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6331" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112128", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2112128" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6332" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112217", + "neg_nil_inc_fam_households": 11, + "negative_nil_income_tot": 40, + "sa1_7dig16": "2112217" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6333" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112511", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2112511" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6334" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605112814", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2112814" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6335" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113436", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2113436" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6336" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113515", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113515" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6337" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113637", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113637" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6338" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113732", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2113732" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6339" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114209", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2114209" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_633a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114915", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114915" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_633b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114919", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2114919" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_633c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115005", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115005" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_633d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115214", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115214" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_633e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115733", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115733" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_633f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115917", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2115917" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6340" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702116016", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2116016" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6341" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116104", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2116104" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6342" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117740", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2117740" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6343" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116109", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116109" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6344" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116343", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116343" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6345" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116413", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116413" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6346" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116419", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2116419" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6347" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116819", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116819" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6348" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116942", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116942" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6349" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117016", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117016" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_634a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117218", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2117218" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_634b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117317", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117317" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_634c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117604", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117604" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_634d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117720", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117720" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_634e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117841", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117841" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_634f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118517", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118517" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6350" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118523", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118523" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6351" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118607", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118607" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6352" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118614", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118614" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6353" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118850", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118850" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6354" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118918", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2118918" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6355" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119550", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119550" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6356" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119704", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119704" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6357" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120302", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120302" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6358" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120304", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120304" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6359" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122332", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2122332" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_635a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120320", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120320" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_635b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120414", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120414" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_635c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120520", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2120520" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_635d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120733", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2120733" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_635e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120755", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120755" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_635f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120834", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120834" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6360" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903120926", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120926" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6361" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122339", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122339" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6362" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903120947", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120947" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6363" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121308", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121308" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6364" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121519", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2121519" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6365" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904121905", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121905" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6366" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122007", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122007" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6367" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122127", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2122127" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6368" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122424", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122424" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6369" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122521", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122521" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_636a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122955", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122955" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_636b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124121", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124121" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_636c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124149", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2124149" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_636d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124321", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124321" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_636e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124501", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124501" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_636f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122906", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2122906" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6370" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122930", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2122930" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6371" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132125", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132125" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6372" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21002123407", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123407" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6373" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21002123511", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123511" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6374" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132242", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2132242" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6375" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124534", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124534" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6376" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125422", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125422" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6377" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125601", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2125601" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6378" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125605", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125605" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6379" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125814", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125814" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_637a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21102126213", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126213" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_637b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128115", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128115" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_637c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126517", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126517" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_637d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126518", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126518" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_637e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126701", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126701" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_637f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104126904", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2126904" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6380" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104126921", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2126921" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6381" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127223", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2127223" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6382" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127314", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2127314" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6383" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127316", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127316" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6384" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127610", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127610" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6385" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127630", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2127630" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6386" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128316", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128316" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6387" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129458", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129458" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6388" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129714", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2129714" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6389" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130004", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2130004" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_638a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130122", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130122" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_638b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130211", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2130211" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_638c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130311", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130311" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_638d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131416", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131416" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_638e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131435", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2131435" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_638f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131740", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2131740" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6390" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132115", + "neg_nil_inc_fam_households": 7, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2132115" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6391" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132322", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2132322" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6392" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132325", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132325" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6393" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132419", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2132419" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6394" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132506", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132506" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6395" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132535", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2132535" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6396" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132611", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2132611" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6397" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301132903", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132903" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6398" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301132918", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132918" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6399" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133406", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133406" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_639a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133508", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133508" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_639b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133708", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133708" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_639c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133842", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133842" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_639d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134236", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134236" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_639e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134704", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134704" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_639f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134817", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134817" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_63a0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303135002", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2135002" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_63a1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135324", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2135324" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_63a2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135610", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2135610" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_63a3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135718", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135718" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_63a4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304136014", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136014" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_63a5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136235", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2136235" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_63a6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136501", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136501" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_63a7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136607", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136607" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_63a8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137002", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137002" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_63a9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137055", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137055" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_63aa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137105", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137105" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_63ab" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139026", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139026" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_63ac" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137316", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137316" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_63ad" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138046", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2138046" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_63ae" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138047", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2138047" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_63af" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138121", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138121" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_63b0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138221", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138221" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_63b1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138238", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138238" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_63b2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138332", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2138332" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_63b3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501138815", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138815" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_63b4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141737", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141737" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_63b5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141757", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141757" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_63b6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502139603", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139603" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_63b7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502139912", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2139912" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_63b8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140206", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140206" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_63b9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140906", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2140906" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_63ba" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141518", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141518" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_63bb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141709", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141709" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_63bc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702142429", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142429" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_63bd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702142529", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2142529" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_63be" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802142707", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2142707" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_63bf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143007", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2143007" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_63c0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143510", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143510" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_63c1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143512", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143512" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_63c2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003143809", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143809" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_63c3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003143823", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143823" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_63c4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003143851", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2143851" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_63c5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144203", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144203" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_63c6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145619", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2145619" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_63c7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203145834", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2145834" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_63c8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144321", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2144321" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_63c9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144612", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144612" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_63ca" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144622", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144622" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_63cb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144637", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144637" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_63cc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144804", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144804" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_63cd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144819", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144819" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_63ce" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204146007", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146007" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_63cf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304146211", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146211" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_63d0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304146307", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146307" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_63d1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146531", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146531" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_63d2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146532", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146532" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_63d3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147206", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147206" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_63d4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132302", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132302" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_63d5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111330", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111330" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_63d6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114310", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114310" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_63f5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127207", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127207" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6400" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100213", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100213" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6401" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902142816", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2142816" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6402" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117310", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117310" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6403" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147417", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147417" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6404" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147516", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2147516" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6405" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100504", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2100504" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6407" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147606", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2147606" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6408" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20102100904", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100904" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6409" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20103101510", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101510" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_640a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201101830", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101830" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_640b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102038", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2102038" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_640c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102225", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2102225" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_640d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102230", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2102230" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_640e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102238", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102238" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_640f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102506", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102506" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6410" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102715", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2102715" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6411" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202103014", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103014" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6412" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20203103211", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103211" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6413" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20301103611", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103611" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6414" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103721", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2103721" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6415" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103813", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2103813" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6416" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103828", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103828" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6417" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104004", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2104004" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6418" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104123", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104123" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6419" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114837", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114837" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_641a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104141", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104141" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_641b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104322", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104322" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_641c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106624", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106624" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_641d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604111801", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2111801" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_641e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104728", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104728" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_641f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105047", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105047" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6420" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105324", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105324" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6421" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105406", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2105406" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6422" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105506", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105506" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6423" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401106010", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2106010" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6424" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106408", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2106408" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6425" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106644", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106644" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6426" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403106806", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106806" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6427" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403106807", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2106807" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6428" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107220", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107220" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6429" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107337", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107337" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_642a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109727", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109727" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_642b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109752", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109752" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_642c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604111903", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111903" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_642d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112338", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2112338" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_642e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108519", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108519" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_642f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108617", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108617" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6430" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109812", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109812" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6431" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110121", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110121" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6432" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110313", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110313" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6433" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110705", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110705" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6434" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503108919", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2108919" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6435" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110727", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110727" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6436" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110919", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2110919" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6437" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111139", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111139" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6438" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109306", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2109306" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6439" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109429", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109429" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_643a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109616", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2109616" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_643b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111458", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111458" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_643c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605112821", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2112821" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_643d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113409", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113409" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_643e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113432", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113432" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_643f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113622", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2113622" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6440" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113807", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113807" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6441" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114204", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2114204" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6442" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114412", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114412" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6443" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114608", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114608" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6444" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114941", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2114941" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6445" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115007", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115007" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6446" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115623", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2115623" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6447" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117705", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117705" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6448" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117822", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117822" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6449" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115701", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115701" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_644a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115933", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2115933" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_644b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116527", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2116527" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_644c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116608", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116608" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_644d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116722", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116722" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_644e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116820", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116820" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_644f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117211", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117211" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6450" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117237", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2117237" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6451" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117331", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117331" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6452" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117610", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117610" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6453" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117828", + "neg_nil_inc_fam_households": 8, + "negative_nil_income_tot": 12, + "sa1_7dig16": "2117828" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6454" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118803", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2118803" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6455" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119005", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2119005" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6456" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119301", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119301" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6457" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119405", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119405" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6458" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119601", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2119601" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6459" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119701", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2119701" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_645a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119803", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119803" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_645b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121304", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2121304" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_645c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132012", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2132012" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_645d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119814", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119814" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_645e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119819", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119819" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_645f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119929", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2119929" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6460" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120109", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2120109" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6461" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120111", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120111" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6462" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120701", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120701" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6463" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120752", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2120752" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6464" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903120915", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120915" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6465" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904121901", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2121901" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6466" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904121915", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2121915" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6467" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134912", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134912" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6468" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121105", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2121105" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6469" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121212", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121212" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_646a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122004", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2122004" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_646b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122352", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122352" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_646c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122515", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122515" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_646d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122615", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122615" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_646e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122808", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122808" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_646f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122920", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2122920" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6470" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124008", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124008" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6471" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124013", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124013" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6472" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132120", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2132120" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6473" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124014", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2124014" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6474" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124146", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124146" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6475" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124151", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2124151" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6476" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124208", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2124208" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6477" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124223", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2124223" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6478" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124319", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124319" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6479" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125404", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125404" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_647a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128511", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128511" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_647b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128608", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128608" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_647c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125424", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2125424" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_647d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125901", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2125901" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_647e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101126017", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126017" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_647f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126631", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2126631" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6480" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127217", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2127217" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6481" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127523", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127523" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6482" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127525", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127525" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6483" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128501", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128501" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6484" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128622", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2128622" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6485" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130045", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2130045" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6486" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132231", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2132231" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6487" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128722", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2128722" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6488" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128822", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128822" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6489" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129419", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129419" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_648a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129705", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129705" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_648b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130002", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130002" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_648c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103830", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2103830" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_648d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130202", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130202" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_648e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130811", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2130811" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_648f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131143", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2131143" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6490" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131161", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131161" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6491" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131419", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2131419" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6492" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131456", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131456" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6493" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131747", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2131747" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6494" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132613", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 12, + "sa1_7dig16": "2132613" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6495" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301132806", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132806" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6496" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301132907", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132907" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6497" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301132916", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132916" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6498" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133055", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133055" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6499" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133060", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133060" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_649a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133117", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2133117" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_649b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133211", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133211" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_649c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134830", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2134830" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_649d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133216", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133216" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_649e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133424", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133424" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_649f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133438", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133438" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_64a0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133614", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2133614" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_64a1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133615", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133615" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_64a2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133812", + "neg_nil_inc_fam_households": 8, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2133812" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_64a3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134101", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134101" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_64a4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134134", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2134134" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_64a5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134429", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134429" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_64a6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134709", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2134709" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_64a7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134713", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134713" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_64a8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134914", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134914" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_64a9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303135227", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135227" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_64aa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135814", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135814" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_64ab" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135816", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2135816" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_64ac" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135829", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135829" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_64ad" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304136012", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136012" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_64ae" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304136037", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136037" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_64af" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136106", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136106" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_64b0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136147", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136147" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_64b1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136242", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2136242" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_64b2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136815", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136815" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_64b3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136817", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2136817" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_64b4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136929", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136929" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_64b5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136938", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136938" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_64b6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137004", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137004" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_64b7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137311", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137311" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_64b8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137435", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137435" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_64b9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137442", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137442" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_64ba" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137714", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2137714" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_64bb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137813", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137813" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_64bc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138011", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2138011" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_64bd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138223", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138223" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_64be" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141715", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141715" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_64bf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138536", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138536" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_64c0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501138603", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138603" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_64c1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501138806", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138806" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_64c2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501138816", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138816" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_64c3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501138824", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138824" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_64c4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139015", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139015" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_64c5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139207", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2139207" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_64c6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502139814", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139814" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_64c7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140303", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140303" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_64c8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140418", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140418" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_64c9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141511", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141511" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_64ca" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141614", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141614" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_64cb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141615", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141615" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_64cc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141624", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141624" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_64cd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141644", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2141644" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_64ce" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142001", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142001" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_64cf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142021", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142021" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_64d0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142109", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2142109" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_64d1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702142423", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2142423" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_64d2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802142717", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2142717" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_64d3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902142905", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142905" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_64d4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143132", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143132" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_64d5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143218", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2143218" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_64d6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143322", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2143322" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_64d7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143524", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2143524" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_64d8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144325", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2144325" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_64d9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144505", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2144505" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_64da" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144719", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144719" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_64db" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144802", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2144802" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_64dc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144806", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144806" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_64dd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144822", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144822" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_64de" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145322", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145322" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_64df" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145514", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145514" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_64e0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145530", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2145530" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_64e1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145531", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2145531" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_64e2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204146013", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146013" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_64e3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304146333", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146333" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_64e4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146623", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146623" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_64e5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147307", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147307" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_64e6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147932", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147932" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_64e7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114311", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114311" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_64e8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114402", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114402" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_64e9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114406", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 11, + "sa1_7dig16": "2114406" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_64ea" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114419", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114419" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_64eb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604111709", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2111709" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_64ec" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604111736", + "neg_nil_inc_fam_households": 7, + "negative_nil_income_tot": 160, + "sa1_7dig16": "2111736" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_64ed" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114424", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2114424" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_64ee" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110804", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110804" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_64ef" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904121707", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2121707" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_64f2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112615", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 11, + "sa1_7dig16": "2112615" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6516" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131016", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131016" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6517" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110826", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110826" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_651d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604111706", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 248, + "sa1_7dig16": "2111706" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_651e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604111723", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2111723" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_651f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132210", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2132210" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6520" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116518", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116518" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6521" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132623", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132623" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6522" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116902", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2116902" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6523" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117008", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117008" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6525" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100230", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100230" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6526" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102521", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102521" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6527" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104410", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104410" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6528" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100510", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100510" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6529" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100616", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100616" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_652a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100812", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2100812" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_652b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100826", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2100826" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_652c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20103101613", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2101613" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_652d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201101916", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101916" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_652e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102111", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2102111" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_652f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102235", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102235" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6530" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102610", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102610" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6531" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102820", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102820" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6532" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202103015", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2103015" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6533" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20203103305", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103305" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6534" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103876", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103876" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6535" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103923", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103923" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6536" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103938", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103938" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6537" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104137", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2104137" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6538" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104146", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104146" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6539" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104153", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104153" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_653a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112123", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2112123" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_653b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104535", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2104535" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_653c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303104823", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104823" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_653d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105318", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105318" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_653e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105325", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2105325" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_653f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105917", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105917" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6540" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106404", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106404" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6541" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106717", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106717" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6542" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107322", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107322" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6543" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109410", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109410" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6544" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105604", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105604" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6545" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105803", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105803" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6546" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105902", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105902" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6547" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112216", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2112216" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6548" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108606", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2108606" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6549" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109314", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2109314" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_654a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109336", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2109336" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_654b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109014", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2109014" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_654c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112339", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 23, + "sa1_7dig16": "2112339" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_654d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117019", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2117019" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_654e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109414", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2109414" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_654f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109737", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2109737" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6550" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110203", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110203" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6551" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110306", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110306" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6552" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110412", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110412" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6553" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110611", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110611" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6554" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110612", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110612" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6555" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110107", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2110107" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6556" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110729", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110729" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6557" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110816", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110816" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6558" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112510", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2112510" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6559" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112610", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2112610" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_655a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112702", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2112702" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_655b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113035", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2113035" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_655c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113210", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113210" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_655d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113227", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2113227" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_655e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113230", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 20, + "sa1_7dig16": "2113230" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_655f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113419", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2113419" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6560" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113724", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2113724" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6561" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113831", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2113831" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6562" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114432", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114432" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6563" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114704", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114704" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6564" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114720", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2114720" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6565" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114831", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114831" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6566" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114913", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114913" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6567" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115114", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115114" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6568" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115211", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115211" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6569" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115218", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115218" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_656a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115741", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2115741" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_656b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116105", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116105" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_656c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116202", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116202" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_656d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116219", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116219" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_656e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116409", + "neg_nil_inc_fam_households": 11, + "negative_nil_income_tot": 35, + "sa1_7dig16": "2116409" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_656f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116516", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116516" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6570" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117123", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2117123" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6571" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802118115", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2118115" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6572" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118505", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118505" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6573" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118511", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118511" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6574" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118819", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2118819" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6575" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118910", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118910" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6576" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118923", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118923" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6577" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118924", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118924" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6578" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119023", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119023" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6579" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119602", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119602" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_657a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119730", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2119730" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_657b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119914", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2119914" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_657c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120227", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120227" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_657d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120508", + "neg_nil_inc_fam_households": 9, + "negative_nil_income_tot": 14, + "sa1_7dig16": "2120508" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_657e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120740", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120740" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_657f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903120960", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120960" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6580" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121526", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2121526" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6581" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121001", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121001" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6582" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121406", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2121406" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6583" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904121907", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2121907" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6584" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904121928", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121928" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6585" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904121946", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2121946" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6586" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122027", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122027" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6587" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122305", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2122305" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6588" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122803", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2122803" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6589" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122809", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122809" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_658a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124540", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124540" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_658b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702142511", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2142511" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_658c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122937", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2122937" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_658d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122964", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2122964" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_658e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123921", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2123921" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_658f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123935", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123935" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6590" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124022", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2124022" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6591" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124029", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124029" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6592" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124212", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2124212" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6593" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124527", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124527" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6594" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124610", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124610" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6595" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124701", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124701" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6596" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124705", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124705" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6597" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124902", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124902" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6598" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124930", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124930" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6599" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005125004", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2125004" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_659a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005125006", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2125006" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_659b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137219", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137219" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_659c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005125011", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2125011" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_659d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125502", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2125502" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_659e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125507", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125507" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_659f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125603", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125603" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65a0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125629", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2125629" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65a1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125801", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125801" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65a2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125912", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125912" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65a3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125916", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125916" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65a4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101126011", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2126011" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65a5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21102126108", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2126108" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65a6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126301", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2126301" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65a7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126312", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2126312" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65a8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126313", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126313" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65a9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126315", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2126315" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65aa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126740", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126740" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65ab" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127040", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127040" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65ac" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127305", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2127305" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65ad" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127623", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127623" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65ae" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127708", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2127708" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65af" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127826", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127826" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65b0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128326", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128326" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65b1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128426", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128426" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65b2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128523", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128523" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65b3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128627", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128627" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65b4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128654", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2128654" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65b5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128913", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2128913" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65b6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128940", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128940" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65b7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129017", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2129017" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65b8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129334", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2129334" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65b9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137245", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2137245" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65ba" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129401", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2129401" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65bb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130104", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2130104" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65bc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130239", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2130239" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65bd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130631", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130631" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65be" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131160", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131160" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65bf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131246", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2131246" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65c0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131406", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131406" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65c1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205131916", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131916" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65c2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132005", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 28, + "sa1_7dig16": "2132005" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65c3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132010", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2132010" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65c4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132113", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132113" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65c5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132220", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2132220" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65c6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132314", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132314" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65c7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132333", + "neg_nil_inc_fam_households": 11, + "negative_nil_income_tot": 11, + "sa1_7dig16": "2132333" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65c8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132616", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2132616" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65c9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132620", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132620" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65ca" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132626", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132626" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65cb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132643", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132643" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65cc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132652", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132652" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65cd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301132810", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132810" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65ce" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133316", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133316" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65cf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902142809", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2142809" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65d0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133823", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2133823" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65d1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133911", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133911" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65d2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134229", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2134229" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65d3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134513", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134513" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65d4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134601", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134601" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65d5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134612", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2134612" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65d6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134743", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2134743" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65d7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134922", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2134922" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65d8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303135209", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2135209" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65d9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135611", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135611" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65da" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136138", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136138" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65db" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147920", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147920" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65dc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136146", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2136146" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65dd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136208", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136208" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65de" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136520", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136520" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65df" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136551", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2136551" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65e0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136557", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136557" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65e1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136916", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136916" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65e2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137034", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137034" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65e3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137149", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137149" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65e4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137321", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137321" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65e5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137322", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137322" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65e6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137429", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137429" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65e7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137928", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137928" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65e8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902142832", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2142832" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65e9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138005", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138005" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65ea" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138006", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138006" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65eb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138041", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138041" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65ec" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138219", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2138219" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65ed" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142012", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142012" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65ee" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138128", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138128" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65ef" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141923", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141923" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65f0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138226", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138226" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65f1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138304", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138304" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65f2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138329", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2138329" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65f3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138547", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138547" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65f4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140115", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140115" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65f5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140122", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2140122" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65f6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141927", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141927" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65f7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140519", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2140519" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65f8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140808", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140808" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65f9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21602141206", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141206" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65fa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21602141316", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141316" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65fb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141701", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141701" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65fc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143402", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143402" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65fd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143418", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143418" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65fe" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003143813", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143813" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_65ff" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003143836", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143836" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6600" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003143904", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143904" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6601" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003144007", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144007" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6602" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003144015", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2144015" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6603" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144112", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2144112" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6604" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144903", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2144903" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6605" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103145032", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145032" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6606" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103145035", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145035" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6607" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145509", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145509" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6608" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203145816", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145816" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6609" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203145833", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2145833" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_660a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304146319", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146319" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_660b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110811", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110811" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_660c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146406", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146406" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_660d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146413", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146413" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_660e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146716", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2146716" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_660f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146727", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146727" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6610" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146827", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146827" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6611" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147502", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2147502" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6612" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147817", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2147817" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6613" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147826", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2147826" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6614" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147827", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147827" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6615" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147923", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147923" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6616" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147951", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2147951" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6617" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111425", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111425" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6618" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111214", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111214" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6631" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111401", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111401" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6632" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111434", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111434" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_663a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102022", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102022" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_663b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133440", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2133440" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_663c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102101", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102101" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6643" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100313", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2100313" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6644" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20102101002", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101002" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6645" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20102101016", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2101016" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6646" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20102101209", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101209" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6647" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20103101403", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101403" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6648" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102505", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2102505" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6649" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102702", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102702" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_664a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20301103411", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103411" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_664b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20301103604", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103604" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_664c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104016", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104016" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_664d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133706", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2133706" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_664e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20103101501", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2101501" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_664f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104312", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104312" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6650" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104532", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104532" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6651" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104739", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104739" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6652" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303104828", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2104828" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6653" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105043", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2105043" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6654" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105320", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2105320" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6655" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108109", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2108109" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6656" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109506", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109506" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6657" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403106914", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106914" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6658" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107210", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107210" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6659" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107310", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107310" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_665a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107316", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107316" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_665b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107907", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107907" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_665c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108205", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108205" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_665d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108422", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108422" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_665e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109111", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109111" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_665f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109618", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2109618" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6660" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109733", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109733" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6661" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109745", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109745" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6662" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109774", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109774" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6663" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110006", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110006" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6664" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110502", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2110502" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6665" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111515", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111515" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6666" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111621", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111621" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6667" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604111911", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111911" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6668" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112113", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2112113" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6669" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112508", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2112508" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_666a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605112902", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2112902" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_666b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605112919", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2112919" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_666c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605112931", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2112931" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_666d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605112934", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2112934" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_666e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113014", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113014" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_666f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113323", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2113323" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6670" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113631", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2113631" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6671" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113712", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2113712" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6672" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114002", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114002" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6673" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114109", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2114109" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6674" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114735", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114735" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6675" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114904", + "neg_nil_inc_fam_households": 8, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2114904" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6676" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115004", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115004" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6677" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115110", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115110" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6678" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115131", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115131" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6679" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115347", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115347" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_667a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115527", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115527" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_667b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115627", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115627" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_667c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702116002", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116002" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_667d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116143", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116143" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_667e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116301", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116301" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_667f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116307", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2116307" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6680" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116520", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2116520" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6681" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116704", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116704" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6682" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116930", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116930" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6683" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117002", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117002" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6684" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117204", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2117204" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6685" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117832", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117832" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6686" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118507", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118507" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6687" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118709", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2118709" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6688" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118911", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2118911" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6689" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119308", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119308" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_668a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21002123409", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123409" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_668b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119444", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119444" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_668c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119738", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119738" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_668d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120013", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120013" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_668e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120241", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120241" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_668f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120403", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2120403" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6690" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120507", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2120507" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6691" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120822", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2120822" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6692" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120837", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120837" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6693" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903120917", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120917" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6694" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129221", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129221" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6695" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121112", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121112" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6696" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121509", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121509" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6697" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121533", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2121533" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6698" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121534", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121534" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6699" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904121933", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2121933" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_669a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122411", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122411" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_669b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122823", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2122823" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_669c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122927", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2122927" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_669d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21002123212", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123212" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_669e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21002123502", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2123502" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_669f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124512", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124512" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66a0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21002123517", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123517" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66a1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123923", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2123923" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66a2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124722", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124722" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66a3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124726", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124726" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66a4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124907", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2124907" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66a5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005125005", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2125005" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66a6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125105", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2125105" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66a7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125124", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125124" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66a8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125606", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125606" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66a9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21102126102", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2126102" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66aa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126307", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126307" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66ab" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128306", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2128306" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66ac" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126318", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126318" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66ad" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126613", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126613" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66ae" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126646", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2126646" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66af" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126723", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126723" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66b0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127015", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127015" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66b1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127032", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2127032" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66b2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127118", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127118" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66b3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127521", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2127521" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66b4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127632", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2127632" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66b5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127635", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2127635" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66b6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128311", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2128311" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66b7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128409", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128409" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66b8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128526", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128526" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66b9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128947", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128947" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66ba" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129136", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2129136" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66bb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129265", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2129265" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66bc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129309", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2129309" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66bd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129426", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129426" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66be" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204130914", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130914" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66bf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131025", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131025" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66c0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129438", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129438" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66c1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129520", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2129520" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66c2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129521", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2129521" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66c3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130033", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2130033" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66c4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130118", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2130118" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66c5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130133", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2130133" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66c6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131134", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2131134" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66c7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131422", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131422" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66c8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131433", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131433" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66c9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130208", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2130208" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66ca" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130314", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2130314" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66cb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130433", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130433" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66cc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130606", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130606" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66cd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130821", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130821" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66ce" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131735", + "neg_nil_inc_fam_households": 8, + "negative_nil_income_tot": 12, + "sa1_7dig16": "2131735" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66cf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131748", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2131748" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66d0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132016", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132016" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66d1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132025", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 24, + "sa1_7dig16": "2132025" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66d2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132102", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132102" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66d3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132143", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132143" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66d4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132533", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132533" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66d5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133013", + "neg_nil_inc_fam_households": 8, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2133013" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66d6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133230", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133230" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66d7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133601", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133601" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66d8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133906", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133906" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66d9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134317", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2134317" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66da" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134414", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134414" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66db" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303135108", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2135108" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66dc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303135128", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2135128" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66dd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135320", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2135320" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66de" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135325", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2135325" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66df" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135519", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135519" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66e0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135522", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135522" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66e1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135652", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2135652" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66e2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135812", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2135812" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66e3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135840", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2135840" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66e4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304136011", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136011" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66e5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136139", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136139" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66e6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136511", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136511" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66e7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136555", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136555" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66e8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137056", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137056" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66e9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137237", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137237" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66ea" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137304", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137304" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66eb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137530", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137530" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66ec" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137535", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137535" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66ed" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137539", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137539" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66ee" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137816", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137816" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66ef" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138001", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138001" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66f0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138311", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2138311" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66f1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138419", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2138419" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66f2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21602141108", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141108" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66f3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141801", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141801" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66f4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143627", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2143627" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66f5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139302", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139302" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66f6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502139803", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139803" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66f7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140008", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2140008" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66f8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140112", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140112" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66f9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140409", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2140409" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66fa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140726", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2140726" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66fb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003143841", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2143841" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66fc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141911", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141911" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66fd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142203", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142203" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66fe" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142213", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142213" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_66ff" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702142530", + "neg_nil_inc_fam_households": 8, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2142530" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6700" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802142601", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142601" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6701" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802142726", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142726" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6702" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143133", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2143133" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6703" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143603", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143603" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6704" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143401", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2143401" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6705" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143403", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143403" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6706" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143429", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2143429" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6707" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144421", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2144421" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6708" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144717", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144717" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6709" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204145903", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2145903" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_670a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146747", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146747" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_670b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146808", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146808" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_670c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146819", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146819" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_670d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502146932", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146932" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_670e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146410", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 12, + "sa1_7dig16": "2146410" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_670f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146506", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2146506" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6710" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146707", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146707" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6711" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147517", + "neg_nil_inc_fam_households": 7, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2147517" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6712" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147811", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147811" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6713" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113344", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113344" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6714" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125421", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2125421" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6715" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133720", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2133720" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6716" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111429", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2111429" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6717" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604111719", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 17, + "sa1_7dig16": "2111719" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6719" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116212", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116212" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6736" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132625", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132625" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6737" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134322", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134322" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6738" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134331", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134331" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6740" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134324", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134324" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6741" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131220", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131220" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6742" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143205", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143205" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6743" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003143844", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2143844" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6744" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109532", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2109532" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6748" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109638", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2109638" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6749" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100118", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100118" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_674a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100201", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2100201" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_674b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100225", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2100225" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_674c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100322", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2100322" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_674d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100325", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100325" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_674e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100341", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100341" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_674f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100509", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100509" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6750" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102205", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102205" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6751" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102312", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102312" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6752" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20301103503", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103503" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6753" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20301103512", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2103512" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6754" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109754", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109754" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6755" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110103", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110103" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6756" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113433", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2113433" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6757" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20301103613", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103613" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6758" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103837", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103837" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6759" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104602", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2104602" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_675a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105905", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2105905" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_675b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106503", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2106503" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_675c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106619", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2106619" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_675d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107212", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107212" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_675e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107315", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107315" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_675f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107454", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107454" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6760" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605112938", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2112938" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6761" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108214", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108214" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6762" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108403", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2108403" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6763" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109012", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2109012" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6764" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109309", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109309" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6765" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109427", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109427" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6766" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109430", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2109430" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6767" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110204", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110204" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6768" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110331", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110331" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6769" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110603", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110603" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_676a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110718", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110718" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_676b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111215", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111215" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_676c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111424", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111424" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_676d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111631", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111631" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_676e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111632", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111632" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_676f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604111811", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111811" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6770" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112111", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2112111" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6771" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112333", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2112333" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6772" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112616", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 11, + "sa1_7dig16": "2112616" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6773" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605112922", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2112922" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6774" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605112924", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2112924" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6775" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114012", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114012" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6776" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114408", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2114408" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6777" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114438", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114438" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6778" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114447", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114447" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6779" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115003", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115003" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_677a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115106", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115106" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_677b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117232", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117232" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_677c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115132", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115132" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_677d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115415", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115415" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_677e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115529", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115529" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_677f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115904", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115904" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6780" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116217", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2116217" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6781" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116407", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2116407" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6782" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116411", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2116411" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6783" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116426", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2116426" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6784" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116921", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116921" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6785" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117020", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2117020" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6786" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117111", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117111" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6787" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117439", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2117439" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6788" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117812", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117812" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6789" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802118102", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2118102" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_678a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802118215", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2118215" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_678b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119342", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119342" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_678c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119415", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119415" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_678d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119446", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119446" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_678e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119618", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2119618" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_678f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119737", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119737" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6790" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904121911", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2121911" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6791" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904121917", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2121917" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6792" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120006", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120006" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6793" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120010", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2120010" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6794" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120018", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2120018" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6795" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120235", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120235" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6796" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120710", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2120710" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6797" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904121938", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121938" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6798" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903120937", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120937" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6799" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903120958", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120958" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_679a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121501", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121501" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_679b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121535", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121535" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_679c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904121609", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2121609" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_679d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904121945", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2121945" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_679e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122034", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2122034" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_679f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122340", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2122340" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67a0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122401", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2122401" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67a1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122805", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122805" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67a2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21002123402", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123402" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67a3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21002123403", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2123403" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67a4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124117", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124117" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67a5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124340", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124340" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67a6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124909", + "neg_nil_inc_fam_households": 9, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2124909" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67a7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125429", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125429" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67a8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125432", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125432" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67a9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125513", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125513" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67aa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125711", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125711" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67ab" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125914", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125914" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67ac" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21102126229", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126229" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67ad" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127221", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127221" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67ae" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127321", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2127321" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67af" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127512", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2127512" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67b0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127607", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2127607" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67b1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127711", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127711" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67b2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127834", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127834" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67b3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128005", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2128005" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67b4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128012", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128012" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67b5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128405", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128405" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67b6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128414", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128414" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67b7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128927", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128927" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67b8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128950", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128950" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67b9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129223", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129223" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67ba" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129422", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129422" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67bb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129712", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129712" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67bc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129905", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129905" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67bd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130047", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130047" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67be" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130108", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130108" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67bf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303135218", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135218" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67c0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130201", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130201" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67c1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130445", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2130445" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67c2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131013", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131013" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67c3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131027", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131027" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67c4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131106", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131106" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67c5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131122", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2131122" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67c6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131146", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131146" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67c7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131310", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131310" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67c8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131405", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2131405" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67c9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131461", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2131461" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67ca" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131712", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2131712" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67cb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131714", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131714" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67cc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131803", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131803" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67cd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205131907", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131907" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67ce" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132123", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132123" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67cf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132250", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132250" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67d0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132644", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132644" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67d1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132702", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132702" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67d2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133922", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133922" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67d3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134234", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134234" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67d4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134313", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134313" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67d5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301132910", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132910" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67d6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133022", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133022" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67d7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133225", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133225" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67d8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133228", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133228" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67d9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133304", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133304" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67da" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133405", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133405" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67db" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133417", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2133417" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67dc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133432", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2133432" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67dd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133513", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2133513" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67de" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133527", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133527" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67df" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135531", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135531" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67e0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304136038", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2136038" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67e1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136225", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2136225" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67e2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136230", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136230" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67e3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136516", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136516" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67e4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136629", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136629" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67e5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137346", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137346" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67e6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137433", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137433" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67e7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137450", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137450" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67e8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137631", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137631" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67e9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138025", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2138025" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67ea" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138044", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138044" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67eb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138217", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138217" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67ec" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138336", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138336" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67ed" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138526", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138526" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67ee" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501138808", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138808" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67ef" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902142920", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2142920" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67f0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139104", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139104" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67f1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139208", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139208" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67f2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140406", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140406" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67f3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140520", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2140520" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67f4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140522", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140522" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67f5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143043", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2143043" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67f6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143119", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2143119" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67f7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143610", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143610" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67f8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003143850", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2143850" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67f9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144204", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2144204" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67fa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502147028", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2147028" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67fb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140637", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140637" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67fc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140911", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140911" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67fd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141507", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141507" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67fe" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141728", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2141728" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_67ff" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141736", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141736" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6800" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702142427", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142427" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6801" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902142805", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142805" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6802" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902142815", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2142815" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6803" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144223", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144223" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6804" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144304", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144304" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6805" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144323", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144323" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6806" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144902", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2144902" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6807" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103145018", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145018" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6808" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103145024", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145024" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6809" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103145033", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2145033" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_680a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203145723", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145723" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_680b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203145803", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2145803" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_680c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204146030", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146030" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_680d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204146031", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146031" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_680e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304146313", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146313" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_680f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304146325", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146325" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6810" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146624", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146624" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6811" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146701", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146701" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6812" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502146911", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2146911" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6813" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502146912", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146912" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6814" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114449", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114449" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6815" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134411", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134411" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6816" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134439", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2134439" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6817" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132003", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 31, + "sa1_7dig16": "2132003" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6818" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134613", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134613" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6819" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105718", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105718" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_681a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401106005", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106005" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_681c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109432", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109432" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_681e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137713", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137713" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6821" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113021", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2113021" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6826" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113034", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2113034" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_682a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104041", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104041" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6837" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131452", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131452" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_683b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116215", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2116215" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6841" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100440", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2100440" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6844" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105714", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 14, + "sa1_7dig16": "2105714" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6845" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100208", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2100208" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6846" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100612", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2100612" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6847" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20102101204", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101204" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6848" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20102101205", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2101205" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6849" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201101822", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101822" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_684a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102021", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2102021" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_684b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102124", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102124" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_684c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102209", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2102209" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_684d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104201", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104201" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_684e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102826", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2102826" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_684f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20203103210", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103210" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6850" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20301103603", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103603" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6851" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20301103615", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103615" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6852" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103873", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2103873" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6853" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103929", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103929" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6854" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103933", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103933" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6855" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003144014", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2144014" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6856" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104234", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2104234" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6857" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104237", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104237" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6858" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104404", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104404" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6859" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104411", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104411" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_685a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104708", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104708" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_685b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303104907", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104907" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_685c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105609", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2105609" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_685d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105709", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105709" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_685e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116221", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116221" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_685f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106620", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106620" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6860" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106710", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106710" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6861" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403106930", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2106930" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6862" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107202", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107202" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6863" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107218", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2107218" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6864" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107219", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2107219" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6865" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107314", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107314" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6866" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107446", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107446" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6867" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109522", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109522" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6868" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107920", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2107920" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6869" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107933", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2107933" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_686a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108001", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108001" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_686b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109771", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2109771" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_686c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110852", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110852" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_686d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111218", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111218" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_686e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108607", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2108607" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_686f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109353", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109353" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6870" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604111813", + "neg_nil_inc_fam_households": 24, + "negative_nil_income_tot": 115, + "sa1_7dig16": "2111813" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6871" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113202", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2113202" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6872" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113350", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2113350" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6873" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113713", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2113713" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6874" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113808", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2113808" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6875" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607113911", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2113911" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6876" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114211", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114211" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6877" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114514", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114514" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6878" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114812", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114812" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6879" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114820", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114820" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_687a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114824", + "neg_nil_inc_fam_households": 11, + "negative_nil_income_tot": 11, + "sa1_7dig16": "2114824" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_687b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114909", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2114909" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_687c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114920", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114920" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_687d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114930", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114930" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_687e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115146", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2115146" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_687f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115315", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115315" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6880" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115611", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2115611" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6881" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115703", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2115703" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6882" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115906", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115906" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6883" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115918", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115918" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6884" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115934", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2115934" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6885" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116138", + "neg_nil_inc_fam_households": 7, + "negative_nil_income_tot": 19, + "sa1_7dig16": "2116138" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6886" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116209", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116209" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6887" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116211", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116211" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6888" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116335", + "neg_nil_inc_fam_households": 9, + "negative_nil_income_tot": 39, + "sa1_7dig16": "2116335" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6889" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116906", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116906" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_688a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117420", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117420" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_688b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117627", + "neg_nil_inc_fam_households": 12, + "negative_nil_income_tot": 40, + "sa1_7dig16": "2117627" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_688c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117823", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117823" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_688d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117904", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117904" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_688e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802118226", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2118226" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_688f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118327", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118327" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6890" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118616", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2118616" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6891" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118807", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118807" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6892" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118821", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2118821" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6893" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118920", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118920" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6894" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119105", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119105" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6895" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119317", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119317" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6896" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119329", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119329" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6897" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119436", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119436" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6898" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119535", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2119535" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6899" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119720", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119720" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_689a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119911", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119911" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_689b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120850", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120850" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_689c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124903", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124903" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_689d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121009", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121009" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_689e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121311", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2121311" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_689f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904121706", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121706" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68a0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904121718", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2121718" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68a1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122337", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2122337" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68a2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124938", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124938" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68a3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122943", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122943" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68a4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122947", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2122947" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68a5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122962", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2122962" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68a6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001123118", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123118" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68a7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123702", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2123702" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68a8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124127", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124127" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68a9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124143", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124143" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68aa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124207", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2124207" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68ab" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128310", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128310" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68ac" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124939", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124939" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68ad" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125106", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125106" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68ae" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125108", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125108" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68af" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125931", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125931" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68b0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125933", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125933" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68b1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101126028", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2126028" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68b2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21102126134", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126134" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68b3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126314", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126314" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68b4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131743", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131743" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68b5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126526", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126526" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68b6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126807", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126807" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68b7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127106", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127106" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68b8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127420", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127420" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68b9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127810", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127810" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68ba" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127901", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127901" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68bb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128016", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2128016" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68bc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128403", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128403" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68bd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128606", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128606" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68be" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128614", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128614" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68bf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128645", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128645" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68c0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128712", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128712" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68c1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131746", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131746" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68c2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132609", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2132609" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68c3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128811", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128811" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68c4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128949", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128949" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68c5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128952", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128952" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68c6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129130", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2129130" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68c7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129347", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129347" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68c8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129466", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129466" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68c9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130121", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130121" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68ca" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130501", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130501" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68cb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130502", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130502" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68cc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130504", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130504" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68cd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204130928", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2130928" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68ce" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131440", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2131440" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68cf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131721", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2131721" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68d0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131729", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131729" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68d1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131826", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131826" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68d2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205131904", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2131904" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68d3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205131934", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2131934" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68d4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132015", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 21, + "sa1_7dig16": "2132015" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68d5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132215", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2132215" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68d6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132240", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2132240" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68d7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132307", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132307" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68d8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132438", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2132438" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68d9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132510", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132510" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68da" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132521", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132521" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68db" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132711", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132711" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68dc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132735", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132735" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68dd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301132914", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132914" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68de" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133041", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2133041" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68df" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133122", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2133122" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68e0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133430", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2133430" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68e1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133525", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2133525" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68e2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134104", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134104" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68e3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134245", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134245" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68e4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135620", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2135620" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68e5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135823", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135823" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68e6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304136022", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136022" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68e7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136136", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136136" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68e8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136231", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136231" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68e9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136308", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136308" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68ea" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136820", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136820" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68eb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138239", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138239" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68ec" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143206", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143206" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68ed" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136915", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2136915" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68ee" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137030", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137030" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68ef" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137036", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137036" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68f0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137122", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137122" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68f1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137310", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137310" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68f2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137423", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137423" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68f3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137622", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2137622" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68f4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138301", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2138301" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68f5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138314", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138314" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68f6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501138609", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138609" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68f7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501138903", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138903" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68f8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139002", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139002" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68f9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139004", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139004" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68fa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140601", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2140601" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68fb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141705", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2141705" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68fc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143521", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143521" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68fd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003143817", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143817" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68fe" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139305", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139305" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_68ff" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140102", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2140102" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6900" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140311", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2140311" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6901" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140422", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140422" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6902" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140517", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140517" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6903" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142321", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142321" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6904" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802142716", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142716" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6905" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902142914", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2142914" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6906" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143106", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143106" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6907" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143114", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2143114" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6908" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143118", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143118" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6909" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144332", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144332" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_690a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144641", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144641" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_690b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144728", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144728" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_690c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144805", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144805" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_690d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144904", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144904" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_690e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103145009", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2145009" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_690f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145522", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2145522" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6910" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145615", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2145615" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6911" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204146009", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146009" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6912" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304146210", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146210" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6913" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304146309", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146309" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6914" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304146336", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146336" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6915" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146414", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146414" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6916" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146619", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146619" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6917" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502147025", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147025" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6918" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502147029", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147029" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6919" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147523", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147523" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_691a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147607", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2147607" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_691b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147801", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2147801" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_691c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203145837", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145837" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_691d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104009", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104009" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6933" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135337", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2135337" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6939" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139024", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139024" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_693a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139301", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139301" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_693b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100456", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2100456" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_693e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702142518", + "neg_nil_inc_fam_households": 7, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2142518" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_693f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111422", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111422" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6940" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103907", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103907" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6942" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104007", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104007" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6943" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20203103317", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2103317" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6945" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103706", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2103706" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6946" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100226", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2100226" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6947" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100346", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100346" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6948" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100454", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2100454" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6949" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20102101006", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2101006" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_694a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102019", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2102019" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_694b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102120", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102120" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_694c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102615", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102615" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_694d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104223", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104223" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_694e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104501", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104501" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_694f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104525", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104525" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6950" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104530", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2104530" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6951" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104624", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104624" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6952" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104706", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2104706" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6953" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105008", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2105008" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6954" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106638", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2106638" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6955" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107711", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107711" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6956" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107906", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2107906" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6957" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105409", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2105409" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6958" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105411", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2105411" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6959" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106324", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106324" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_695a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106634", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106634" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_695b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403106908", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106908" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_695c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107329", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107329" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_695d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107424", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107424" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_695e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107502", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2107502" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_695f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107629", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2107629" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6960" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107635", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107635" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6961" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108133", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108133" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6962" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108138", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2108138" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6963" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503108711", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2108711" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6964" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503108901", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2108901" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6965" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109404", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109404" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6966" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109407", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109407" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6967" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109409", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2109409" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6968" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111203", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111203" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6969" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111318", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2111318" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_696a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109412", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2109412" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_696b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109617", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2109617" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_696c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109713", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109713" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_696d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109814", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2109814" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_696e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110001", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2110001" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_696f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110327", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110327" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6970" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110334", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110334" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6971" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110526", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2110526" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6972" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110533", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110533" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6973" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110555", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2110555" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6974" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110845", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110845" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6975" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110912", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110912" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6976" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604111809", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 24, + "sa1_7dig16": "2111809" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6977" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604111812", + "neg_nil_inc_fam_households": 20, + "negative_nil_income_tot": 97, + "sa1_7dig16": "2111812" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6978" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112115", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2112115" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6979" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112127", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2112127" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_697a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112401", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2112401" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_697b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112625", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2112625" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_697c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605112917", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2112917" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_697d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113219", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2113219" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_697e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113341", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2113341" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_697f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113422", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2113422" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6980" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113615", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2113615" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6981" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113630", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2113630" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6982" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113727", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2113727" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6983" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113735", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2113735" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6984" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113814", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 11, + "sa1_7dig16": "2113814" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6985" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114007", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114007" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6986" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114430", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114430" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6987" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114442", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114442" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6988" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114811", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2114811" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6989" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114834", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2114834" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_698a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115303", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115303" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_698b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115407", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115407" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_698c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115410", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115410" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_698d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115939", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2115939" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_698e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116114", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2116114" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_698f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116436", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2116436" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6990" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117009", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117009" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6991" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117011", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117011" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6992" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117404", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117404" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6993" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117624", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117624" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6994" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117802", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117802" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6995" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802118101", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2118101" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6996" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802118223", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118223" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6997" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118302", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2118302" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6998" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118312", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118312" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6999" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118605", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2118605" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_699a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118713", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2118713" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_699b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118839", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118839" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_699c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118902", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2118902" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_699d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119112", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119112" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_699e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119118", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119118" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_699f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119428", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119428" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69a0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119504", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2119504" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69a1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119605", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119605" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69a2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119708", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119708" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69a3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119816", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119816" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69a4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120742", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2120742" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69a5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120816", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2120816" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69a6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120207", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120207" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69a7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120236", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120236" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69a8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120308", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120308" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69a9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120410", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2120410" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69aa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120732", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120732" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69ab" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146547", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146547" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69ac" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903120914", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120914" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69ad" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121401", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121401" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69ae" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121407", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2121407" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69af" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904121613", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 17, + "sa1_7dig16": "2121613" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69b0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904121912", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2121912" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69b1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122343", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2122343" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69b2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122903", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2122903" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69b3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21002123221", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2123221" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69b4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21002123228", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123228" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69b5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21002123405", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123405" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69b6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123714", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2123714" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69b7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124132", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124132" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69b8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124529", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2124529" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69b9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124616", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124616" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69ba" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124619", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124619" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69bb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124711", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124711" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69bc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124924", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124924" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69bd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125123", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125123" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69be" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125810", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125810" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69bf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126316", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126316" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69c0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126639", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2126639" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69c1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127021", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2127021" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69c2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127216", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127216" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69c3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127503", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2127503" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69c4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130006", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130006" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69c5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128634", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128634" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69c6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128639", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128639" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69c7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128650", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128650" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69c8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128801", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2128801" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69c9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130136", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2130136" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69ca" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130302", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2130302" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69cb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128905", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128905" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69cc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128909", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128909" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69cd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129126", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129126" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69ce" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129134", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2129134" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69cf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129214", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2129214" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69d0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129721", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129721" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69d1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137723", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137723" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69d2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130537", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2130537" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69d3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130621", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2130621" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69d4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130814", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2130814" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69d5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131235", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131235" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69d6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131604", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131604" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69d7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131806", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 11, + "sa1_7dig16": "2131806" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69d8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132413", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132413" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69d9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132440", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132440" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69da" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132640", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132640" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69db" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301132819", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2132819" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69dc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133020", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133020" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69dd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133201", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2133201" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69de" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133437", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2133437" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69df" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133507", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133507" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69e0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133926", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133926" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69e1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134307", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134307" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69e2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134327", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2134327" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69e3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141643", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141643" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69e4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117228", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117228" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69e5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134418", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134418" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69e6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134909", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134909" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69e7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135333", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2135333" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69e8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136537", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136537" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69e9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136538", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136538" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69ea" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137148", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137148" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69eb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137244", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2137244" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69ec" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137334", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137334" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69ed" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137342", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137342" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69ee" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141704", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141704" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69ef" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137926", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137926" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69f0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138316", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138316" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69f1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138345", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138345" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69f2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138408", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138408" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69f3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501138829", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2138829" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69f4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139016", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139016" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69f5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139411", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2139411" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69f6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139416", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139416" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69f7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140605", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140605" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69f8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140727", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2140727" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69f9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140813", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140813" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69fa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601141004", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141004" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69fb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141908", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2141908" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69fc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141915", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141915" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69fd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142314", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142314" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69fe" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802142621", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142621" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_69ff" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902142902", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2142902" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a00" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143030", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143030" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a01" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143123", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143123" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a02" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144218", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2144218" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a03" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203145817", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145817" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a04" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143211", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143211" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a05" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143508", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143508" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a06" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203145826", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2145826" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a07" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144324", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144324" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a08" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144329", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2144329" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a09" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144604", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2144604" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a0a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145423", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145423" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a0b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145427", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145427" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a0c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203145714", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145714" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a0d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203145720", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145720" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a0e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146603", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146603" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a0f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146721", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146721" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a10" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146724", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146724" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a11" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502146915", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2146915" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a12" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147508", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2147508" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a13" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147522", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2147522" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a14" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147809", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147809" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a15" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147820", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147820" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a16" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147941", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147941" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a17" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604111735", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 30, + "sa1_7dig16": "2111735" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a18" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112304", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2112304" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a3d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137306", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137306" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a3e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100506", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2100506" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a42" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129440", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129440" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a44" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100301", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100301" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a45" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20102101107", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101107" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a46" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20103101602", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2101602" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a47" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20103101705", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2101705" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a48" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201101924", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101924" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a49" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102219", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2102219" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a4a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103820", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2103820" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a4b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102408", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102408" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a4c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102411", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102411" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a4d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102516", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102516" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a4e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102808", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102808" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a4f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104301", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104301" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a50" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104614", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104614" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a51" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104725", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104725" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a52" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107814", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107814" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a53" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108506", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2108506" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a54" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303104808", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104808" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a55" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105048", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105048" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a56" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106309", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106309" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a57" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108609", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2108609" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a58" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109124", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109124" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a59" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114501", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114501" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a5a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107318", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2107318" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a5b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107501", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107501" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a5c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107620", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2107620" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a5d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109352", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2109352" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a5e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109413", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2109413" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a5f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109606", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109606" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a60" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109766", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109766" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a61" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110011", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110011" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a62" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110329", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110329" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a63" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110810", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110810" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a64" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110905", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110905" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a65" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111104", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2111104" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a66" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111122", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111122" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a67" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109636", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109636" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a68" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109730", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109730" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a69" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109732", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109732" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a6a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111615", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111615" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a6b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111625", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111625" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a6c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604111720", + "neg_nil_inc_fam_households": 9, + "negative_nil_income_tot": 35, + "sa1_7dig16": "2111720" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a6d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604111913", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111913" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a6e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112106", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2112106" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a6f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112121", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2112121" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a70" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112324", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 11, + "sa1_7dig16": "2112324" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a71" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605112916", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2112916" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a72" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113016", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2113016" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a73" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113228", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2113228" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a74" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113333", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2113333" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a75" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113805", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113805" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a76" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113819", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2113819" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a77" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114518", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114518" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a78" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114703", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2114703" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a79" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114908", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2114908" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a7a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115016", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115016" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a7b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115532", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2115532" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a7c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115901", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2115901" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a7d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702116009", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2116009" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a7e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116511", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 21, + "sa1_7dig16": "2116511" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a7f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116528", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116528" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a80" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116606", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116606" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a81" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117229", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117229" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a82" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117425", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117425" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a83" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117436", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117436" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a84" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117737", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117737" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a85" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117739", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2117739" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a86" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117917", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117917" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a87" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118506", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118506" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a88" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118529", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2118529" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a89" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118901", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118901" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a8a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119025", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119025" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a8b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903120939", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120939" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a8c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137117", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137117" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a8d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119441", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119441" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a8e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119508", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119508" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a8f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120001", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2120001" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a90" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120305", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120305" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a91" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120707", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2120707" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a92" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120729", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120729" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a93" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120838", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2120838" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a94" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904121941", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2121941" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a95" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122041", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122041" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a96" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122123", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122123" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a97" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001123113", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2123113" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a98" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124113", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124113" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a99" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124541", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124541" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a9a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124630", + "neg_nil_inc_fam_households": 8, + "negative_nil_income_tot": 13, + "sa1_7dig16": "2124630" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a9b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124714", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124714" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a9c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124929", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124929" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a9d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125112", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2125112" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a9e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125802", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125802" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6a9f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125825", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125825" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6aa0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21102126118", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126118" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6aa1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126602", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2126602" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6aa2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126814", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126814" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6aa3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130412", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130412" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6aa4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127426", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127426" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6aa5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127504", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2127504" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6aa6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128205", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2128205" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6aa7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128217", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128217" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6aa8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129720", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129720" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6aa9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128221", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128221" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6aaa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128319", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128319" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6aab" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128413", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128413" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6aac" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128805", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2128805" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6aad" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128809", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2128809" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6aae" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128912", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128912" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6aaf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130307", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2130307" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ab0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128936", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2128936" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ab1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129009", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2129009" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ab2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129429", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129429" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ab3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129459", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129459" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ab4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129709", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2129709" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ab5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130535", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130535" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ab6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130615", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2130615" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ab7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131214", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2131214" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ab8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131253", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2131253" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ab9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131413", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131413" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6aba" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131455", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131455" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6abb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131727", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2131727" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6abc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131741", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131741" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6abd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131822", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2131822" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6abe" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132515", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132515" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6abf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132608", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2132608" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ac0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133050", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133050" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ac1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133204", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133204" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ac2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133908", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133908" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ac3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301134039", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134039" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ac4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134102", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134102" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ac5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134127", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134127" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ac6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134214", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134214" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ac7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138443", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138443" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ac8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134242", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134242" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ac9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134246", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134246" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6aca" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134321", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134321" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6acb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134326", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2134326" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6acc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134401", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134401" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6acd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303135231", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2135231" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ace" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135349", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135349" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6acf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135511", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135511" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ad0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135516", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135516" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ad1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135732", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135732" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ad2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136141", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2136141" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ad3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136229", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136229" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ad4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136301", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2136301" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ad5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136550", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136550" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ad6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136966", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136966" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ad7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137020", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137020" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ad8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137047", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137047" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ad9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137208", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137208" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ada" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137804", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137804" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6adb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137927", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137927" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6adc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138008", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2138008" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6add" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138315", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2138315" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ade" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138418", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2138418" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6adf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802142619", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2142619" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ae0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138527", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138527" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ae1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138537", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138537" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ae2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502139503", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139503" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ae3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502139608", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2139608" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ae4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502139907", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139907" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ae5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140119", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140119" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ae6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140516", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140516" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ae7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140603", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2140603" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ae8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140611", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140611" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ae9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140904", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2140904" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6aea" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802142710", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2142710" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6aeb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141713", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141713" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6aec" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142201", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142201" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6aed" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142207", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142207" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6aee" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142227", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142227" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6aef" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702142408", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2142408" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6af0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702142502", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2142502" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6af1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702142516", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2142516" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6af2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143018", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2143018" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6af3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143037", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143037" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6af4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003143807", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143807" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6af5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144626", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2144626" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6af6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144725", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2144725" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6af7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103145014", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145014" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6af8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145326", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145326" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6af9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203145802", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145802" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6afa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203145814", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2145814" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6afb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133901", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133901" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6afc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304146326", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146326" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6afd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146530", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146530" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6afe" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146605", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146605" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6aff" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146607", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146607" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b00" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146732", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2146732" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b01" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133921", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133921" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b02" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147823", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147823" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b03" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902142834", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2142834" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b04" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136810", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136810" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b05" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118827", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118827" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b1e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113003", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113003" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b2a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134121", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2134121" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b2b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134230", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134230" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b2f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100113", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100113" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b30" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100120", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100120" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b31" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20102101111", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2101111" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b32" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20103101605", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101605" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b33" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102240", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102240" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b34" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20301103506", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103506" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b35" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103825", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2103825" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b36" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113024", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2113024" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b37" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20103101709", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2101709" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b38" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201101802", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101802" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b39" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201101827", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2101827" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b3a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201101918", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101918" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b3b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102107", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102107" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b3c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113037", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2113037" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b3d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103846", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103846" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b3e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103871", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103871" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b3f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104224", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104224" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b40" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104240", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104240" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b41" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104511", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104511" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b42" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303104812", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104812" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b43" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105015", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105015" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b44" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105023", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105023" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b45" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134332", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2134332" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b46" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105026", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105026" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b47" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105112", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2105112" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b48" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105503", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2105503" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b49" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105509", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105509" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b4a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106314", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106314" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b4b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403106920", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106920" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b4c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107404", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107404" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b4d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113417", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2113417" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b4e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107603", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2107603" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b4f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107622", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2107622" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b50" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107927", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107927" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b51" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108215", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108215" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b52" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108401", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108401" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b53" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109615", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2109615" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b54" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113434", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 11, + "sa1_7dig16": "2113434" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b55" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109110", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109110" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b56" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109327", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109327" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b57" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109628", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2109628" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b58" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109703", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2109703" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b59" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109738", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109738" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b5a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110819", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2110819" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b5b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110850", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2110850" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b5c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110853", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2110853" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b5d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111106", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111106" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b5e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111135", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111135" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b5f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112626", + "neg_nil_inc_fam_households": 19, + "negative_nil_income_tot": 114, + "sa1_7dig16": "2112626" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b60" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112635", + "neg_nil_inc_fam_households": 8, + "negative_nil_income_tot": 31, + "sa1_7dig16": "2112635" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b61" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113505", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2113505" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b62" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114102", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114102" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b63" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114404", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2114404" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b64" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114513", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114513" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b65" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114814", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114814" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b66" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114817", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2114817" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b67" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114928", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2114928" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b68" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114932", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2114932" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b69" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114950", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2114950" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b6a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115036", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115036" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b6b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802118205", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2118205" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b6c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115039", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 16, + "sa1_7dig16": "2115039" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b6d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115207", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2115207" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b6e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115614", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115614" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b6f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115746", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115746" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b70" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115914", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2115914" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b71" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702116013", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2116013" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b72" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702116032", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2116032" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b73" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116304", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 14, + "sa1_7dig16": "2116304" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b74" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116338", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 11, + "sa1_7dig16": "2116338" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b75" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116623", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116623" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b76" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118324", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2118324" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b77" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116803", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116803" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b78" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116919", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116919" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b79" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116927", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116927" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b7a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117034", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117034" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b7b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117120", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2117120" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b7c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117121", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117121" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b7d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117333", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117333" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b7e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117402", + "neg_nil_inc_fam_households": 10, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2117402" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b7f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117410", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117410" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b80" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117418", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117418" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b81" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117706", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2117706" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b82" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117724", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2117724" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b83" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802118111", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2118111" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b84" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119116", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119116" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b85" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119315", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119315" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b86" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119327", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119327" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b87" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120514", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120514" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b88" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120842", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120842" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b89" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120843", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120843" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b8a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120846", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120846" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b8b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122507", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2122507" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b8c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121201", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121201" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b8d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121302", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2121302" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b8e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121324", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2121324" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b8f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121408", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121408" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b90" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904121909", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2121909" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b91" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124545", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2124545" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b92" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122804", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122804" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b93" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122818", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122818" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b94" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122923", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2122923" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b95" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122961", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122961" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b96" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21002123308", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123308" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b97" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124004", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124004" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b98" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124005", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2124005" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b99" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005125001", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125001" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b9a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125115", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2125115" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b9b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125613", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2125613" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b9c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125622", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125622" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b9d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125630", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2125630" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b9e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21102126124", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2126124" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6b9f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127019", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2127019" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ba0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128210", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128210" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ba1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702142523", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2142523" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ba2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127115", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127115" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ba3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127311", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127311" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ba4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127524", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2127524" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ba5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127608", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127608" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ba6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144628", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144628" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ba7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127628", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127628" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ba8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127807", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127807" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ba9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128017", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128017" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6baa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131212", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131212" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6bab" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128322", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128322" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6bac" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128520", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128520" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6bad" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128917", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128917" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6bae" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128938", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128938" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6baf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128953", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128953" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6bb0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129006", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2129006" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6bb1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129225", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129225" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6bb2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131223", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131223" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6bb3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129269", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2129269" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6bb4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129336", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2129336" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6bb5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130007", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2130007" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6bb6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130105", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130105" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6bb7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130235", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130235" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6bb8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130308", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2130308" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6bb9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130527", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2130527" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6bba" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131110", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131110" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6bbb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131154", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131154" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6bbc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132618", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2132618" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6bbd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131304", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131304" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6bbe" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131326", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131326" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6bbf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131702", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131702" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6bc0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131705", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131705" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6bc1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205131901", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131901" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6bc2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205131905", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131905" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6bc3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132019", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2132019" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6bc4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132331", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2132331" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6bc5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132421", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2132421" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6bc6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132514", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132514" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6bc7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132743", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132743" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6bc8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132747", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132747" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6bc9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133062", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133062" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6bca" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133414", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2133414" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6bcb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133536", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2133536" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6bcc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134103", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134103" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6bcd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134718", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134718" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6bce" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134803", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2134803" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6bcf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303135109", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2135109" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6bd0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135304", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135304" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6bd1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135308", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135308" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6bd2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135533", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135533" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6bd3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135609", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2135609" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6bd4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135627", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135627" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6bd5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135632", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135632" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6bd6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135727", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2135727" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6bd7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135833", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135833" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6bd8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136140", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136140" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6bd9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136544", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136544" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6bda" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136930", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136930" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6bdb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136939", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136939" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6bdc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137143", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137143" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6bdd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137453", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137453" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6bde" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137514", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2137514" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6bdf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137517", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137517" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6be0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138136", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138136" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6be1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138403", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138403" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6be2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501138811", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138811" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6be3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139401", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139401" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6be4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140719", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140719" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6be5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140725", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140725" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6be6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140803", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140803" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6be7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141503", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2141503" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6be8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141803", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2141803" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6be9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141918", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141918" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6bea" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142231", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142231" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6beb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702142405", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142405" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6bec" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143108", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2143108" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6bed" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143317", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143317" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6bee" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143320", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2143320" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6bef" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003143845", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2143845" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6bf0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003144005", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144005" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6bf1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144303", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2144303" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6bf2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144336", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144336" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6bf3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144409", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144409" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6bf4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144640", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144640" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6bf5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144646", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144646" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6bf6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144817", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144817" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6bf7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103145036", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2145036" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6bf8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145418", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145418" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6bf9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145525", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145525" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6bfa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145603", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145603" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6bfb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145610", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2145610" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6bfc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145617", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2145617" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6bfd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145622", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2145622" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6bfe" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203145727", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145727" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6bff" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203145801", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2145801" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c00" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204145914", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2145914" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c01" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204146014", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146014" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c02" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304146304", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146304" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c03" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304146338", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146338" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c04" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146522", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2146522" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c05" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146705", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146705" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c06" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502146920", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146920" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c07" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147904", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2147904" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c08" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147908", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2147908" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c09" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704148023", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2148023" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c0a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134402", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134402" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c0b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117445", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2117445" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c0c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117606", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117606" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c0d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120328", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120328" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c0e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106301", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2106301" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c2d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104737", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104737" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c36" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105001", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105001" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c38" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100117", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2100117" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c3a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100413", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100413" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c3b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100807", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100807" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c3c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100820", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2100820" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c3d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100839", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100839" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c3e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20102101021", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101021" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c3f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20102101202", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101202" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c40" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105025", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105025" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c41" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105045", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105045" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c42" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20102101208", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2101208" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c43" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20103101412", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2101412" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c44" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106604", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106604" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c45" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605112912", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2112912" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c46" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20103101504", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2101504" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c47" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107414", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107414" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c48" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107447", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2107447" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c49" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20103101621", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101621" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c4a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20103101706", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101706" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c4b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102228", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2102228" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c4c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107913", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2107913" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c4d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503108704", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108704" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c4e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102234", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102234" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c4f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102244", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2102244" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c50" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102703", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102703" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c51" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103705", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2103705" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c52" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103835", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2103835" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c53" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103845", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103845" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c54" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103870", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103870" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c55" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104236", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104236" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c56" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104324", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104324" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c57" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105208", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2105208" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c58" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105715", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105715" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c59" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401106207", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106207" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c5a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106510", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106510" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c5b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106616", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106616" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c5c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106712", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2106712" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c5d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503108712", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2108712" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c5e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109119", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2109119" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c5f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106727", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106727" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c60" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109315", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2109315" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c61" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110406", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110406" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c62" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110556", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110556" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c63" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111202", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111202" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c64" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111518", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111518" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c65" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112314", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 110, + "sa1_7dig16": "2112314" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c66" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112337", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 15, + "sa1_7dig16": "2112337" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c67" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605112907", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2112907" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c68" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605112930", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2112930" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c69" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403106804", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106804" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c6a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107001", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107001" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c6b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107411", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2107411" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c6c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113038", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113038" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c6d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113733", + "neg_nil_inc_fam_households": 27, + "negative_nil_income_tot": 114, + "sa1_7dig16": "2113733" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c6e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114010", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2114010" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c6f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114011", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2114011" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c70" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114106", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2114106" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c71" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114458", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114458" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c72" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114515", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114515" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c73" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114521", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114521" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c74" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114813", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114813" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c75" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114847", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114847" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c76" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115018", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115018" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c77" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115134", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115134" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c78" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115719", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115719" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c79" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115941", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115941" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c7a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116140", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116140" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c7b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116332", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2116332" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c7c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116402", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116402" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c7d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116427", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2116427" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c7e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116517", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2116517" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c7f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119825", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119825" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c80" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116707", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116707" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c81" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117311", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117311" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c82" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117715", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117715" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c83" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117836", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117836" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c84" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802118015", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2118015" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c85" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118316", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118316" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c86" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118609", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118609" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c87" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118706", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118706" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c88" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118823", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 12, + "sa1_7dig16": "2118823" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c89" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119503", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119503" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c8a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119604", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2119604" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c8b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119805", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2119805" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c8c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120025", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 11, + "sa1_7dig16": "2120025" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c8d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120105", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120105" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c8e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120225", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120225" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c8f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904121950", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2121950" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c90" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122045", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2122045" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c91" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122108", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2122108" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c92" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122121", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2122121" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c93" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122309", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2122309" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c94" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122518", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122518" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c95" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122810", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2122810" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c96" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122812", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2122812" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c97" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122948", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2122948" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c98" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001123011", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123011" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c99" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001123114", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123114" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c9a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123909", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2123909" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c9b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124002", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124002" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c9c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130229", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130229" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c9d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21002123304", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123304" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c9e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123613", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2123613" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6c9f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123615", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2123615" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ca0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124140", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2124140" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ca1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124309", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124309" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ca2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124342", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124342" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ca3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124716", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124716" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ca4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124720", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2124720" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ca5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125419", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2125419" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ca6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125608", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125608" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ca7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125902", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2125902" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ca8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129206", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2129206" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ca9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125922", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125922" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6caa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101126001", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126001" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6cab" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21102126218", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2126218" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6cac" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126509", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126509" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6cad" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126647", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2126647" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6cae" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126747", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126747" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6caf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127121", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127121" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6cb0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127315", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2127315" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6cb1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127419", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127419" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6cb2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127517", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2127517" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6cb3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127841", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127841" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6cb4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128626", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2128626" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6cb5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128649", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128649" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6cb6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128725", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2128725" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6cb7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129352", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2129352" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6cb8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128919", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128919" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6cb9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128928", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128928" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6cba" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129103", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2129103" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6cbb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129127", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129127" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6cbc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129138", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129138" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6cbd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129501", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2129501" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6cbe" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130516", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2130516" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6cbf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204130932", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130932" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6cc0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131014", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131014" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6cc1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131306", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2131306" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6cc2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131313", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131313" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6cc3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131411", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131411" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6cc4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131451", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131451" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6cc5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131706", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 11, + "sa1_7dig16": "2131706" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6cc6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132228", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132228" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6cc7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132306", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132306" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6cc8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132334", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2132334" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6cc9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132404", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132404" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6cca" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132429", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132429" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ccb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132731", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2132731" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ccc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133108", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133108" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ccd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133233", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133233" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6cce" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133528", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133528" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ccf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133534", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2133534" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6cd0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133612", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2133612" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6cd1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133723", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133723" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6cd2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134507", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134507" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6cd3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134633", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134633" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6cd4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134904", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134904" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6cd5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134925", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134925" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6cd6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303135017", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135017" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6cd7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303135106", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2135106" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6cd8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303135205", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135205" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6cd9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135710", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2135710" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6cda" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135715", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2135715" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6cdb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304136015", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136015" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6cdc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137302", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137302" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6cdd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136135", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136135" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6cde" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136627", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136627" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6cdf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136821", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2136821" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ce0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136911", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136911" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ce1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137014", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137014" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ce2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137033", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137033" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ce3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137112", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2137112" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ce4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137129", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137129" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ce5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137327", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137327" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ce6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137625", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137625" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ce7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138114", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138114" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ce8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138144", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138144" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ce9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138330", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2138330" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6cea" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138416", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138416" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ceb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138533", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2138533" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6cec" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501138624", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138624" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ced" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501138830", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138830" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6cee" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139007", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139007" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6cef" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139210", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2139210" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6cf0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502139610", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2139610" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6cf1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140001", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140001" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6cf2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140007", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2140007" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6cf3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140704", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2140704" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6cf4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21602141208", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141208" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6cf5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141638", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2141638" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6cf6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141714", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141714" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6cf7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802142722", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142722" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6cf8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902142835", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2142835" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6cf9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143319", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2143319" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6cfa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144121", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2144121" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6cfb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144210", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144210" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6cfc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144311", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144311" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6cfd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144835", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2144835" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6cfe" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103145122", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145122" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6cff" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145323", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145323" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d00" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145434", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145434" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d01" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145501", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145501" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d02" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145520", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145520" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d03" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146813", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146813" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d04" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502147002", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147002" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d05" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147305", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2147305" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d06" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147524", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147524" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d07" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110542", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2110542" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d08" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110721", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2110721" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d09" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110828", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110828" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d0a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110518", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2110518" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d0b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110553", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110553" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d0c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110902", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110902" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d0d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111228", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111228" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d0e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111439", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111439" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d0f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303135228", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135228" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d10" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113221", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2113221" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d18" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138231", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138231" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d2d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107905", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2107905" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d3d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117001", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117001" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d3e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117012", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2117012" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d3f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100234", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100234" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d41" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100318", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2100318" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d42" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100840", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2100840" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d43" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20102100910", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2100910" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d44" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20102101215", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2101215" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d45" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201101907", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2101907" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d46" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201101911", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2101911" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d47" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102002", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102002" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d48" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102014", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102014" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d49" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102127", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102127" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d4a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102241", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102241" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d4b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20301103405", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2103405" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d4c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104150", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104150" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d4d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117301", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117301" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d4e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104342", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104342" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d4f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104727", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104727" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d50" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303104819", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2104819" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d51" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117316", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117316" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d52" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105030", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105030" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d53" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105313", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2105313" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d54" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105333", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105333" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d55" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105617", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105617" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d56" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105802", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2105802" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d57" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403106925", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2106925" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d58" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107211", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107211" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d59" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116303", + "neg_nil_inc_fam_households": 7, + "negative_nil_income_tot": 14, + "sa1_7dig16": "2116303" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d5a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107317", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107317" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d5b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107942", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107942" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d5c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108122", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108122" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d5d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108218", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108218" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d5e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108601", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108601" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d5f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503108702", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2108702" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d60" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109424", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 17, + "sa1_7dig16": "2109424" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d61" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109501", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109501" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d62" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110132", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2110132" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d63" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107408", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107408" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d64" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107422", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107422" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d65" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107445", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2107445" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d66" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112001", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2112001" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d67" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112218", + "neg_nil_inc_fam_households": 19, + "negative_nil_income_tot": 100, + "sa1_7dig16": "2112218" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d68" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112505", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2112505" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d69" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112619", + "neg_nil_inc_fam_households": 9, + "negative_nil_income_tot": 49, + "sa1_7dig16": "2112619" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d6a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605112817", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2112817" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d6b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605112832", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2112832" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d6c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605112911", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2112911" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d6d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113355", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2113355" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d6e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113636", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2113636" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d6f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607113908", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2113908" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d70" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114318", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114318" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d71" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114726", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114726" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d72" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114818", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2114818" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d73" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115009", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115009" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d74" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115010", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115010" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d75" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115104", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2115104" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d76" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115335", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2115335" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d77" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115350", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115350" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d78" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116903", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116903" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d79" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115526", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115526" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d7a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115603", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2115603" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d7b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115608", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115608" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d7c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115721", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2115721" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d7d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702116005", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116005" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d7e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116118", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2116118" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d7f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116218", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116218" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d80" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116931", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116931" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d81" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117728", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117728" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d82" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117753", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117753" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d83" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117834", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117834" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d84" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117922", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117922" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d85" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118619", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118619" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d86" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119108", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2119108" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d87" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119306", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119306" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d88" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119727", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119727" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d89" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119821", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119821" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d8a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119916", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119916" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d8b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120017", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120017" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d8c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120338", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120338" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d8d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120511", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2120511" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d8e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904121608", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121608" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d8f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904121712", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2121712" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d90" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122331", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2122331" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d91" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122944", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2122944" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d92" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001123002", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123002" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d93" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123609", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123609" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d94" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124926", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124926" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d95" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125407", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125407" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d96" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122428", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2122428" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d97" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122932", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122932" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d98" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124007", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124007" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d99" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124161", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124161" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d9a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124313", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124313" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d9b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124318", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124318" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d9c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124704", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124704" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d9d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125609", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125609" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d9e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126702", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2126702" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6d9f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126713", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126713" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6da0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126815", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2126815" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6da1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104126903", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2126903" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6da2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127103", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2127103" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6da3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127522", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127522" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6da4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128118", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128118" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6da5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128222", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128222" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6da6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128410", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128410" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6da7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131238", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131238" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6da8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128620", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2128620" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6da9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128636", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128636" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6daa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129222", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129222" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6dab" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129230", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2129230" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6dac" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129246", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2129246" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6dad" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129251", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129251" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6dae" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133056", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133056" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6daf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133410", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2133410" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6db0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129324", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2129324" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6db1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129464", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129464" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6db2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130003", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2130003" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6db3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130113", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2130113" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6db4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130119", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130119" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6db5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130222", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130222" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6db6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130234", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130234" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6db7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130525", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2130525" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6db8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131158", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2131158" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6db9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131230", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131230" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6dba" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132234", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132234" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6dbb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132547", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2132547" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6dbc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132607", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132607" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6dbd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132614", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2132614" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6dbe" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132736", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2132736" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6dbf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133017", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133017" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6dc0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133019", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133019" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6dc1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133044", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133044" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6dc2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133828", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133828" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6dc3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301134008", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134008" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6dc4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301134042", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134042" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6dc5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134216", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2134216" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6dc6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134304", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134304" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6dc7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134329", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134329" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6dc8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134422", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134422" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6dc9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134424", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134424" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6dca" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134512", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134512" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6dcb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303135206", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2135206" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6dcc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303135213", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135213" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6dcd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135523", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135523" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6dce" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135603", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135603" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6dcf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135605", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2135605" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6dd0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135705", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135705" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6dd1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135819", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135819" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6dd2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304136017", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136017" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6dd3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304136034", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136034" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6dd4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136204", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136204" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6dd5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136314", + "neg_nil_inc_fam_households": 10, + "negative_nil_income_tot": 13, + "sa1_7dig16": "2136314" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6dd6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136317", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2136317" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6dd7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137421", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137421" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6dd8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137443", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137443" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6dd9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137717", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137717" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6dda" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137925", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137925" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ddb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137936", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137936" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ddc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138009", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138009" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ddd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138030", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138030" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6dde" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138034", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2138034" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ddf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138039", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2138039" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6de0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138129", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138129" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6de1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138229", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138229" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6de2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138324", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138324" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6de3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138405", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138405" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6de4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139013", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2139013" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6de5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139018", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139018" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6de6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502139515", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139515" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6de7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502139606", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139606" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6de8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140018", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2140018" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6de9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140104", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2140104" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6dea" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140204", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140204" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6deb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140714", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140714" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6dec" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140716", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2140716" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ded" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21602141202", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2141202" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6dee" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141640", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141640" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6def" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141719", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2141719" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6df0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141751", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141751" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6df1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141926", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141926" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6df2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142122", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142122" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6df3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702142513", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142513" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6df4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802142711", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2142711" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6df5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902142811", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142811" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6df6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143519", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2143519" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6df7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003144009", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144009" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6df8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003144017", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2144017" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6df9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144315", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144315" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6dfa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144423", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144423" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6dfb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144624", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144624" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6dfc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144651", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144651" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6dfd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103145029", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145029" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6dfe" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103145110", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145110" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6dff" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203145811", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145811" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e00" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304146212", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146212" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e01" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304146318", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2146318" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e02" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304146327", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146327" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e03" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304146331", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2146331" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e04" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304146339", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146339" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e05" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146527", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146527" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e06" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146617", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146617" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e07" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146801", + "neg_nil_inc_fam_households": 7, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2146801" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e08" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146806", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146806" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e09" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502147012", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2147012" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e0a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147525", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2147525" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e0b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113411", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113411" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e0c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113420", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2113420" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e2a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116110", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116110" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e32" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201101902", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2101902" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e33" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116201", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116201" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e34" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102203", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102203" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e35" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102236", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2102236" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e36" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104231", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104231" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e37" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105022", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2105022" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e38" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100312", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100312" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e39" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20102101109", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101109" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e3a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201101809", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2101809" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e3b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102307", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102307" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e3c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104050", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2104050" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e3d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104102", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104102" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e3e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104203", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104203" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e3f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102904", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2102904" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e40" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20203103207", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2103207" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e41" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20203103315", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103315" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e42" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103821", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103821" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e43" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103839", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103839" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e44" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104245", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104245" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e45" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104307", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104307" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e46" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104403", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104403" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e47" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104620", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104620" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e48" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303104826", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2104826" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e49" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132023", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2132023" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e4a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105412", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2105412" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e4b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105602", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105602" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e4c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401106210", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106210" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e4d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106645", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106645" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e4e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107448", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107448" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e4f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106651", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106651" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e50" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107332", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107332" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e51" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107450", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2107450" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e52" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107715", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2107715" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e53" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107813", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107813" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e54" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107921", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2107921" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e55" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107932", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107932" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e56" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108404", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2108404" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e57" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109115", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2109115" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e58" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109420", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2109420" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e59" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109520", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109520" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e5a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110119", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110119" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e5b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110314", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110314" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e5c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110501", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110501" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e5d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110531", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110531" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e5e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111459", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111459" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e5f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111619", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111619" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e60" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604111814", + "neg_nil_inc_fam_households": 13, + "negative_nil_income_tot": 21, + "sa1_7dig16": "2111814" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e61" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604111915", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111915" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e62" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112238", + "neg_nil_inc_fam_households": 26, + "negative_nil_income_tot": 152, + "sa1_7dig16": "2112238" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e63" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112302", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2112302" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e64" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112403", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2112403" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e65" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112604", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2112604" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e66" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112614", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2112614" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e67" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113019", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2113019" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e68" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113039", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2113039" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e69" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113514", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2113514" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e6a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113634", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113634" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e6b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113803", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113803" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e6c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607113901", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2113901" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e6d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114610", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2114610" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e6e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114815", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2114815" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e6f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114838", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114838" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e70" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114917", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114917" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e71" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115011", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2115011" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e72" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115022", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115022" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e73" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115126", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115126" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e74" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115533", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115533" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e75" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115536", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115536" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e76" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116525", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116525" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e77" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116601", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2116601" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e78" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116604", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116604" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e79" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116953", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116953" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e7a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117031", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2117031" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e7b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117105", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117105" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e7c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117217", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117217" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e7d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117303", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117303" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e7e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117628", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2117628" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e7f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117631", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117631" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e80" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131241", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131241" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e81" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117632", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2117632" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e82" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117746", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117746" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e83" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117827", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117827" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e84" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117909", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117909" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e85" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117913", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2117913" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e86" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802118007", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 12, + "sa1_7dig16": "2118007" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e87" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118502", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118502" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e88" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118708", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118708" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e89" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119529", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119529" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e8a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119532", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 20, + "sa1_7dig16": "2119532" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e8b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119533", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2119533" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e8c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119734", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119734" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e8d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119751", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119751" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e8e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119832", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119832" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e8f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120209", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120209" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e90" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120412", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120412" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e91" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121522", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121522" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e92" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122333", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2122333" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e93" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122349", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2122349" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e94" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122820", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122820" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e95" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001123013", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123013" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e96" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123908", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2123908" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e97" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120746", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120746" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e98" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120821", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120821" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e99" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903120928", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120928" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e9a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124106", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124106" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e9b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124155", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124155" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e9c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124536", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124536" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e9d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124548", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124548" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e9e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124709", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124709" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6e9f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127113", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127113" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ea0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124724", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124724" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ea1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125501", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2125501" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ea2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125703", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125703" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ea3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101126006", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126006" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ea4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101126012", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126012" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ea5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21102126136", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126136" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ea6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126327", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126327" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ea7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126506", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126506" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ea8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126638", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2126638" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ea9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126721", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2126721" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6eaa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127205", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2127205" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6eab" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127428", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127428" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6eac" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127814", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127814" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ead" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127842", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127842" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6eae" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128220", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2128220" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6eaf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129724", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129724" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6eb0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130420", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2130420" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6eb1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128231", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128231" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6eb2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128308", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128308" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6eb3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128324", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128324" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6eb4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130528", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130528" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6eb5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130546", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130546" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6eb6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129003", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129003" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6eb7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129015", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2129015" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6eb8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129208", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2129208" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6eb9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129232", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129232" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6eba" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129256", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129256" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ebb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129439", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129439" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ebc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129447", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129447" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ebd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130550", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130550" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ebe" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131308", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131308" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ebf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131430", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131430" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ec0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131726", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131726" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ec1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131731", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131731" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ec2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131814", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131814" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ec3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131819", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131819" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ec4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132104", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132104" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ec5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132105", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132105" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ec6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132121", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2132121" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ec7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301132803", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132803" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ec8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301132813", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132813" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ec9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133031", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133031" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6eca" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133037", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133037" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ecb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133039", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133039" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ecc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133206", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133206" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ecd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133317", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2133317" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ece" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133516", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133516" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ecf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133825", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133825" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ed0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125401", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2125401" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ed1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301134013", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134013" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ed2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134218", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134218" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ed3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134635", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134635" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ed4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134711", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2134711" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ed5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134724", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134724" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ed6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134923", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134923" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ed7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135322", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135322" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ed8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135520", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2135520" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ed9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135525", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135525" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6eda" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135837", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2135837" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6edb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135903", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2135903" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6edc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136218", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136218" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6edd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136816", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2136816" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ede" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136906", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2136906" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6edf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138451", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138451" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ee0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137240", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137240" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ee1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137419", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137419" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ee2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137504", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137504" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ee3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137902", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2137902" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ee4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137904", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137904" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ee5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137945", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137945" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ee6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138214", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138214" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ee7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137949", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137949" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ee8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137950", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2137950" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ee9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138020", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138020" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6eea" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138036", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138036" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6eeb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138045", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138045" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6eec" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138120", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138120" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6eed" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138525", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138525" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6eee" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138535", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138535" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6eef" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501138803", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138803" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ef0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501138810", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138810" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ef1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140404", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140404" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ef2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140408", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2140408" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ef3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140425", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140425" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ef4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204145922", + "neg_nil_inc_fam_households": 7, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2145922" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ef5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502139911", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2139911" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ef6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140609", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140609" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ef7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140902", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2140902" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ef8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141733", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141733" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ef9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141903", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2141903" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6efa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141909", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141909" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6efb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142234", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142234" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6efc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702142411", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142411" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6efd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702142419", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142419" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6efe" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802142622", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142622" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6eff" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902142807", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2142807" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f00" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902142836", + "neg_nil_inc_fam_households": 7, + "negative_nil_income_tot": 11, + "sa1_7dig16": "2142836" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f01" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143019", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143019" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f02" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143612", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2143612" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f03" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143630", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2143630" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f04" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003143805", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2143805" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f05" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144214", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144214" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f06" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203145823", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145823" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f07" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144410", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2144410" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f08" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144654", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2144654" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f09" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144705", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144705" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f0a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103145038", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145038" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f0b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103145106", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145106" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f0c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145327", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2145327" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f0d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145404", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2145404" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f0e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145521", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145521" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f0f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304146106", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146106" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f10" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146409", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2146409" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f11" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146714", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146714" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f12" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147229", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147229" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f13" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147821", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147821" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f14" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147825", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2147825" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f15" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147921", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147921" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f16" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111409", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111409" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f17" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111507", + "neg_nil_inc_fam_households": 7, + "negative_nil_income_tot": 18, + "sa1_7dig16": "2111507" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f18" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134813", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2134813" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f19" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303135102", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135102" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f1a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110510", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2110510" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f1b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110841", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110841" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f1c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147701", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147701" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f1e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147715", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2147715" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f21" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111523", + "neg_nil_inc_fam_households": 28, + "negative_nil_income_tot": 65, + "sa1_7dig16": "2111523" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f31" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604111704", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2111704" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f41" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604111806", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2111806" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f46" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604111815", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 14, + "sa1_7dig16": "2111815" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f4d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604111901", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111901" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f4e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104015", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104015" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f4f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100231", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2100231" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f53" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100335", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2100335" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f54" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100828", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100828" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f55" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20102100911", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2100911" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f56" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20103101413", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101413" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f57" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20103101509", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101509" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f58" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102036", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2102036" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f59" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102110", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102110" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f5a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102305", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102305" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f5b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102504", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102504" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f5c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102512", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102512" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f5d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103718", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103718" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f5e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103916", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103916" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f5f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104049", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104049" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f60" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104130", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104130" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f61" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104344", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104344" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f62" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104427", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104427" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f63" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105911", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105911" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f64" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106320", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2106320" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f65" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106507", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2106507" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f66" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106508", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2106508" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f67" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106607", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106607" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f68" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107915", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2107915" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f69" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108603", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108603" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f6a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111101", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111101" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f6b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111129", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111129" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f6c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403106802", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106802" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f6d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107209", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2107209" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f6e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107335", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107335" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f6f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107420", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2107420" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f70" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107504", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107504" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f71" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107604", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107604" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f72" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107628", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2107628" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f73" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111216", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2111216" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f74" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111405", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2111405" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f75" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503108918", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2108918" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f76" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109706", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2109706" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f77" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109769", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2109769" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f78" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110319", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110319" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f79" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109310", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109310" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f7a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109326", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2109326" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f7b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109529", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109529" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f7c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604111914", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2111914" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f7d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112603", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2112603" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f7e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113011", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113011" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f7f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113335", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2113335" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f80" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113513", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2113513" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f81" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113815", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 15, + "sa1_7dig16": "2113815" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f82" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113830", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2113830" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f83" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114205", + "neg_nil_inc_fam_households": 7, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2114205" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f84" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114609", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114609" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f85" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114729", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114729" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f86" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114810", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114810" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f87" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114923", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114923" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f88" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115213", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115213" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f89" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115349", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115349" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f8a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115736", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2115736" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f8b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115930", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115930" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f8c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115940", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115940" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f8d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702116028", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116028" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f8e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116111", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116111" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f8f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116210", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2116210" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f90" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116340", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2116340" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f91" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116429", + "neg_nil_inc_fam_households": 11, + "negative_nil_income_tot": 13, + "sa1_7dig16": "2116429" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f92" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116435", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2116435" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f93" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116610", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116610" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f94" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116925", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2116925" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f95" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117702", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117702" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f96" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117716", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117716" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f97" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802118003", + "neg_nil_inc_fam_households": 8, + "negative_nil_income_tot": 16, + "sa1_7dig16": "2118003" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f98" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802118207", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 12, + "sa1_7dig16": "2118207" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f99" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118519", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118519" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f9a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118608", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118608" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f9b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119302", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119302" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f9c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119307", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119307" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f9d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119713", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119713" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f9e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119726", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119726" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6f9f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120212", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2120212" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6fa0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120322", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120322" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6fa1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903120907", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120907" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6fa2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303135232", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135232" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6fa3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120336", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120336" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6fa4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120339", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2120339" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6fa5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21002123512", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2123512" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6fa6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121211", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121211" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6fa7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121416", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2121416" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6fa8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123907", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123907" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6fa9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124103", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124103" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6faa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124217", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124217" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6fab" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904121616", + "neg_nil_inc_fam_households": 13, + "negative_nil_income_tot": 32, + "sa1_7dig16": "2121616" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6fac" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904121711", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2121711" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6fad" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122012", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2122012" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6fae" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122023", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2122023" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6faf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125420", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2125420" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6fb0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122110", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122110" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6fb1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122353", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2122353" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6fb2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124305", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124305" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6fb3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124520", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124520" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6fb4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124539", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124539" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6fb5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124609", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124609" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6fb6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124729", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124729" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6fb7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126743", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2126743" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6fb8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125505", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2125505" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6fb9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21102126103", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2126103" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6fba" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126325", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126325" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6fbb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126728", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126728" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6fbc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126811", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126811" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6fbd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126821", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126821" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6fbe" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127516", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127516" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6fbf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127720", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127720" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6fc0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127913", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127913" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6fc1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128007", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2128007" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6fc2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128015", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128015" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6fc3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128129", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128129" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6fc4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128635", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128635" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6fc5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128702", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2128702" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6fc6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129212", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129212" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6fc7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129233", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129233" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6fc8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129337", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129337" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6fc9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129346", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129346" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6fca" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129444", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129444" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6fcb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129902", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129902" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6fcc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130129", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130129" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6fcd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130616", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130616" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6fce" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131153", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2131153" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6fcf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132008", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2132008" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6fd0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132127", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2132127" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6fd1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132602", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132602" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6fd2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132650", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132650" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6fd3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132722", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132722" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6fd4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133420", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133420" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6fd5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133531", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133531" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6fd6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133829", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133829" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6fd7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134115", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134115" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6fd8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134319", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134319" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6fd9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134438", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134438" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6fda" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135529", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135529" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6fdb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135602", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135602" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6fdc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135813", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2135813" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6fdd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136132", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136132" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6fde" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136558", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136558" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6fdf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136565", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136565" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6fe0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137043", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137043" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6fe1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137121", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137121" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6fe2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137141", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137141" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6fe3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137341", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137341" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6fe4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137454", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137454" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6fe5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137601", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137601" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6fe6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137915", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137915" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6fe7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138042", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138042" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6fe8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138113", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138113" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6fe9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138210", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138210" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6fea" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138347", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2138347" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6feb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139420", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139420" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6fec" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140424", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140424" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6fed" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140514", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140514" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6fee" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140636", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140636" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6fef" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141752", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141752" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ff0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142010", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2142010" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ff1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142026", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2142026" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ff2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142110", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142110" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ff3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142121", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142121" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ff4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144807", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144807" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ff5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144808", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144808" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ff6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140910", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2140910" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ff7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143222", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143222" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ff8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144710", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2144710" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ff9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144713", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144713" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ffa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21602141305", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2141305" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ffb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141642", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2141642" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ffc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142226", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142226" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ffd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702142404", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2142404" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6ffe" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702142517", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2142517" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_6fff" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802142624", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142624" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7000" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902142824", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2142824" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7001" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902142925", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142925" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7002" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143036", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143036" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7003" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103145021", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145021" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7004" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145307", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2145307" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7005" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145325", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145325" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7006" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204145912", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2145912" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7007" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204146003", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2146003" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7008" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304146207", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146207" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7009" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146519", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146519" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_700a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502147006", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2147006" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_700b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147933", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147933" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_700c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147950", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2147950" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_700d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133332", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133332" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_700e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112334", + "neg_nil_inc_fam_households": 7, + "negative_nil_income_tot": 15, + "sa1_7dig16": "2112334" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_700f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205131902", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131902" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7019" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132433", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132433" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7024" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132037", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 53, + "sa1_7dig16": "2132037" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7031" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133511", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2133511" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7032" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133705", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2133705" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7038" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110117", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110117" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7039" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114936", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2114936" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_703a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114946", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2114946" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_703b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102004", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2102004" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_703c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102208", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2102208" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_703d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111102", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2111102" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_703e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111116", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111116" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_703f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111427", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111427" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7040" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100309", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2100309" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7046" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100316", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2100316" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7047" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100423", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2100423" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7048" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100614", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100614" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7049" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100829", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2100829" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_704a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802142620", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142620" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_704b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20102101101", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101101" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_704c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20103101306", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101306" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_704d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102815", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2102815" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_704e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202103012", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2103012" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_704f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802142634", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2142634" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7050" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202103102", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103102" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7051" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103859", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2103859" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7052" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104211", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104211" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7053" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104212", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104212" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7054" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104215", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104215" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7055" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104318", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104318" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7056" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104416", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104416" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7057" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104534", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104534" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7058" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104703", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104703" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7059" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104711", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104711" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_705a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105306", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105306" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_705b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105336", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2105336" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_705c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105711", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105711" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_705d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106615", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106615" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_705e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403106917", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106917" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_705f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107452", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107452" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7060" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107632", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107632" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7061" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111509", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2111509" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7062" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604111905", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111905" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7063" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112242", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 36, + "sa1_7dig16": "2112242" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7064" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112331", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 14, + "sa1_7dig16": "2112331" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7065" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112332", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 12, + "sa1_7dig16": "2112332" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7066" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108139", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108139" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7067" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108211", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108211" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7068" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109415", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2109415" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7069" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109425", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109425" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_706a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109614", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2109614" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_706b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109723", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109723" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_706c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109768", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109768" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_706d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110010", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110010" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_706e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110805", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110805" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_706f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112409", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2112409" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7070" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112504", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2112504" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7071" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112628", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2112628" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7072" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113203", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 11, + "sa1_7dig16": "2113203" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7073" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113317", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2113317" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7074" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114017", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2114017" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7075" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114316", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114316" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7076" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114517", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114517" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7077" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114706", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114706" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7078" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114724", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 11, + "sa1_7dig16": "2114724" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7079" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114825", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114825" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_707a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114916", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114916" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_707b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115101", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115101" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_707c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115226", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115226" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_707d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115413", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2115413" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_707e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115542", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115542" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_707f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702116018", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116018" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7080" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116315", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 20, + "sa1_7dig16": "2116315" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7081" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116416", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2116416" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7082" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116507", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116507" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7083" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116508", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116508" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7084" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116808", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116808" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7085" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116815", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116815" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7086" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117314", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117314" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7087" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117427", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117427" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7088" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117441", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117441" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7089" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117444", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117444" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_708a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117712", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2117712" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_708b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117731", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117731" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_708c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117907", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117907" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_708d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117925", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117925" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_708e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802118116", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2118116" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_708f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119031", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119031" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7090" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119423", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2119423" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7091" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119901", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2119901" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7092" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120218", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120218" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7093" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120512", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2120512" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7094" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122336", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2122336" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7095" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122403", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122403" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7096" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124012", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124012" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7097" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121006", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121006" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7098" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121207", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121207" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7099" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904121935", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2121935" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_709a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125113", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125113" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_709b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122407", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2122407" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_709c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122422", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122422" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_709d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122426", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122426" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_709e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21002123515", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123515" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_709f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123725", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2123725" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70a0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124204", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124204" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70a1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124225", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124225" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70a2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124546", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124546" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70a3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124625", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124625" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70a4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124921", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124921" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70a5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124946", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124946" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70a6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005125010", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2125010" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70a7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125827", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125827" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70a8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101126010", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2126010" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70a9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101126037", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126037" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70aa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127116", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2127116" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70ab" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127129", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127129" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70ac" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128820", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128820" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70ad" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132226", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132226" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70ae" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21102126104", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126104" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70af" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127325", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127325" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70b0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127634", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2127634" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70b1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128401", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128401" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70b2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128910", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128910" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70b3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129114", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2129114" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70b4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129252", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129252" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70b5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129263", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129263" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70b6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129356", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129356" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70b7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130022", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2130022" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70b8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204130912", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2130912" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70b9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131443", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131443" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70ba" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129409", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2129409" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70bb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129425", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2129425" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70bc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129519", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2129519" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70bd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132441", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132441" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70be" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132632", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2132632" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70bf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132748", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132748" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70c0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133043", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133043" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70c1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133045", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133045" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70c2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133229", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133229" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70c3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133240", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133240" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70c4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133428", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133428" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70c5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133506", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2133506" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70c6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133836", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133836" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70c7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301134018", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134018" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70c8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301134037", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134037" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70c9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134222", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134222" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70ca" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134325", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2134325" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70cb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134502", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134502" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70cc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137451", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137451" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70cd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134620", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134620" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70ce" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134634", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134634" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70cf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134926", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134926" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70d0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135305", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2135305" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70d1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139023", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139023" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70d2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135502", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135502" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70d3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135508", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135508" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70d4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135639", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135639" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70d5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135701", + "neg_nil_inc_fam_households": 9, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2135701" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70d6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136131", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136131" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70d7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136622", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2136622" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70d8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137439", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137439" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70d9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137447", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137447" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70da" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137509", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137509" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70db" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137716", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137716" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70dc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137942", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137942" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70dd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138135", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138135" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70de" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138209", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2138209" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70df" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138340", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138340" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70e0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138422", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138422" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70e1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501138905", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138905" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70e2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140633", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140633" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70e3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140804", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140804" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70e4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140903", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2140903" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70e5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21602141413", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141413" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70e6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141905", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2141905" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70e7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142126", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2142126" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70e8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702142433", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2142433" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70e9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702142505", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2142505" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70ea" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802142612", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2142612" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70eb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802142615", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2142615" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70ec" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902142825", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2142825" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70ed" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143310", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143310" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70ee" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143406", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2143406" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70ef" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143415", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143415" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70f0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143427", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143427" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70f1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143706", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2143706" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70f2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144636", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144636" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70f3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144830", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2144830" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70f4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103145124", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145124" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70f5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203145820", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145820" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70f6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204146024", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146024" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70f7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304146335", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146335" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70f8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146504", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2146504" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70f9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146524", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146524" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70fa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147102", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2147102" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70fb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704148019", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2148019" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70fc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114848", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2114848" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70fd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112232", + "neg_nil_inc_fam_households": 11, + "negative_nil_income_tot": 64, + "sa1_7dig16": "2112232" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_70fe" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115111", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115111" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_710d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133421", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2133421" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7114" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133538", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2133538" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7115" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137339", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137339" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_711e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140705", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2140705" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7122" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104606", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104606" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7123" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104608", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104608" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7124" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100110", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2100110" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7127" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100405", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100405" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7128" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100409", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2100409" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7129" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100434", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2100434" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_712a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100448", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100448" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_712b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100615", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100615" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_712c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100805", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100805" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_712d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20102101001", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101001" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_712e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20103101502", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2101502" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_712f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20103101512", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2101512" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7130" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102025", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2102025" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7131" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202103020", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2103020" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7132" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20203103319", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2103319" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7133" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20301103412", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103412" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7134" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20301103514", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103514" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7135" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103831", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2103831" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7136" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104040", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104040" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7137" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104109", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104109" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7138" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104152", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104152" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7139" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104329", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104329" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_713a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105328", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2105328" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_713b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105502", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105502" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_713c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106306", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106306" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_713d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106716", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106716" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_713e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403106921", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2106921" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_713f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604111802", + "neg_nil_inc_fam_households": 7, + "negative_nil_income_tot": 22, + "sa1_7dig16": "2111802" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7140" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115032", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115032" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7141" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107309", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107309" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7142" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107331", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2107331" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7143" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107430", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107430" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7144" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107924", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2107924" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7145" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114705", + "neg_nil_inc_fam_households": 7, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2114705" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7146" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114722", + "neg_nil_inc_fam_households": 8, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2114722" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7147" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108414", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108414" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7148" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108510", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2108510" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7149" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503108701", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2108701" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_714a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503108910", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2108910" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_714b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108513", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108513" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_714c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110402", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110402" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_714d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110539", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110539" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_714e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110605", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110605" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_714f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110726", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110726" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7150" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111003", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111003" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7151" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111241", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111241" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7152" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111418", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111418" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7153" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112407", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2112407" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7154" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605112904", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2112904" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7155" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113028", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2113028" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7156" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113410", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2113410" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7157" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607113905", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2113905" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7158" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114108", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114108" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7159" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114220", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2114220" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_715a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114405", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2114405" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_715b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114425", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114425" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_715c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114465", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114465" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_715d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115142", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2115142" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_715e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115212", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115212" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_715f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115620", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115620" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7160" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115715", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2115715" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7161" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115717", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115717" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7162" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115730", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2115730" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7163" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116223", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116223" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7164" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116423", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116423" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7165" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116501", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2116501" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7166" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116526", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 12, + "sa1_7dig16": "2116526" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7167" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116627", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116627" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7168" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116721", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116721" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7169" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117037", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117037" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_716a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117308", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117308" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_716b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117315", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117315" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_716c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117415", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117415" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_716d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117718", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2117718" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_716e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117741", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 16, + "sa1_7dig16": "2117741" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_716f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117811", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117811" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7170" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117901", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117901" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7171" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118303", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118303" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7172" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118508", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2118508" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7173" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118626", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118626" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7174" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119305", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119305" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7175" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119320", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119320" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7176" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119507", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119507" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7177" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119521", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119521" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7178" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119622", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119622" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7179" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120852", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120852" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_717a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903120944", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120944" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_717b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123726", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2123726" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_717c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121414", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121414" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_717d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121417", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121417" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_717e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124107", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124107" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_717f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124218", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124218" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7180" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124628", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124628" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7181" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122126", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122126" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7182" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122321", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2122321" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7183" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122926", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2122926" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7184" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122954", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2122954" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7185" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124516", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124516" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7186" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126745", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2126745" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7187" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001123014", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123014" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7188" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001123116", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123116" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7189" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123612", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123612" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_718a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123711", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123711" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_718b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133040", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2133040" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_718c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125118", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2125118" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_718d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125406", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125406" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_718e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125620", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2125620" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_718f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125708", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125708" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7190" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125805", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2125805" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7191" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101126002", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2126002" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7192" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126735", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126735" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7193" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126808", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126808" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7194" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104126906", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2126906" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7195" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127214", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2127214" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7196" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127430", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127430" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7197" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127710", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2127710" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7198" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127717", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127717" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7199" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127818", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127818" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_719a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127830", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2127830" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_719b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128010", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128010" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_719c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128013", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128013" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_719d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131325", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131325" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_719e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128120", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128120" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_719f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128402", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128402" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71a0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129110", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2129110" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71a1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129220", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129220" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71a2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129250", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129250" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71a3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129340", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129340" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71a4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129435", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129435" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71a5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129502", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129502" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71a6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133416", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2133416" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71a7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130116", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130116" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71a8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130218", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130218" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71a9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130511", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130511" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71aa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130523", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130523" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71ab" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204130920", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130920" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71ac" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131155", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131155" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71ad" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131244", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2131244" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71ae" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131817", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131817" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71af" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132014", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 18, + "sa1_7dig16": "2132014" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71b0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132026", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 21, + "sa1_7dig16": "2132026" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71b1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132040", + "neg_nil_inc_fam_households": 23, + "negative_nil_income_tot": 99, + "sa1_7dig16": "2132040" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71b2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132227", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2132227" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71b3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132330", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132330" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71b4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132501", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132501" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71b5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132715", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132715" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71b6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301132811", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132811" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71b7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133036", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133036" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71b8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132509", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132509" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71b9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132701", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132701" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71ba" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133305", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133305" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71bb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301134005", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134005" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71bc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134219", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134219" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71bd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303135103", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2135103" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71be" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303135105", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135105" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71bf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303135118", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2135118" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71c0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135303", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2135303" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71c1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135332", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2135332" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71c2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135631", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2135631" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71c3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136120", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136120" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71c4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136127", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136127" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71c5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136130", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136130" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71c6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136212", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136212" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71c7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136219", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136219" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71c8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136313", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136313" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71c9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136950", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136950" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71ca" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137228", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137228" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71cb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137510", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2137510" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71cc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137620", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137620" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71cd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137621", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2137621" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71ce" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137623", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2137623" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71cf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137943", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137943" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71d0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138103", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138103" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71d1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138346", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2138346" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71d2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138512", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138512" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71d3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138518", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138518" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71d4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501138601", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138601" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71d5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501138825", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138825" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71d6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139218", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139218" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71d7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502139506", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139506" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71d8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502139520", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139520" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71d9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140107", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2140107" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71da" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140301", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2140301" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71db" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140414", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140414" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71dc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601141014", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141014" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71dd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21602141101", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2141101" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71de" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141515", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2141515" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71df" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141626", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2141626" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71e0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902142802", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2142802" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71e1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141809", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2141809" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71e2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141811", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141811" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71e3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141920", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141920" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71e4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143104", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143104" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71e5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143201", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143201" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71e6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142022", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142022" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71e7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142224", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2142224" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71e8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142301", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142301" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71e9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802142723", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2142723" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71ea" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143219", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2143219" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71eb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143424", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143424" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71ec" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143523", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143523" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71ed" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144201", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144201" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71ee" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144607", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2144607" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71ef" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144708", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144708" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71f0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144823", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2144823" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71f1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103145007", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145007" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71f2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145305", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2145305" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71f3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145309", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145309" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71f4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145329", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145329" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71f5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145430", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145430" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71f6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304146308", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2146308" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71f7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146401", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146401" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71f8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146517", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2146517" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71f9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146703", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146703" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71fa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146709", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2146709" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71fb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146815", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146815" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71fc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146821", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146821" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71fd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502147026", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2147026" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71fe" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147216", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2147216" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_71ff" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147404", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147404" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7200" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147805", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2147805" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7201" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147815", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2147815" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7202" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502146931", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2146931" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7203" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116313", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 13, + "sa1_7dig16": "2116313" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7204" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131602", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131602" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7206" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116329", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116329" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7208" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134441", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134441" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7234" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134611", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2134611" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7235" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100412", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100412" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7236" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100443", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100443" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7237" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20102101018", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101018" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7238" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20102101117", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2101117" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7239" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20102101203", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2101203" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_723a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113517", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2113517" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_723b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113801", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113801" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_723c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20102101210", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101210" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_723d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102603", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102603" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_723e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102905", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102905" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_723f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114020", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114020" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7240" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114415", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114415" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7241" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20102101212", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2101212" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7242" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201101812", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101812" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7243" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102003", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102003" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7244" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102518", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102518" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7245" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202103105", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103105" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7246" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20301103507", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103507" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7247" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115353", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115353" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7248" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20301103605", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103605" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7249" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20301103614", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103614" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_724a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104515", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104515" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_724b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20301103616", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2103616" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_724c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103701", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2103701" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_724d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103723", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2103723" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_724e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103833", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2103833" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_724f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103915", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103915" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7250" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104011", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104011" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7251" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107925", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2107925" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7252" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303104832", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2104832" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7253" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105040", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2105040" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7254" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105512", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105512" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7255" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110616", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110616" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7256" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111109", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111109" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7257" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111113", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2111113" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7258" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105915", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2105915" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7259" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105916", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105916" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_725a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106511", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2106511" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_725b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403106924", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106924" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_725c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107440", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107440" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_725d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107510", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107510" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_725e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107936", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107936" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_725f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111510", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2111510" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7260" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111513", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 11, + "sa1_7dig16": "2111513" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7261" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604111713", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111713" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7262" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604111904", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111904" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7263" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112209", + "neg_nil_inc_fam_households": 8, + "negative_nil_income_tot": 18, + "sa1_7dig16": "2112209" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7264" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112237", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 37, + "sa1_7dig16": "2112237" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7265" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112244", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 33, + "sa1_7dig16": "2112244" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7266" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112309", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 15, + "sa1_7dig16": "2112309" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7267" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605112920", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2112920" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7268" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108222", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2108222" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7269" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108502", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2108502" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_726a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109433", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109433" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_726b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110007", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110007" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_726c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110520", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110520" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_726d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110524", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110524" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_726e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116505", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2116505" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_726f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116935", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116935" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7270" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116944", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116944" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7271" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117025", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117025" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7272" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117029", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117029" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7273" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117202", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117202" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7274" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117407", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2117407" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7275" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117910", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117910" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7276" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118834", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2118834" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7277" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119008", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119008" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7278" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137430", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137430" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7279" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119311", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119311" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_727a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119324", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2119324" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_727b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119930", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119930" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_727c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120325", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120325" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_727d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120331", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120331" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_727e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120848", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120848" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_727f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904121615", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121615" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7280" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122114", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2122114" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7281" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122115", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122115" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7282" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501138617", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138617" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7283" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122341", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2122341" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7284" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122416", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122416" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7285" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122425", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122425" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7286" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21002123224", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2123224" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7287" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123916", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123916" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7288" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124123", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124123" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7289" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124317", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124317" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_728a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124341", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2124341" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_728b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124717", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2124717" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_728c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125431", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125431" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_728d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125621", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2125621" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_728e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125717", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2125717" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_728f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125910", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2125910" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7290" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101126046", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126046" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7291" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21102126117", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2126117" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7292" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126540", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126540" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7293" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128202", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128202" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7294" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132114", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2132114" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7295" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126603", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126603" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7296" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126707", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2126707" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7297" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104126920", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2126920" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7298" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127219", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127219" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7299" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127416", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2127416" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_729a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128721", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128721" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_729b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132213", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2132213" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_729c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127629", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127629" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_729d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127803", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127803" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_729e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127820", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127820" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_729f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127904", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2127904" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72a0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128102", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128102" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72a1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128136", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128136" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72a2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128230", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128230" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72a3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128416", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128416" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72a4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128513", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128513" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72a5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128604", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128604" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72a6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301134024", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134024" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72a7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128911", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128911" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72a8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129140", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2129140" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72a9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129325", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129325" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72aa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134233", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2134233" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72ab" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129412", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2129412" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72ac" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129918", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2129918" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72ad" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130111", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2130111" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72ae" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130224", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130224" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72af" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130413", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130413" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72b0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130423", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2130423" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72b1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131417", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131417" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72b2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131102", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131102" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72b3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131152", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2131152" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72b4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301132904", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2132904" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72b5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133051", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133051" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72b6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133524", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133524" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72b7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133619", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133619" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72b8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133711", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2133711" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72b9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133807", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133807" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72ba" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134814", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2134814" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72bb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303135004", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2135004" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72bc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135307", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2135307" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72bd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135343", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135343" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72be" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135501", + "neg_nil_inc_fam_households": 17, + "negative_nil_income_tot": 19, + "sa1_7dig16": "2135501" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72bf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135622", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2135622" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72c0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135630", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135630" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72c1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135638", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2135638" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72c2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136108", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2136108" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72c3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003143818", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2143818" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72c4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136613", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2136613" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72c5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136927", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136927" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72c6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136951", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136951" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72c7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137015", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137015" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72c8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137110", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2137110" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72c9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137150", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137150" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72ca" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137203", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137203" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72cb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137426", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137426" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72cc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137505", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2137505" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72cd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137518", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2137518" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72ce" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137534", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137534" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72cf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137538", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137538" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72d0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137711", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137711" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72d1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137937", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137937" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72d2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138337", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138337" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72d3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140401", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2140401" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72d4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140419", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2140419" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72d5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140607", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140607" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72d6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140614", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2140614" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72d7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140711", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2140711" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72d8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21602141301", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2141301" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72d9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21602141420", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141420" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72da" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21602141315", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141315" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72db" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21602141416", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141416" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72dc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141609", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141609" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72dd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141907", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2141907" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72de" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142120", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142120" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72df" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702142407", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142407" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72e0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902142833", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2142833" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72e1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902142915", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2142915" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72e2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143102", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143102" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72e3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143127", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143127" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72e4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003143802", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143802" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72e5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003143803", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143803" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72e6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003143804", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2143804" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72e7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003143829", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143829" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72e8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003143832", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2143832" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72e9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003143847", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143847" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72ea" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003143902", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143902" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72eb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003143905", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143905" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72ec" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144613", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144613" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72ed" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144618", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2144618" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72ee" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144623", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2144623" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72ef" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144650", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2144650" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72f0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144715", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144715" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72f1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144831", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144831" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72f2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103145030", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145030" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72f3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103145111", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2145111" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72f4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304146203", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146203" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72f5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304146321", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146321" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72f6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146539", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146539" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72f7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146602", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146602" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72f8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502146924", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2146924" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72f9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147412", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147412" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72fa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100345", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2100345" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72fb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103836", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2103836" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72fc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113708", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113708" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72fd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110821", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110821" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_72ff" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103931", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103931" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_731d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104023", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104023" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_731e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104104", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104104" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_731f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104112", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104112" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7320" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110848", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110848" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7321" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111220", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2111220" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7322" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111328", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111328" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7324" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100108", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2100108" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7328" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100336", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100336" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7329" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100337", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100337" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_732a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100512", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100512" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_732b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100832", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100832" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_732c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111407", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111407" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_732d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100836", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100836" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_732e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201101832", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101832" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_732f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102118", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102118" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7330" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102721", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102721" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7331" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105046", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105046" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7332" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106714", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106714" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7333" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403106923", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106923" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7334" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107709", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107709" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7335" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107712", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107712" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7336" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202103005", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2103005" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7337" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20203103203", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103203" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7338" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20301103401", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103401" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7339" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20301103410", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103410" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_733a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103710", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103710" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_733b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107940", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107940" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_733c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108106", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108106" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_733d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108111", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108111" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_733e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503108725", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108725" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_733f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115116", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 82, + "sa1_7dig16": "2115116" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7340" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802118204", + "neg_nil_inc_fam_households": 10, + "negative_nil_income_tot": 41, + "sa1_7dig16": "2118204" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7341" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108204", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2108204" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7342" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110304", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110304" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7343" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108206", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108206" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7344" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108427", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2108427" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7345" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503108723", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2108723" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7346" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503108923", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2108923" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7347" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109011", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2109011" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7348" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109347", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2109347" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7349" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109406", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109406" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_734a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109714", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2109714" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_734b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110102", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110102" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_734c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110504", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110504" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_734d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111415", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111415" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_734e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111426", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111426" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_734f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111506", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111506" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7350" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604111701", + "neg_nil_inc_fam_households": 10, + "negative_nil_income_tot": 62, + "sa1_7dig16": "2111701" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7351" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604111728", + "neg_nil_inc_fam_households": 18, + "negative_nil_income_tot": 116, + "sa1_7dig16": "2111728" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7352" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604111902", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2111902" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7353" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112212", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 38, + "sa1_7dig16": "2112212" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7354" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112503", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2112503" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7355" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113009", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2113009" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7356" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115118", + "neg_nil_inc_fam_households": 11, + "negative_nil_income_tot": 26, + "sa1_7dig16": "2115118" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7357" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119904", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119904" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7358" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113101", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2113101" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7359" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113312", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2113312" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_735a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113336", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113336" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_735b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113338", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2113338" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_735c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113625", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2113625" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_735d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114018", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114018" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_735e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114843", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114843" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_735f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114901", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114901" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7360" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114914", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114914" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7361" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115113", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2115113" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7362" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115121", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2115121" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7363" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115742", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2115742" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7364" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115928", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2115928" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7365" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115932", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115932" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7366" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116203", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116203" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7367" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116321", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2116321" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7368" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116529", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2116529" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7369" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116607", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2116607" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_736a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116701", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116701" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_736b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116831", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116831" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_736c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116832", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116832" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_736d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116901", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116901" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_736e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117024", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2117024" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_736f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117313", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2117313" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7370" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117320", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117320" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7371" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117432", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2117432" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7372" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117726", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117726" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7373" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118845", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2118845" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7374" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118909", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118909" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7375" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119010", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119010" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7376" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119034", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119034" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7377" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119121", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119121" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7378" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119323", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119323" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7379" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119509", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119509" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_737a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119736", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119736" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_737b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119806", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119806" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_737c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119903", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2119903" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_737d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120233", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120233" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_737e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120406", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120406" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_737f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120711", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120711" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7380" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120713", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 11, + "sa1_7dig16": "2120713" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7381" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120715", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2120715" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7382" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120826", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120826" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7383" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120832", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120832" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7384" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903120901", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120901" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7385" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123723", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123723" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7386" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904121713", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121713" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7387" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122006", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122006" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7388" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122313", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2122313" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7389" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122319", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2122319" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_738a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122602", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2122602" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_738b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122919", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2122919" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_738c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21002123214", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123214" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_738d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21002123232", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2123232" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_738e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124031", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124031" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_738f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124111", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124111" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7390" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124314", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2124314" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7391" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124334", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124334" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7392" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124513", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2124513" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7393" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125114", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2125114" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7394" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125415", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125415" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7395" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21102126111", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2126111" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7396" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21102126122", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2126122" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7397" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125911", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125911" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7398" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21102126101", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2126101" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7399" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126736", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126736" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_739a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126803", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126803" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_739b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127111", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2127111" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_739c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127112", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127112" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_739d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127327", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127327" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_739e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127625", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127625" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_739f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127844", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127844" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73a0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128119", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128119" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73a1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128213", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128213" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73a2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128227", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128227" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73a3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128301", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128301" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73a4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128315", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128315" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73a5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128522", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128522" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73a6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131225", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131225" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73a7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131420", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131420" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73a8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128602", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2128602" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73a9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128706", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2128706" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73aa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128726", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2128726" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73ab" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128932", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128932" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73ac" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129327", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2129327" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73ad" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129329", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2129329" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73ae" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129505", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2129505" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73af" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129723", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129723" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73b0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130219", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130219" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73b1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130620", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130620" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73b2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130626", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130626" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73b3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131120", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2131120" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73b4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131204", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131204" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73b5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131447", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2131447" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73b6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131709", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2131709" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73b7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205131933", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2131933" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73b8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132211", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132211" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73b9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132423", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2132423" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73ba" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301132809", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132809" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73bb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133029", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133029" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73bc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133049", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133049" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73bd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133234", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133234" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73be" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133310", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133310" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73bf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133411", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2133411" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73c0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133835", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133835" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73c1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134130", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134130" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73c2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134305", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2134305" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73c3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134703", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134703" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73c4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134733", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2134733" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73c5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303135119", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2135119" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73c6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135310", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2135310" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73c7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135810", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2135810" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73c8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137911", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137911" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73c9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135826", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2135826" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73ca" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135908", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2135908" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73cb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136121", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136121" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73cc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136150", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136150" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73cd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136220", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136220" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73ce" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136304", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136304" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73cf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140720", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2140720" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73d0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136514", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136514" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73d1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136553", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136553" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73d2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136921", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136921" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73d3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136931", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136931" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73d4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136948", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2136948" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73d5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136962", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136962" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73d6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137046", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137046" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73d7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137201", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2137201" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73d8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140722", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2140722" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73d9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21602141204", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141204" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73da" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137226", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2137226" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73db" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137323", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2137323" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73dc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137410", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137410" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73dd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137425", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2137425" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73de" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137444", + "neg_nil_inc_fam_households": 7, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2137444" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73df" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137537", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137537" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73e0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137540", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2137540" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73e1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137604", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137604" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73e2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137903", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137903" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73e3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138313", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138313" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73e4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138449", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2138449" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73e5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138545", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2138545" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73e6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502139509", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139509" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73e7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502139807", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2139807" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73e8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140006", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140006" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73e9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140015", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2140015" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73ea" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143013", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2143013" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73eb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140622", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140622" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73ec" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140708", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2140708" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73ed" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21602141327", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141327" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73ee" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141513", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2141513" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73ef" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141632", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141632" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73f0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142108", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2142108" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73f1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143407", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2143407" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73f2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142117", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142117" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73f3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702142415", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142415" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73f4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702142503", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 11, + "sa1_7dig16": "2142503" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73f5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902142903", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2142903" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73f6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902142923", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142923" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73f7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143004", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2143004" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73f8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144106", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144106" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73f9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145407", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145407" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73fa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145420", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2145420" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73fb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203145822", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145822" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73fc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204146016", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146016" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73fd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146612", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2146612" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73fe" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146810", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2146810" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_73ff" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502147016", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147016" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7400" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147406", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2147406" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7401" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147703", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2147703" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7402" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147914", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147914" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7403" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147939", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147939" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7404" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100842", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100842" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7429" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100845", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100845" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_742a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100308", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2100308" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_742b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100804", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2100804" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_742c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100834", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2100834" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_742d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102027", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102027" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_742e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20102101113", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2101113" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_742f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20103101601", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101601" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7430" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20103101701", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2101701" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7431" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20103101702", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2101702" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7432" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201101806", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101806" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7433" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102006", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102006" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7434" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102037", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102037" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7435" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102103", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2102103" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7436" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102104", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2102104" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7437" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102311", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2102311" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7438" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202103010", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103010" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7439" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202103024", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2103024" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_743a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20203103205", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103205" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_743b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604111708", + "neg_nil_inc_fam_households": 8, + "negative_nil_income_tot": 126, + "sa1_7dig16": "2111708" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_743c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103717", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103717" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_743d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104144", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104144" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_743e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104247", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104247" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_743f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104339", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104339" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7440" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104424", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104424" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7441" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104619", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104619" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7442" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303104810", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104810" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7443" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107941", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107941" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7444" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303104813", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2104813" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7445" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303104901", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104901" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7446" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105039", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2105039" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7447" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105329", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105329" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7448" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105520", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105520" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7449" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105707", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2105707" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_744a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106327", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2106327" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_744b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403106912", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2106912" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_744c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403106922", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2106922" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_744d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107003", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2107003" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_744e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107441", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107441" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_744f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107444", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107444" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7450" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107636", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2107636" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7451" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107935", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107935" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7452" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108212", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108212" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7453" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108521", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2108521" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7454" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109317", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109317" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7455" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109325", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109325" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7456" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109533", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109533" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7457" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109722", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2109722" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7458" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109753", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109753" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7459" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111303", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111303" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_745a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109772", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2109772" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_745b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109773", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2109773" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_745c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110405", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2110405" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_745d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110514", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110514" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_745e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110547", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110547" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_745f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110728", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110728" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7460" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110835", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110835" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7461" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110857", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110857" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7462" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110908", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110908" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7463" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111126", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111126" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7464" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112114", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2112114" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7465" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112224", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 39, + "sa1_7dig16": "2112224" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7466" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112320", + "neg_nil_inc_fam_households": 10, + "negative_nil_income_tot": 22, + "sa1_7dig16": "2112320" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7467" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112418", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2112418" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7468" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605112810", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2112810" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7469" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113316", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2113316" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_746a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113416", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113416" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_746b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113632", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113632" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_746c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113710", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2113710" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_746d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114213", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114213" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_746e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114802", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114802" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_746f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114911", + "neg_nil_inc_fam_households": 7, + "negative_nil_income_tot": 11, + "sa1_7dig16": "2114911" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7470" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115029", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115029" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7471" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115108", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115108" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7472" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115115", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115115" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7473" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115138", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115138" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7474" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115217", + "neg_nil_inc_fam_households": 8, + "negative_nil_income_tot": 19, + "sa1_7dig16": "2115217" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7475" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115720", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115720" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7476" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115902", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115902" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7477" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702116030", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116030" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7478" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116710", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116710" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7479" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117102", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117102" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_747a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117117", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117117" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_747b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117234", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117234" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_747c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117745", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2117745" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_747d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117820", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117820" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_747e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117830", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2117830" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_747f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117915", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2117915" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7480" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802118110", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2118110" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7481" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118612", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2118612" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7482" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118620", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118620" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7483" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118844", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118844" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7484" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119014", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2119014" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7485" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120840", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2120840" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7486" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119316", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119316" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7487" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119520", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2119520" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7488" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119729", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119729" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7489" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119902", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119902" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_748a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120026", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120026" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_748b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120222", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120222" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_748c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120708", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120708" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_748d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120745", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120745" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_748e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120802", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2120802" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_748f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120808", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120808" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7490" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129450", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129450" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7491" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121536", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121536" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7492" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904121703", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2121703" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7493" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122421", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122421" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7494" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122904", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122904" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7495" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122912", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122912" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7496" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125413", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125413" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7497" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125638", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2125638" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7498" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21102126119", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126119" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7499" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122924", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2122924" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_749a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001123109", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2123109" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_749b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126330", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126330" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_749c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126529", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2126529" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_749d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128124", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2128124" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_749e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128128", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128128" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_749f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21002123406", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2123406" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74a0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124118", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124118" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74a1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124148", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124148" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74a2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124713", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2124713" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74a3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124914", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124914" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74a4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126717", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126717" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74a5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126734", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126734" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74a6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126741", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126741" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74a7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127126", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2127126" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74a8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127501", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127501" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74a9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127804", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127804" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74aa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127822", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2127822" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74ab" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128133", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128133" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74ac" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128134", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128134" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74ad" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128229", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128229" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74ae" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129137", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129137" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74af" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128619", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2128619" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74b0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128629", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128629" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74b1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129503", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129503" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74b2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129719", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129719" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74b3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130215", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130215" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74b4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130232", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130232" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74b5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130510", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2130510" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74b6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130536", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2130536" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74b7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130551", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2130551" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74b8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130611", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130611" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74b9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130802", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130802" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74ba" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130806", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130806" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74bb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204130931", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130931" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74bc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131109", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2131109" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74bd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131129", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131129" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74be" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131151", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131151" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74bf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131311", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131311" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74c0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301132802", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2132802" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74c1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131441", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131441" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74c2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132117", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2132117" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74c3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132205", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132205" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74c4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132251", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2132251" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74c5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132337", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132337" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74c6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132513", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2132513" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74c7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132530", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2132530" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74c8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132713", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2132713" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74c9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21602141113", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2141113" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74ca" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133238", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2133238" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74cb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133532", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133532" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74cc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133608", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133608" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74cd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133616", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2133616" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74ce" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301134030", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2134030" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74cf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134310", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134310" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74d0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134311", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134311" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74d1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134616", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2134616" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74d2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134720", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134720" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74d3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135348", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2135348" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74d4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135642", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2135642" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74d5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135644", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2135644" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74d6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144644", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144644" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74d7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304136009", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136009" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74d8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304136020", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2136020" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74d9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136201", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2136201" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74da" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136632", + "neg_nil_inc_fam_households": 13, + "negative_nil_income_tot": 22, + "sa1_7dig16": "2136632" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74db" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137006", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137006" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74dc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103145004", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2145004" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74dd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137019", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137019" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74de" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137048", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137048" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74df" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137222", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2137222" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74e0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137415", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2137415" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74e1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137434", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137434" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74e2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137710", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137710" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74e3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138123", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138123" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74e4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138410", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138410" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74e5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103145117", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145117" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74e6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138516", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138516" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74e7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501138701", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138701" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74e8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501138812", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138812" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74e9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501138822", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138822" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74ea" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139217", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139217" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74eb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140123", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2140123" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74ec" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21602141421", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2141421" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74ed" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142216", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142216" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74ee" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702142409", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2142409" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74ef" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702142425", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2142425" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74f0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902142910", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2142910" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74f1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143009", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2143009" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74f2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147110", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147110" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74f3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143301", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143301" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74f4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143617", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2143617" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74f5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144101", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144101" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74f6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144110", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144110" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74f7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144209", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2144209" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74f8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144418", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2144418" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74f9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144615", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144615" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74fa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145618", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2145618" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74fb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203145806", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145806" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74fc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204146018", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146018" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74fd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146533", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146533" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74fe" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146706", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146706" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_74ff" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502146933", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146933" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7500" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502147021", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2147021" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7501" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147816", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147816" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7502" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147927", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147927" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7503" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102727", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102727" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7539" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100204", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100204" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_753a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100513", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100513" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_753b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100814", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100814" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_753c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103921", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103921" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_753d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104044", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104044" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_753e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20102101207", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2101207" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_753f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20103101408", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2101408" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7540" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20103101708", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2101708" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7541" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201101824", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2101824" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7542" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201101912", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2101912" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7543" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102201", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102201" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7544" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102206", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2102206" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7545" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102224", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102224" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7546" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102226", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102226" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7547" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105712", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2105712" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7548" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104151", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104151" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7549" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104248", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104248" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_754a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104603", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104603" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_754b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104723", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104723" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_754c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303104816", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104816" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_754d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105326", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2105326" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_754e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105337", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2105337" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_754f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105629", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105629" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7550" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401106202", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106202" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7551" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106618", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106618" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7552" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107930", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2107930" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7553" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108104", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108104" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7554" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108602", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2108602" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7555" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503108909", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2108909" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7556" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110909", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110909" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7557" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107107", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107107" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7558" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107460", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2107460" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7559" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107916", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107916" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_755a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108520", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2108520" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_755b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108522", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2108522" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_755c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110838", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110838" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_755d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109021", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109021" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_755e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109329", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2109329" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_755f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109528", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109528" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7560" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109530", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2109530" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7561" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109625", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109625" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7562" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110013", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110013" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7563" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110116", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110116" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7564" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110407", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110407" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7565" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111141", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2111141" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7566" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111430", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111430" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7567" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111435", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2111435" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7568" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604111722", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111722" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7569" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604111908", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2111908" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_756a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112213", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 26, + "sa1_7dig16": "2112213" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_756b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112416", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2112416" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_756c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112609", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 14, + "sa1_7dig16": "2112609" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_756d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605112834", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2112834" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_756e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605112928", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2112928" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_756f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113224", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113224" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7570" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114434", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114434" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7571" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114452", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114452" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7572" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114836", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114836" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7573" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114929", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2114929" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7574" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115017", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115017" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7575" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115215", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2115215" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7576" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115220", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115220" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7577" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115228", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115228" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7578" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115314", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115314" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7579" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116827", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116827" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_757a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117629", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2117629" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_757b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122350", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122350" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_757c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123913", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2123913" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_757d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115355", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115355" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_757e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115525", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115525" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_757f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115913", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115913" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7580" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116712", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2116712" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7581" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116804", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116804" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7582" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116805", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116805" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7583" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118525", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118525" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7584" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118606", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118606" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7585" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118830", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2118830" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7586" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119525", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119525" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7587" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119610", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2119610" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7588" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120855", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120855" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7589" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120224", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120224" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_758a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120240", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120240" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_758b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120416", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120416" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_758c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120526", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2120526" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_758d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120819", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120819" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_758e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904121948", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2121948" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_758f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122044", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2122044" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7590" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124021", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124021" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7591" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124524", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124524" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7592" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125101", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125101" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7593" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125935", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2125935" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7594" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101126034", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126034" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7595" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124157", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124157" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7596" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124337", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2124337" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7597" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21102126120", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2126120" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7598" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126644", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2126644" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7599" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127204", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127204" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_759a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127840", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2127840" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_759b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127911", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127911" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_759c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128123", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128123" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_759d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128126", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128126" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_759e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129010", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129010" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_759f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129219", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2129219" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75a0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128657", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128657" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75a1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128714", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128714" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75a2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128815", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128815" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75a3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128945", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2128945" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75a4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129001", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2129001" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75a5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129341", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2129341" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75a6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129465", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129465" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75a7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129706", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129706" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75a8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130028", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2130028" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75a9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130612", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130612" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75aa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204130925", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2130925" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75ab" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131015", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131015" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75ac" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133330", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2133330" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75ad" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129437", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129437" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75ae" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133320", + "neg_nil_inc_fam_households": 10, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2133320" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75af" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131114", + "neg_nil_inc_fam_households": 7, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2131114" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75b0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131323", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131323" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75b1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131442", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131442" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75b2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132007", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132007" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75b3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132152", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132152" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75b4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132645", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132645" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75b5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132708", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132708" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75b6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133313", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133313" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75b7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133314", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2133314" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75b8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301134036", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134036" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75b9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134109", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134109" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75ba" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134235", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134235" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75bb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134308", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134308" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75bc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134323", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134323" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75bd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134413", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134413" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75be" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135629", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2135629" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75bf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134506", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134506" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75c0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134715", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2134715" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75c1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134739", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134739" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75c2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134907", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2134907" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75c3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134920", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2134920" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75c4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303135229", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135229" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75c5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135314", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2135314" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75c6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135728", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135728" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75c7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135802", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135802" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75c8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135821", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2135821" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75c9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135907", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135907" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75ca" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136103", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2136103" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75cb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136128", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136128" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75cc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136249", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136249" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75cd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136923", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136923" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75ce" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137109", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137109" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75cf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137303", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137303" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75d0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137328", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2137328" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75d1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137335", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2137335" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75d2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137402", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137402" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75d3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137445", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137445" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75d4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137506", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137506" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75d5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138014", + "neg_nil_inc_fam_households": 7, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2138014" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75d6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138018", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138018" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75d7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138110", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138110" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75d8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138224", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138224" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75d9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138303", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138303" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75da" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138505", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138505" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75db" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138317", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138317" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75dc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138431", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2138431" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75dd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138434", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138434" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75de" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138523", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2138523" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75df" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501138611", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138611" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75e0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139410", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139410" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75e1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502139507", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139507" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75e2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502139511", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139511" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75e3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140105", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2140105" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75e4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140413", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140413" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75e5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140423", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140423" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75e6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601141012", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2141012" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75e7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21602141110", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2141110" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75e8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141631", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2141631" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75e9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141755", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141755" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75ea" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141806", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141806" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75eb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702142414", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2142414" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75ec" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802142608", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2142608" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75ed" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802142613", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2142613" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75ee" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802142701", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2142701" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75ef" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802142725", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142725" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75f0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143321", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2143321" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75f1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141914", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2141914" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75f2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143416", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2143416" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75f3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143419", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2143419" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75f4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143514", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143514" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75f5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143623", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143623" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75f6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003143801", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2143801" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75f7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003143812", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2143812" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75f8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003143831", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2143831" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75f9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145331", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2145331" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75fa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003143907", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143907" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75fb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144503", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144503" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75fc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144824", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144824" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75fd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103145010", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145010" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75fe" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103145020", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145020" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_75ff" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103145118", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145118" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7600" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145324", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2145324" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7601" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203145728", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145728" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7602" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204145907", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2145907" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7603" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204146020", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2146020" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7604" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146536", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146536" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7605" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146538", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146538" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7606" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146543", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146543" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7607" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146722", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146722" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7608" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146730", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2146730" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7609" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502146930", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146930" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_760a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502147004", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2147004" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_760b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502147032", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147032" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_760c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147605", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147605" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_760d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147918", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147918" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_760e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704148016", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2148016" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_760f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704148028", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2148028" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7610" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113421", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113421" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7611" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113322", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2113322" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_763c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100221", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2100221" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_763d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100228", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100228" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_763e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100332", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100332" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_763f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100410", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2100410" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7640" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100813", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2100813" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7641" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20102100909", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2100909" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7642" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20103101301", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2101301" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7643" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102005", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2102005" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7644" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102211", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102211" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7645" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102724", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102724" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7646" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202103009", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103009" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7647" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20203103202", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103202" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7648" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20301103511", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103511" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7649" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103724", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2103724" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_764a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103818", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103818" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_764b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103838", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2103838" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_764c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103861", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2103861" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_764d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103934", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103934" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_764e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103937", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2103937" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_764f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104046", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2104046" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7650" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104115", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104115" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7651" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104222", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104222" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7652" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104225", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2104225" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7653" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104714", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104714" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7654" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303104802", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104802" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7655" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303104804", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104804" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7656" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303104827", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104827" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7657" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303104909", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104909" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7658" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105104", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2105104" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7659" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105110", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2105110" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_765a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105716", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2105716" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_765b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106305", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106305" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_765c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106713", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106713" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_765d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112246", + "neg_nil_inc_fam_households": 65, + "negative_nil_income_tot": 269, + "sa1_7dig16": "2112246" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_765e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106730", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2106730" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_765f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107305", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2107305" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7660" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107102", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107102" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7661" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107215", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107215" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7662" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110209", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2110209" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7663" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110312", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110312" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7664" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107308", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2107308" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7665" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107328", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107328" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7666" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107433", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107433" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7667" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110522", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2110522" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7668" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107437", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2107437" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7669" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107718", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107718" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_766a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108120", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2108120" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_766b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108409", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108409" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_766c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108415", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2108415" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_766d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111124", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2111124" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_766e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111314", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111314" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_766f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108613", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108613" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7670" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109340", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2109340" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7671" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109342", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2109342" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7672" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109536", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109536" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7673" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109602", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109602" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7674" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109702", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109702" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7675" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110127", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110127" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7676" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110206", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110206" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7677" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114319", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2114319" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7678" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114456", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114456" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7679" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114845", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2114845" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_767a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114903", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114903" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_767b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115008", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115008" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_767c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115354", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115354" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_767d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115360", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115360" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_767e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115404", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115404" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_767f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116723", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2116723" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7680" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116807", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116807" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7681" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116912", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2116912" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7682" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115726", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2115726" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7683" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115907", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115907" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7684" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116106", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116106" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7685" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116612", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116612" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7686" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116616", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116616" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7687" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116619", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2116619" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7688" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116624", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116624" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7689" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116933", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2116933" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_768a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117018", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117018" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_768b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117032", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117032" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_768c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117318", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117318" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_768d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117326", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2117326" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_768e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117435", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117435" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_768f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117440", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117440" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7690" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117803", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117803" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7691" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117903", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117903" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7692" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117906", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117906" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7693" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802118114", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118114" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7694" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118603", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118603" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7695" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118613", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118613" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7696" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118625", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2118625" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7697" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118703", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118703" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7698" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118818", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2118818" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7699" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118916", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118916" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_769a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119009", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119009" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_769b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119332", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2119332" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_769c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119429", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119429" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_769d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119548", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119548" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_769e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119616", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2119616" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_769f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119813", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119813" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76a0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903120902", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120902" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76a1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903120940", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120940" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76a2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121322", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121322" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76a3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122013", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2122013" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76a4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122111", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2122111" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76a5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122122", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2122122" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76a6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122501", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2122501" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76a7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001123015", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123015" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76a8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21002123206", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123206" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76a9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21002123207", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2123207" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76aa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124205", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2124205" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76ab" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123605", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123605" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76ac" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123719", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2123719" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76ad" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123931", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123931" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76ae" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124156", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124156" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76af" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124336", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124336" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76b0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124706", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124706" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76b1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124905", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124905" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76b2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005125007", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2125007" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76b3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125119", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125119" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76b4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125614", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125614" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76b5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125715", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125715" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76b6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128218", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2128218" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76b7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21102126130", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2126130" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76b8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104126901", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2126901" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76b9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127225", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127225" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76ba" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127313", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2127313" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76bb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127514", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127514" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76bc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127802", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127802" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76bd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128655", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128655" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76be" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128321", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128321" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76bf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128508", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128508" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76c0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128643", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128643" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76c1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129713", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129713" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76c2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129911", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2129911" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76c3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130053", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130053" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76c4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130103", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130103" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76c5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130210", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130210" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76c6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130405", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130405" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76c7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130508", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130508" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76c8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131002", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131002" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76c9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131140", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2131140" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76ca" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131141", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131141" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76cb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131219", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131219" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76cc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131454", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2131454" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76cd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131606", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131606" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76ce" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131608", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131608" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76cf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132024", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 17, + "sa1_7dig16": "2132024" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76d0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132225", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 11, + "sa1_7dig16": "2132225" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76d1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132318", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2132318" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76d2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132538", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132538" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76d3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132604", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132604" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76d4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132605", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2132605" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76d5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132651", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132651" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76d6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132721", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2132721" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76d7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132734", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132734" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76d8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132746", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132746" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76d9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301132807", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2132807" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76da" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133110", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133110" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76db" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133118", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2133118" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76dc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133208", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133208" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76dd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133422", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133422" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76de" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133618", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2133618" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76df" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134913", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2134913" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76e0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133714", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133714" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76e1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133816", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133816" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76e2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301134006", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134006" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76e3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301134009", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134009" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76e4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134239", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134239" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76e5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303135115", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2135115" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76e6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135651", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2135651" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76e7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135834", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2135834" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76e8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135838", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135838" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76e9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304136007", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136007" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76ea" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136149", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136149" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76eb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136227", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2136227" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76ec" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136518", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136518" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76ed" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136554", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136554" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76ee" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136964", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136964" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76ef" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137202", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137202" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76f0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137227", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137227" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76f1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137627", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137627" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76f2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138141", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138141" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76f3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144220", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2144220" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76f4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138235", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138235" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76f5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138402", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138402" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76f6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138406", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2138406" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76f7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501138606", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138606" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76f8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501138607", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138607" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76f9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501138805", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138805" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76fa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501138807", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138807" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76fb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139226", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139226" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76fc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143017", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143017" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76fd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139403", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2139403" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76fe" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143405", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143405" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_76ff" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143619", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2143619" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7700" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003144003", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144003" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7701" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502139602", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139602" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7702" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140304", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140304" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7703" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142210", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2142210" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7704" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802142709", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2142709" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7705" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140411", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140411" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7706" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140608", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140608" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7707" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21602141406", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141406" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7708" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141508", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2141508" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7709" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141756", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141756" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_770a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141904", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2141904" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_770b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902142820", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2142820" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_770c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144333", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2144333" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_770d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144601", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2144601" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_770e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144617", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2144617" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_770f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144707", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2144707" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7710" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103145205", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145205" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7711" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145313", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145313" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7712" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145515", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2145515" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7713" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203145829", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145829" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7714" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304146332", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146332" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7715" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704148010", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2148010" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7716" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146502", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146502" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7717" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146520", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146520" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7718" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146525", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2146525" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7719" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146545", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2146545" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_771a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146622", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2146622" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_771b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146718", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146718" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_771c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146729", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146729" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_771d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146748", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2146748" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_771e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502146926", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146926" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_771f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502146942", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146942" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7720" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502147022", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147022" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7721" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147714", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147714" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7722" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147814", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147814" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7723" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147913", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2147913" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7724" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147945", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147945" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7725" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100401", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100401" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7750" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100436", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2100436" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7751" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20102100915", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100915" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7752" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20102101022", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101022" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7753" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20102101116", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2101116" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7754" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110855", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110855" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7755" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20103101406", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101406" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7756" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20103101710", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2101710" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7757" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201101831", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2101831" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7758" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111118", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111118" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7759" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201101906", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101906" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_775a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201101908", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2101908" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_775b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201101910", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101910" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_775c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201101914", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101914" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_775d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102024", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102024" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_775e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102109", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102109" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_775f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102121", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102121" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7760" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102126", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102126" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7761" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102215", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102215" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7762" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102309", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102309" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7763" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102415", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102415" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7764" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102822", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102822" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7765" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111327", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111327" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7766" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111502", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111502" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7767" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20301103602", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103602" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7768" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20301103612", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103612" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7769" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104221", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104221" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_776a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104715", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104715" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_776b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104717", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104717" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_776c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105011", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2105011" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_776d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105304", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105304" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_776e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122306", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2122306" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_776f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105812", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105812" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7770" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105908", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105908" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7771" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106608", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2106608" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7772" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106617", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106617" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7773" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107945", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2107945" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7774" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106650", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2106650" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7775" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403106902", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2106902" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7776" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107931", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2107931" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7777" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109751", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2109751" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7778" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110113", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2110113" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7779" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503108903", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108903" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_777a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503108907", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2108907" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_777b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109003", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109003" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_777c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110315", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2110315" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_777d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110512", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110512" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_777e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110723", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2110723" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_777f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109304", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109304" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7780" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109527", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2109527" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7781" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111609", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111609" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7782" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111611", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111611" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7783" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604111808", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111808" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7784" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112303", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2112303" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7785" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113027", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113027" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7786" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113307", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2113307" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7787" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113325", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2113325" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7788" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607113903", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113903" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7789" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114416", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2114416" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_778a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114602", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114602" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_778b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114945", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114945" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_778c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904121916", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121916" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_778d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115141", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 17, + "sa1_7dig16": "2115141" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_778e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115345", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115345" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_778f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115531", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115531" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7790" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115615", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2115615" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7791" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116908", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116908" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7792" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116910", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116910" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7793" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117101", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117101" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7794" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117201", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117201" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7795" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117231", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117231" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7796" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117411", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117411" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7797" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117605", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117605" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7798" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117620", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2117620" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7799" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802118002", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2118002" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_779a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118322", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2118322" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_779b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118810", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2118810" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_779c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118831", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118831" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_779d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118835", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2118835" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_779e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118837", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2118837" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_779f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118847", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118847" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77a0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119313", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119313" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77a1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119319", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119319" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77a2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119424", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2119424" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77a3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119615", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2119615" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77a4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129142", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2129142" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77a5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119621", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119621" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77a6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120118", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120118" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77a7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120405", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120405" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77a8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120418", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120418" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77a9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121313", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2121313" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77aa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904121610", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121610" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77ab" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122326", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2122326" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77ac" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001123104", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123104" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77ad" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21002123209", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123209" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77ae" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21002123504", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123504" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77af" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123912", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123912" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77b0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123927", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123927" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77b1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124310", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124310" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77b2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124605", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124605" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77b3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124942", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124942" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77b4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125433", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125433" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77b5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125819", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125819" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77b6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125821", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125821" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77b7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101126031", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126031" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77b8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21102126106", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126106" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77b9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21102126139", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2126139" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77ba" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21102126231", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126231" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77bb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126530", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2126530" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77bc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126620", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126620" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77bd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126705", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126705" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77be" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126722", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126722" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77bf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127003", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127003" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77c0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127307", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127307" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77c1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127330", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127330" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77c2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128003", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2128003" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77c3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128211", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2128211" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77c4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132633", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132633" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77c5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128613", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2128613" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77c6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128810", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128810" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77c7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128908", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2128908" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77c8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129141", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2129141" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77c9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129240", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129240" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77ca" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129433", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129433" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77cb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129903", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129903" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77cc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130019", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130019" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77cd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130203", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2130203" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77ce" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130524", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2130524" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77cf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130530", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2130530" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77d0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133024", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133024" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77d1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130816", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2130816" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77d2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204130901", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130901" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77d3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131813", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2131813" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77d4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205131913", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2131913" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77d5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205131921", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131921" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77d6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132027", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2132027" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77d7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133028", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133028" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77d8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133222", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2133222" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77d9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133526", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133526" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77da" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133602", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2133602" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77db" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133607", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133607" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77dc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134105", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134105" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77dd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134435", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134435" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77de" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134730", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134730" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77df" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134831", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2134831" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77e0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134910", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134910" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77e1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138428", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2138428" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77e2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134918", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134918" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77e3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135335", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135335" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77e4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135342", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2135342" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77e5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136112", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136112" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77e6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136243", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136243" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77e7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136809", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136809" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77e8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136823", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 12, + "sa1_7dig16": "2136823" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77e9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136824", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2136824" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77ea" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136828", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2136828" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77eb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137039", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137039" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77ec" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137057", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137057" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77ed" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137119", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137119" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77ee" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137345", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137345" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77ef" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137431", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137431" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77f0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137525", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137525" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77f1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137706", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137706" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77f2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137718", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137718" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77f3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137913", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137913" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77f4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137932", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137932" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77f5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138029", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138029" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77f6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138052", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138052" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77f7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138101", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138101" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77f8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138137", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138137" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77f9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138426", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138426" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77fa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138538", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138538" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77fb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501138705", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138705" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77fc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501138827", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138827" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77fd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139212", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2139212" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77fe" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140812", + "neg_nil_inc_fam_households": 7, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2140812" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_77ff" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21602141104", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2141104" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7800" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21602141319", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141319" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7801" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141613", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141613" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7802" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141645", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2141645" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7803" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103145113", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2145113" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7804" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502147001", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147001" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7805" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147301", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2147301" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7806" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501138706", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138706" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7807" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144115", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144115" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7808" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142007", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2142007" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7809" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142204", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2142204" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_780a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142208", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142208" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_780b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144642", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2144642" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_780c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103145012", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2145012" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_780d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142317", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142317" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_780e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702142424", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2142424" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_780f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802142616", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142616" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7810" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902142817", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2142817" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7811" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902142924", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2142924" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7812" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143111", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2143111" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7813" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143502", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143502" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7814" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145435", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145435" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7815" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203145702", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2145702" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7816" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304146314", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146314" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7817" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304146322", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146322" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7818" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146625", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146625" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7819" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146711", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146711" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_781a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146807", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146807" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_781b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146826", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146826" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_781c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147312", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147312" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_781d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127128", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127128" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_781f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104414", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104414" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7847" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104607", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104607" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7848" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104719", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104719" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7849" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100207", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2100207" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7850" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100214", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2100214" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7851" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100421", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100421" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7852" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20102100902", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2100902" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7853" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20103101616", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101616" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7854" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110842", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2110842" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7855" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20103101703", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2101703" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7856" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102031", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2102031" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7857" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102502", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102502" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7858" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102719", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102719" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7859" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103816", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103816" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_785a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104006", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104006" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_785b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104233", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104233" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_785c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104321", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104321" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_785d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104340", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104340" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_785e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105006", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2105006" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_785f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105606", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105606" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7860" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105801", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105801" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7861" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106406", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2106406" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7862" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110911", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110911" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7863" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106648", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106648" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7864" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107607", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2107607" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7865" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107611", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107611" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7866" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107820", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107820" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7867" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108112", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2108112" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7868" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108213", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2108213" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7869" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108408", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2108408" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_786a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111002", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111002" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_786b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111153", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111153" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_786c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503108915", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2108915" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_786d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109308", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2109308" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_786e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109311", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109311" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_786f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109721", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2109721" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7870" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110015", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110015" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7871" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110108", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110108" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7872" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110316", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110316" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7873" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110505", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2110505" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7874" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110532", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110532" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7875" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110837", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110837" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7876" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112102", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2112102" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7877" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112202", + "neg_nil_inc_fam_households": 41, + "negative_nil_income_tot": 290, + "sa1_7dig16": "2112202" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7878" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112308", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2112308" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7879" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605112812", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2112812" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_787a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605112820", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2112820" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_787b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113604", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113604" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_787c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113605", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2113605" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_787d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114101", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2114101" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_787e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114107", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114107" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_787f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114202", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114202" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7880" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114301", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2114301" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7881" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114320", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114320" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7882" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125631", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125631" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7883" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114322", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2114322" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7884" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114421", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2114421" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7885" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114728", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114728" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7886" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114801", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2114801" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7887" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115107", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2115107" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7888" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115509", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115509" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7889" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115534", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115534" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_788a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115617", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115617" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_788b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115909", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115909" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_788c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127415", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127415" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_788d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116330", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2116330" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_788e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116331", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2116331" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_788f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116434", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2116434" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7890" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116622", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116622" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7891" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117412", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2117412" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7892" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117437", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117437" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7893" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117601", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117601" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7894" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117701", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 47, + "sa1_7dig16": "2117701" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7895" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117713", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117713" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7896" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117742", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117742" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7897" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130031", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130031" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7898" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117826", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117826" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7899" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117928", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117928" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_789a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118705", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118705" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_789b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118903", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118903" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_789c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119016", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119016" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_789d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119101", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2119101" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_789e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119310", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2119310" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_789f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119426", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119426" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78a0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119910", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119910" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78a1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120230", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120230" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78a2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904121926", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121926" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78a3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130426", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130426" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78a4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120744", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120744" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78a5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904121927", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121927" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78a6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122934", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122934" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78a7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125714", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125714" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78a8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125815", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125815" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78a9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120756", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120756" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78aa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903120956", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120956" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78ab" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21002123514", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123514" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78ac" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123937", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2123937" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78ad" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124137", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2124137" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78ae" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124210", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124210" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78af" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124312", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2124312" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78b0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125102", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2125102" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78b1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127124", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127124" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78b2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126302", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2126302" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78b3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126616", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126616" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78b4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126715", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126715" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78b5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126726", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2126726" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78b6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126802", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2126802" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78b7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104126909", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2126909" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78b8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104126911", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2126911" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78b9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127020", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127020" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78ba" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127038", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127038" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78bb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127511", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127511" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78bc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127619", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127619" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78bd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128304", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2128304" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78be" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128317", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128317" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78bf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128419", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128419" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78c0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128906", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128906" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78c1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129129", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129129" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78c2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204130927", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130927" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78c3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129259", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129259" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78c4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129311", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2129311" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78c5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129331", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129331" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78c6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129421", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2129421" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78c7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129510", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2129510" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78c8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129517", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129517" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78c9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131116", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131116" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78ca" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131217", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131217" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78cb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131415", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131415" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78cc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131738", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2131738" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78cd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132109", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2132109" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78ce" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132148", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132148" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78cf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132219", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132219" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78d0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132516", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132516" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78d1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132518", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132518" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78d2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132649", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2132649" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78d3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134315", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2134315" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78d4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132706", + "neg_nil_inc_fam_households": 8, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2132706" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78d5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133006", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133006" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78d6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133047", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133047" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78d7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133217", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133217" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78d8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133333", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133333" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78d9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133514", + "neg_nil_inc_fam_households": 7, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133514" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78da" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133837", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133837" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78db" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301134031", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134031" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78dc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134403", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134403" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78dd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134809", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2134809" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78de" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134825", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2134825" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78df" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303135006", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2135006" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78e0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303135114", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135114" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78e1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135301", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135301" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78e2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135518", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135518" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78e3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137125", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137125" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78e4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135534", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135534" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78e5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135608", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2135608" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78e6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136819", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136819" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78e7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136955", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136955" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78e8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136959", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136959" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78e9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137808", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2137808" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78ea" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138228", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2138228" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78eb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138445", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138445" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78ec" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136970", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136970" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78ed" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137108", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137108" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78ee" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139003", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139003" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78ef" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139006", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139006" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78f0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139107", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139107" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78f1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502139914", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2139914" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78f2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140625", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2140625" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78f3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140801", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2140801" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78f4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141601", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141601" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78f5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141748", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141748" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78f6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902142827", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2142827" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78f7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902142839", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2142839" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78f8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143120", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143120" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78f9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143124", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143124" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78fa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143421", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143421" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78fb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143506", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143506" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78fc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143635", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143635" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78fd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003143820", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2143820" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78fe" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144207", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144207" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_78ff" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144313", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144313" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7900" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144331", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144331" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7901" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144603", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2144603" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7902" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144610", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2144610" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7903" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103145013", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145013" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7904" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103145104", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2145104" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7905" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103145126", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2145126" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7906" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103145211", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145211" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7907" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145304", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145304" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7908" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145414", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2145414" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7909" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145415", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2145415" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_790a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204145917", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2145917" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_790b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304146206", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146206" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_790c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304146209", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146209" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_790d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146510", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146510" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_790e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146824", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146824" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_790f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147513", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2147513" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7910" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147601", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2147601" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7911" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704148026", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2148026" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7912" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704148031", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2148031" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7913" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704148014", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2148014" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7914" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605112932", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2112932" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7915" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501138604", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138604" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7916" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126742", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126742" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7933" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100305", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2100305" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7934" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100314", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100314" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7935" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100326", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2100326" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7936" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100351", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2100351" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7937" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102123", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102123" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7938" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102413", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102413" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7939" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102720", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102720" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_793a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20102101011", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2101011" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_793b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20103101402", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2101402" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_793c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102009", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102009" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_793d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102912", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2102912" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_793e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103810", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2103810" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_793f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103855", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103855" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7940" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103869", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103869" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7941" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104020", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104020" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7942" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104045", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104045" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7943" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104333", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104333" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7944" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104605", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104605" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7945" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105108", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105108" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7946" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105115", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2105115" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7947" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105507", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105507" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7948" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105703", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2105703" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7949" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106402", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2106402" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_794a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106407", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106407" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_794b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106628", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106628" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_794c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107333", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107333" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_794d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104126918", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2126918" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_794e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106711", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2106711" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_794f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107213", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2107213" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7950" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107442", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107442" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7951" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127022", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2127022" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7952" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108207", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108207" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7953" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108501", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108501" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7954" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108509", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2108509" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7955" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503108707", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2108707" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7956" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109005", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2109005" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7957" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109324", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109324" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7958" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109330", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2109330" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7959" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109609", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2109609" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_795a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110808", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110808" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_795b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110901", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2110901" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_795c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111114", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111114" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_795d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111146", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111146" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_795e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111209", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2111209" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_795f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604111710", + "neg_nil_inc_fam_households": 19, + "negative_nil_income_tot": 185, + "sa1_7dig16": "2111710" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7960" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604111733", + "neg_nil_inc_fam_households": 20, + "negative_nil_income_tot": 195, + "sa1_7dig16": "2111733" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7961" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112231", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 31, + "sa1_7dig16": "2112231" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7962" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112310", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2112310" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7963" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112404", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2112404" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7964" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112413", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2112413" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7965" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605112807", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2112807" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7966" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605112901", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2112901" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7967" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605112908", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2112908" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7968" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113319", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2113319" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7969" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113508", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2113508" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_796a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114216", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114216" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_796b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114502", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114502" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_796c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114506", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114506" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_796d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115316", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2115316" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_796e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115332", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115332" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_796f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115344", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115344" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7970" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115352", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115352" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7971" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115401", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115401" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7972" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115543", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2115543" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7973" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115624", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115624" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7974" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115706", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2115706" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7975" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116207", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116207" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7976" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116621", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116621" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7977" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116822", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116822" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7978" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116913", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116913" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7979" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117022", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117022" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_797a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117223", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117223" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_797b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117238", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117238" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_797c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117312", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117312" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_797d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117434", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2117434" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_797e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117708", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117708" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_797f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117744", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2117744" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7980" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117819", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2117819" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7981" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802118008", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118008" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7982" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118628", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118628" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7983" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118802", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2118802" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7984" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119422", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119422" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7985" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119547", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119547" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7986" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129115", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2129115" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7987" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119623", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2119623" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7988" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119731", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2119731" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7989" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119741", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119741" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_798a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119753", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119753" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_798b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119817", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119817" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_798c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120102", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120102" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_798d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120404", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120404" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_798e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120719", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120719" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_798f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122017", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122017" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7990" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124514", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124514" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7991" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903120938", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120938" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7992" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903120952", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120952" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7993" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904121601", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 49, + "sa1_7dig16": "2121601" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7994" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122039", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122039" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7995" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122043", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2122043" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7996" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122330", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2122330" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7997" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122509", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2122509" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7998" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123710", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2123710" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7999" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124032", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124032" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_799a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124154", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2124154" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_799b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124629", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124629" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_799c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124901", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2124901" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_799d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124937", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124937" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_799e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125517", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125517" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_799f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125518", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125518" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79a0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125930", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2125930" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79a1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101126047", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126047" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79a2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112124", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2112124" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79a3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127028", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127028" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79a4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127029", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2127029" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79a5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127119", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2127119" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79a6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127213", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2127213" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79a7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127506", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127506" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79a8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127906", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127906" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79a9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129231", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129231" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79aa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129321", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129321" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79ab" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501138809", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138809" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79ac" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128601", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128601" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79ad" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128715", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128715" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79ae" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128915", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128915" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79af" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128922", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2128922" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79b0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129351", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2129351" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79b1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129508", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2129508" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79b2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130035", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130035" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79b3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130046", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130046" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79b4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130212", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2130212" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79b5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204130922", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2130922" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79b6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131028", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131028" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79b7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501138819", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138819" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79b8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502139809", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139809" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79b9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131029", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131029" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79ba" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131101", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131101" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79bb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131119", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131119" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79bc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131135", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2131135" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79bd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131432", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131432" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79be" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131434", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2131434" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79bf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131607", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2131607" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79c0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131610", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2131610" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79c1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131715", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2131715" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79c2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132108", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2132108" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79c3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132130", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132130" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79c4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133407", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2133407" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79c5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133431", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2133431" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79c6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133510", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2133510" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79c7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133822", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133822" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79c8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133902", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133902" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79c9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133913", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133913" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79ca" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133925", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2133925" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79cb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138507", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138507" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79cc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134207", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134207" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79cd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303135010", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2135010" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79ce" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135839", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2135839" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79cf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136105", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136105" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79d0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136527", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136527" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79d1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136802", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136802" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79d2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137010", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137010" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79d3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137116", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137116" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79d4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137934", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137934" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79d5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137151", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2137151" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79d6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137305", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137305" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79d7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137317", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137317" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79d8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137337", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137337" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79d9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137701", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137701" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79da" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137712", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2137712" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79db" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137922", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137922" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79dc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138338", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2138338" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79dd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140014", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140014" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79de" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140202", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140202" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79df" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140208", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140208" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79e0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140512", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140512" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79e1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140617", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140617" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79e2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140627", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140627" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79e3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140710", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140710" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79e4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140729", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2140729" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79e5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145411", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2145411" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79e6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601141006", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2141006" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79e7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21602141117", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141117" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79e8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141604", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2141604" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79e9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141628", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2141628" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79ea" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141637", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141637" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79eb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142318", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142318" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79ec" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702142527", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2142527" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79ed" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143012", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2143012" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79ee" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143105", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2143105" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79ef" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143425", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143425" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79f0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143601", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143601" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79f1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143615", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143615" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79f2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003143816", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2143816" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79f3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144413", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144413" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79f4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145310", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2145310" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79f5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145408", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2145408" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79f6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145412", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2145412" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79f7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145606", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145606" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79f8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203145707", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2145707" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79f9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304146104", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146104" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79fa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146412", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146412" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79fb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502146917", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146917" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79fc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147303", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2147303" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79fd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147409", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2147409" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79fe" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147608", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2147608" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_79ff" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112223", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 18, + "sa1_7dig16": "2112223" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a00" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112502", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2112502" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a01" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112632", + "neg_nil_inc_fam_households": 20, + "negative_nil_income_tot": 79, + "sa1_7dig16": "2112632" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a02" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116404", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116404" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a03" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116615", + "neg_nil_inc_fam_households": 9, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2116615" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a04" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116939", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116939" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a05" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117835", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2117835" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a06" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119818", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119818" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a07" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100449", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2100449" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a32" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100835", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100835" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a33" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201101814", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101814" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a34" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109403", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2109403" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a35" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201101922", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2101922" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a36" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102213", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102213" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a37" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102410", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102410" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a38" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102602", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102602" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a39" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103815", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2103815" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a3a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103905", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2103905" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a3b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103924", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2103924" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a3c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104206", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104206" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a3d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102611", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102611" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a3e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102901", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2102901" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a3f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202103112", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2103112" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a40" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111423", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111423" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a41" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104207", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2104207" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a42" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104332", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104332" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a43" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104509", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104509" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a44" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104722", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104722" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a45" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105516", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2105516" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a46" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105610", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2105610" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a47" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105622", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105622" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a48" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105706", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105706" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a49" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106325", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2106325" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a4a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106705", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2106705" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a4b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107943", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107943" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a4c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108116", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2108116" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a4d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108411", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2108411" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a4e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108514", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2108514" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a4f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503108714", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2108714" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a50" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106722", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2106722" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a51" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107716", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107716" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a52" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107901", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107901" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a53" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109401", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109401" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a54" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109508", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2109508" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a55" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109514", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109514" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a56" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109746", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2109746" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a57" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110118", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110118" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a58" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110548", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110548" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a59" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110914", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110914" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a5a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111140", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2111140" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a5b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111212", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111212" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a5c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111224", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111224" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a5d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111238", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111238" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a5e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111419", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111419" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a5f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113036", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2113036" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a60" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113726", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2113726" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a61" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114460", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2114460" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a62" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114939", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114939" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a63" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115026", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115026" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a64" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115123", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 36, + "sa1_7dig16": "2115123" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a65" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115208", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115208" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a66" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115523", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115523" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a67" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115628", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2115628" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a68" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115943", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2115943" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a69" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116141", + "neg_nil_inc_fam_households": 7, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2116141" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a6a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802118213", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2118213" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a6b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802118224", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2118224" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a6c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118833", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2118833" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a6d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119020", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119020" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a6e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119103", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119103" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a6f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119448", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119448" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a70" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119501", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119501" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a71" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119606", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119606" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a72" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119703", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119703" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a73" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120101", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120101" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a74" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120835", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120835" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a75" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903120943", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120943" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a76" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121010", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121010" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a77" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122011", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122011" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a78" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122613", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122613" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a79" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122901", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122901" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a7a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122928", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2122928" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a7b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121413", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121413" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a7c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904121903", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2121903" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a7d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904121920", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2121920" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a7e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122935", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2122935" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a7f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001123112", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123112" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a80" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21002123216", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123216" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a81" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21002123230", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2123230" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a82" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124119", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2124119" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a83" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124128", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124128" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a84" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124134", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124134" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a85" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124215", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 12, + "sa1_7dig16": "2124215" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a86" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124333", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124333" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a87" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124543", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124543" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a88" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005125014", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125014" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a89" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125921", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2125921" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a8a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21102126215", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126215" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a8b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21102126222", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126222" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a8c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126317", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126317" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a8d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126324", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126324" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a8e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126519", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126519" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a8f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127014", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2127014" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a90" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127016", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127016" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a91" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127030", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127030" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a92" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127303", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2127303" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a93" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130236", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2130236" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a94" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127414", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127414" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a95" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127815", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2127815" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a96" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127819", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2127819" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a97" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127905", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127905" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a98" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128228", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128228" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a99" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128312", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128312" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a9a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130804", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130804" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a9b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130809", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2130809" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a9c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128617", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128617" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a9d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128647", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128647" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a9e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204130907", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130907" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7a9f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128921", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128921" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7aa0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129012", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129012" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7aa1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129216", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2129216" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7aa2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129227", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2129227" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7aa3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129315", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129315" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7aa4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129408", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129408" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7aa5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129432", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2129432" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7aa6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129468", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129468" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7aa7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129910", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129910" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7aa8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130013", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130013" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7aa9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130041", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2130041" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7aaa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131001", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131001" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7aab" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131019", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131019" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7aac" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131022", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2131022" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7aad" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131209", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131209" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7aae" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205131917", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131917" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7aaf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205131926", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2131926" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ab0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132036", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2132036" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ab1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132222", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132222" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ab2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132236", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2132236" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ab3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132304", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132304" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ab4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132313", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2132313" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ab5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132403", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132403" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ab6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132408", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132408" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ab7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132719", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132719" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ab8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301132906", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132906" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ab9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301132917", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132917" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7aba" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133001", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133001" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7abb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133048", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133048" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7abc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133058", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133058" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7abd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133202", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133202" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7abe" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134426", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134426" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7abf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134615", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134615" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ac0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134618", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134618" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ac1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135835", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135835" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ac2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134630", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134630" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ac3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134832", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134832" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ac4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134917", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134917" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ac5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135346", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135346" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ac6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135537", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135537" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ac7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304136032", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2136032" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ac8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136206", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136206" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ac9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136239", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2136239" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7aca" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136302", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136302" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7acb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136615", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136615" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7acc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136811", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2136811" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7acd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137025", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137025" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ace" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137102", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137102" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7acf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139017", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139017" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ad0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137818", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137818" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ad1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138056", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138056" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ad2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138321", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2138321" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ad3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138414", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2138414" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ad4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138421", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2138421" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ad5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501138707", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138707" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ad6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702142422", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2142422" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ad7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139214", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2139214" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ad8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139306", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139306" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ad9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502139514", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139514" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ada" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142202", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2142202" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7adb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502139815", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2139815" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7adc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502139916", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139916" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7add" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141754", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141754" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ade" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141807", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141807" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7adf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142232", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2142232" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ae0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142307", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142307" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ae1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802142611", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2142611" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ae2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140016", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2140016" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ae3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140210", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2140210" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ae4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140508", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2140508" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ae5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140613", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140613" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ae6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140635", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2140635" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ae7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141516", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2141516" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ae8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141605", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141605" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ae9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142309", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142309" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7aea" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802142625", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142625" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7aeb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143518", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2143518" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7aec" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144224", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144224" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7aed" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144415", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144415" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7aee" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144706", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144706" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7aef" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203145712", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145712" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7af0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204146004", + "neg_nil_inc_fam_households": 11, + "negative_nil_income_tot": 17, + "sa1_7dig16": "2146004" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7af1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146407", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2146407" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7af2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147230", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147230" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7af3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146715", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146715" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7af4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146802", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146802" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7af5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146805", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146805" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7af6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502146936", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146936" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7af7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502147019", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2147019" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7af8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147408", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147408" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7af9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147519", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2147519" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7afa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147910", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147910" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7afb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104126905", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2126905" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7afc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102232", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102232" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b22" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100218", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100218" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b23" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100452", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100452" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b24" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100602", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100602" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b25" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20102101010", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101010" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b26" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102001", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102001" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b27" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103932", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103932" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b28" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20103101307", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2101307" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b29" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20103101707", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2101707" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b2a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201101805", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2101805" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b2b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201101815", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2101815" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b2c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201101901", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2101901" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b2d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201101915", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2101915" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b2e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102908", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2102908" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b2f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104210", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104210" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b30" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303104829", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104829" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b31" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105016", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2105016" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b32" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105050", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105050" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b33" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106625", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2106625" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b34" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114604", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114604" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b35" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20203103310", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2103310" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b36" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20301103409", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103409" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b37" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103729", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2103729" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b38" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103930", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2103930" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b39" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105335", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105335" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b3a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105338", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105338" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b3b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105702", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2105702" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b3c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105717", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2105717" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b3d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106322", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106322" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b3e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403106901", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106901" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b3f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107626", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107626" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b40" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107929", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2107929" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b41" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109109", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109109" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b42" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109423", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109423" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b43" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109742", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2109742" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b44" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114008", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2114008" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b45" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114420", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114420" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b46" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110135", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110135" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b47" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110211", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2110211" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b48" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110321", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110321" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b49" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110333", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110333" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b4a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111008", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111008" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b4b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111240", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2111240" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b4c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111305", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2111305" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b4d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111452", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2111452" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b4e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604111816", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2111816" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b4f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112210", + "neg_nil_inc_fam_households": 7, + "negative_nil_income_tot": 30, + "sa1_7dig16": "2112210" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b50" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112335", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 13, + "sa1_7dig16": "2112335" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b51" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605112910", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2112910" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b52" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113318", + "neg_nil_inc_fam_households": 7, + "negative_nil_income_tot": 21, + "sa1_7dig16": "2113318" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b53" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113328", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2113328" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b54" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113627", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2113627" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b55" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113706", + "neg_nil_inc_fam_households": 7, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2113706" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b56" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114003", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114003" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b57" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115103", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115103" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b58" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115133", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115133" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b59" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115334", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115334" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b5a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115337", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2115337" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b5b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116514", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2116514" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b5c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116905", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116905" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b5d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117114", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117114" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b5e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117747", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117747" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b5f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802118203", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 15, + "sa1_7dig16": "2118203" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b60" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802118214", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2118214" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b61" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118501", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118501" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b62" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120208", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120208" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b63" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115710", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115710" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b64" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116306", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 12, + "sa1_7dig16": "2116306" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b65" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116308", + "neg_nil_inc_fam_households": 8, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2116308" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b66" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118711", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118711" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b67" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118805", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2118805" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b68" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118843", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2118843" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b69" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118921", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2118921" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b6a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119201", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119201" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b6b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119401", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119401" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b6c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119522", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119522" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b6d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119542", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119542" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b6e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119544", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119544" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b6f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120204", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120204" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b70" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123930", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2123930" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b71" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120738", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120738" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b72" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120858", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120858" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b73" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903120932", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120932" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b74" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122016", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2122016" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b75" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122302", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2122302" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b76" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122328", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2122328" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b77" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123949", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123949" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b78" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124144", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124144" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b79" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122911", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122911" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b7a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122917", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2122917" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b7b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001123006", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123006" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b7c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124227", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124227" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b7d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124502", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124502" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b7e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124718", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124718" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b7f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125408", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2125408" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b80" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136903", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136903" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b81" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21002123229", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123229" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b82" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21002123404", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2123404" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b83" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21002123510", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123510" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b84" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123617", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2123617" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b85" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123730", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123730" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b86" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125434", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125434" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b87" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125503", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125503" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b88" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125828", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125828" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b89" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125905", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125905" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b8a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21102126138", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2126138" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b8b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21102126204", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126204" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b8c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132035", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2132035" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b8d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21102126220", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126220" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b8e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126309", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2126309" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b8f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126625", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2126625" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b90" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126709", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2126709" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b91" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126813", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126813" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b92" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104126916", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2126916" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b93" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104126922", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2126922" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b94" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127127", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127127" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b95" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132138", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132138" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b96" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127509", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127509" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b97" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127616", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2127616" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b98" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127843", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127843" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b99" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128141", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128141" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b9a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136909", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136909" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b9b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128214", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128214" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b9c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128226", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2128226" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b9d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128610", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128610" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b9e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128925", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128925" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7b9f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129303", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129303" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ba0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129318", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129318" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ba1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129428", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2129428" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ba2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129710", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2129710" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ba3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130029", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2130029" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ba4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130240", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130240" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ba5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130406", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130406" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ba6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130431", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130431" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ba7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130815", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130815" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ba8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204130909", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130909" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ba9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131117", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131117" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7baa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131255", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131255" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7bab" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131615", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131615" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7bac" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205131937", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 14, + "sa1_7dig16": "2131937" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7bad" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132201", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2132201" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7bae" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132718", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132718" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7baf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301132805", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132805" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7bb0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133054", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133054" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7bb1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133059", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133059" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7bb2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133061", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133061" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7bb3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133442", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2133442" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7bb4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133512", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2133512" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7bb5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304136006", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2136006" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7bb6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304136030", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136030" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7bb7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133820", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133820" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7bb8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134120", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134120" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7bb9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134132", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134132" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7bba" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134501", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134501" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7bbb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134820", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 49, + "sa1_7dig16": "2134820" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7bbc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303135203", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135203" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7bbd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135640", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135640" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7bbe" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136233", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136233" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7bbf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136944", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136944" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7bc0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136965", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136965" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7bc1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136967", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136967" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7bc2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137042", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137042" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7bc3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137154", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137154" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7bc4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137209", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137209" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7bc5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137301", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137301" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7bc6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137324", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137324" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7bc7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137412", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137412" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7bc8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137449", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137449" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7bc9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137628", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137628" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7bca" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137704", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137704" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7bcb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138015", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2138015" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7bcc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138032", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138032" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7bcd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138115", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138115" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7bce" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138420", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138420" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7bcf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138524", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138524" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7bd0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138546", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2138546" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7bd1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501138612", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138612" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7bd2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501138623", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138623" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7bd3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802142702", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2142702" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7bd4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501138823", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138823" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7bd5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139224", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139224" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7bd6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502139904", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139904" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7bd7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140306", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140306" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7bd8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140703", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140703" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7bd9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21602141105", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141105" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7bda" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145507", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145507" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7bdb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21602141311", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141311" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7bdc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143006", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2143006" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7bdd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21602141401", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141401" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7bde" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141504", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141504" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7bdf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141607", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141607" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7be0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142011", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142011" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7be1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702142504", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2142504" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7be2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802142617", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2142617" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7be3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143042", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143042" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7be4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143223", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143223" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7be5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003143826", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143826" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7be6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003144006", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2144006" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7be7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003144008", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144008" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7be8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144111", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2144111" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7be9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144405", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2144405" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7bea" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144616", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2144616" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7beb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144721", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2144721" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7bec" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103145212", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2145212" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7bed" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145604", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145604" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7bee" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203145715", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145715" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7bef" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203145805", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145805" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7bf0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203145809", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145809" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7bf1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204145918", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2145918" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7bf2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304146105", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146105" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7bf3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146416", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146416" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7bf4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146704", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146704" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7bf5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146723", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146723" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7bf6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502146906", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146906" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7bf7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502146937", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146937" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7bf8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147204", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147204" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7bf9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605112808", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2112808" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7bfa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113226", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2113226" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7bfb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303135207", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2135207" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7bfc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114947", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114947" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c18" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111304", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111304" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c20" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20103101407", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101407" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c21" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104520", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104520" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c25" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100418", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100418" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c26" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201101920", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101920" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c27" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102202", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2102202" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c28" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102310", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102310" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c29" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102401", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102401" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c2a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102517", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102517" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c2b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104526", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104526" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c2c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604111718", + "neg_nil_inc_fam_households": 13, + "negative_nil_income_tot": 38, + "sa1_7dig16": "2111718" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c2d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102807", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2102807" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c2e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103817", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2103817" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c2f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103849", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2103849" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c30" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104002", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104002" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c31" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104147", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104147" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c32" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104205", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104205" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c33" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104604", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2104604" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c34" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303104831", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104831" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c35" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105323", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2105323" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c36" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105607", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105607" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c37" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106315", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106315" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c38" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106509", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106509" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c39" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107339", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107339" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c3a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107412", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2107412" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c3b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107425", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107425" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c3c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107818", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107818" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c3d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109022", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2109022" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c3e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109117", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2109117" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c3f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112112", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2112112" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c40" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112204", + "neg_nil_inc_fam_households": 12, + "negative_nil_income_tot": 48, + "sa1_7dig16": "2112204" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c41" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112222", + "neg_nil_inc_fam_households": 8, + "negative_nil_income_tot": 27, + "sa1_7dig16": "2112222" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c42" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108201", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108201" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c43" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503108908", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2108908" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c44" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109123", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2109123" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c45" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109322", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109322" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c46" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109725", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109725" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c47" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109801", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109801" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c48" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109809", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2109809" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c49" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110301", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110301" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c4a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110530", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110530" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c4b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110536", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110536" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c4c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110604", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 25, + "sa1_7dig16": "2110604" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c4d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111229", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111229" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c4e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112340", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 39, + "sa1_7dig16": "2112340" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c4f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113304", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2113304" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c50" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113640", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2113640" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c51" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113703", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2113703" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c52" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114013", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114013" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c53" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114023", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114023" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c54" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114327", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114327" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c55" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114410", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114410" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c56" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114730", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2114730" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c57" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114912", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2114912" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c58" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115013", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115013" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c59" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115014", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2115014" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c5a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115143", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2115143" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c5b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115223", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115223" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c5c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115326", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115326" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c5d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115336", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2115336" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c5e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115739", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2115739" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c5f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115935", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115935" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c60" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116125", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116125" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c61" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116205", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116205" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c62" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116325", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116325" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c63" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116326", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116326" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c64" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116424", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116424" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c65" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116502", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2116502" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c66" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116603", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2116603" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c67" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116613", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116613" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c68" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116708", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2116708" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c69" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116830", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116830" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c6a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117107", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117107" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c6b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117233", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117233" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c6c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107421", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107421" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c6d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117335", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117335" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c6e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117633", + "neg_nil_inc_fam_households": 9, + "negative_nil_income_tot": 17, + "sa1_7dig16": "2117633" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c6f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117918", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2117918" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c70" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118317", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118317" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c71" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118809", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2118809" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c72" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118828", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118828" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c73" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118904", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118904" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c74" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118913", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2118913" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c75" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119111", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119111" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c76" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126706", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2126706" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c77" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119314", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119314" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c78" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119440", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119440" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c79" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119443", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2119443" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c7a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119728", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119728" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c7b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119809", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119809" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c7c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120329", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120329" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c7d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120510", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120510" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c7e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120723", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2120723" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c7f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120747", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120747" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c80" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903120916", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120916" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c81" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126507", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126507" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c82" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121507", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121507" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c83" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904121922", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2121922" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c84" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122323", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2122323" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c85" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122520", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122520" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c86" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122819", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122819" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c87" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122922", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122922" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c88" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21002123210", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123210" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c89" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21002123518", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2123518" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c8a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123945", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2123945" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c8b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126619", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2126619" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c8c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124136", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124136" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c8d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124211", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2124211" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c8e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125709", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125709" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c8f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125712", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125712" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c90" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125915", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2125915" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c91" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21102126112", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126112" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c92" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126641", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2126641" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c93" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127001", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127001" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c94" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127206", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2127206" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c95" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127412", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127412" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c96" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127425", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2127425" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c97" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127515", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127515" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c98" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127614", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2127614" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c99" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127615", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127615" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c9a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127812", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127812" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c9b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127829", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2127829" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c9c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127847", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2127847" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c9d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127914", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127914" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c9e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130432", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130432" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7c9f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128902", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128902" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ca0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128939", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128939" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ca1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129268", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129268" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ca2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129357", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129357" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ca3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129462", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129462" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ca4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130017", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2130017" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ca5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131810", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131810" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ca6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130538", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130538" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ca7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130541", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2130541" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ca8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130603", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130603" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ca9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204130917", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2130917" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7caa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131103", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131103" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7cab" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131113", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2131113" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7cac" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131144", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2131144" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7cad" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131202", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131202" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7cae" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131445", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2131445" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7caf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132043", + "neg_nil_inc_fam_households": 7, + "negative_nil_income_tot": 15, + "sa1_7dig16": "2132043" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7cb0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132635", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132635" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7cb1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301132814", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2132814" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7cb2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301132901", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132901" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7cb3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133010", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133010" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7cb4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133418", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133418" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7cb5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133610", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2133610" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7cb6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133915", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133915" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7cb7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301134035", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134035" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7cb8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135633", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2135633" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7cb9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135717", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135717" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7cba" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136221", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136221" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7cbb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136908", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136908" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7cbc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137615", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137615" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7cbd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137720", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137720" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7cbe" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137935", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2137935" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7cbf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138007", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138007" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7cc0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138026", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138026" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7cc1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138230", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138230" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7cc2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138327", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2138327" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7cc3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138407", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138407" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7cc4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138409", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138409" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7cc5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138415", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138415" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7cc6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138436", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138436" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7cc7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501138602", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138602" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7cc8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501138615", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138615" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7cc9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501138813", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138813" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7cca" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139308", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139308" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ccb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139415", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2139415" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ccc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139418", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139418" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ccd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502139508", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139508" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7cce" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140307", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140307" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ccf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140403", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140403" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7cd0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140427", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140427" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7cd1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140806", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140806" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7cd2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21602141333", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2141333" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7cd3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144212", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2144212" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7cd4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204145906", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2145906" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7cd5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21602141419", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141419" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7cd6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141616", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2141616" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7cd7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142308", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142308" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7cd8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702142406", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2142406" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7cd9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143313", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143313" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7cda" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143608", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2143608" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7cdb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143620", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143620" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7cdc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003143806", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2143806" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7cdd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003143819", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2143819" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7cde" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204145904", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2145904" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7cdf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144335", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2144335" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ce0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144702", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2144702" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ce1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144825", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2144825" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ce2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144828", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144828" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ce3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103145025", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145025" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ce4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103145121", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145121" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ce5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145614", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2145614" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ce6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145623", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145623" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ce7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203145813", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145813" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ce8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204146017", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2146017" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ce9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304146316", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146316" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7cea" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304146337", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146337" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ceb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146720", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2146720" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7cec" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146741", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2146741" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ced" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502147015", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2147015" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7cee" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147716", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2147716" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7cef" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147912", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147912" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7cf0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147949", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2147949" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7cf1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111408", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111408" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7cf3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129701", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2129701" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7cf7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100320", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100320" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d08" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201101829", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101829" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d0d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116224", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116224" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d19" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100439", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2100439" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d1f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201101825", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101825" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d20" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100217", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2100217" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d21" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102412", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102412" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d22" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102417", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102417" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d23" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102809", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102809" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d24" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102812", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2102812" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d25" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104310", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104310" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d26" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107004", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107004" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d27" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102907", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2102907" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d28" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20301103413", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103413" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d29" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103863", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103863" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d2a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104309", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104309" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d2b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107216", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2107216" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d2c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104713", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104713" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d2d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104735", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104735" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d2e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303104817", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104817" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d2f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105020", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105020" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d30" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105603", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105603" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d31" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105612", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105612" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d32" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106726", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106726" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d33" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107608", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2107608" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d34" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107806", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2107806" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d35" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108134", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108134" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d36" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108421", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2108421" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d37" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503108709", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2108709" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d38" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503108724", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108724" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d39" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109106", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2109106" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d3a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109503", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2109503" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d3b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109603", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2109603" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d3c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109604", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109604" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d3d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109761", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109761" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d3e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110602", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 16, + "sa1_7dig16": "2110602" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d3f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110801", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2110801" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d40" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110831", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110831" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d41" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110844", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2110844" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d42" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111117", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111117" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d43" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111210", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111210" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d44" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111301", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111301" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d45" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111627", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111627" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d46" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112122", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2112122" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d47" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112307", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2112307" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d48" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605112801", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2112801" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d49" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605112927", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2112927" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d4a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113032", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2113032" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d4b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113206", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2113206" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d4c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113510", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2113510" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d4d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113607", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2113607" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d4e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113616", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113616" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d4f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113719", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 14, + "sa1_7dig16": "2113719" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d50" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114315", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114315" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d51" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114707", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114707" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d52" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114819", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2114819" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d53" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114907", + "neg_nil_inc_fam_households": 8, + "negative_nil_income_tot": 14, + "sa1_7dig16": "2114907" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d54" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114937", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114937" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d55" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115140", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2115140" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d56" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115229", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2115229" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d57" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115524", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115524" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d58" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115727", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2115727" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d59" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115922", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2115922" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d5a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702116011", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116011" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d5b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116222", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116222" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d5c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116614", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2116614" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d5d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117027", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117027" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d5e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117635", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117635" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d5f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118313", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2118313" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d60" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118912", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2118912" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d61" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119021", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119021" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d62" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119425", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2119425" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d63" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119538", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2119538" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d64" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119619", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119619" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d65" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119931", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119931" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d66" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120104", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120104" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d67" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120232", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120232" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d68" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120315", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120315" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d69" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120343", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120343" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d6a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120503", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2120503" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d6b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903120924", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2120924" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d6c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121106", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2121106" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d6d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121309", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121309" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d6e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121516", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121516" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d6f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122806", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2122806" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d70" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121524", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2121524" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d71" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904121604", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121604" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d72" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122348", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2122348" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d73" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122420", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122420" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d74" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122429", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2122429" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d75" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122610", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122610" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d76" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122807", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2122807" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d77" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21002123217", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2123217" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d78" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123607", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2123607" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d79" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123911", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2123911" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d7a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123932", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123932" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d7b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124719", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124719" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d7c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124910", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2124910" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d7d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130052", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130052" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d7e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124944", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124944" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d7f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125125", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125125" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d80" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125416", + "neg_nil_inc_fam_households": 7, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2125416" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d81" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125809", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2125809" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d82" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125913", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2125913" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d83" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101126019", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2126019" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d84" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101126021", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2126021" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d85" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126308", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2126308" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d86" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130025", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130025" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d87" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126310", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2126310" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d88" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126612", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2126612" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d89" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126812", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126812" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d8a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104126917", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2126917" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d8b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127006", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2127006" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d8c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127302", + "neg_nil_inc_fam_households": 7, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2127302" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d8d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127719", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127719" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d8e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127837", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2127837" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d8f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128105", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2128105" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d90" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128114", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128114" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d91" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128206", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128206" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d92" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128209", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128209" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d93" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128406", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128406" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d94" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128618", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2128618" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d95" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128901", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128901" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d96" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129118", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129118" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d97" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130036", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130036" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d98" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128510", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128510" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d99" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128521", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2128521" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d9a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129266", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2129266" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d9b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130315", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130315" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d9c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130520", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2130520" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d9d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204130908", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2130908" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d9e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204130918", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130918" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7d9f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131012", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131012" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7da0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131111", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 11, + "sa1_7dig16": "2131111" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7da1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131150", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131150" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7da2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131616", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131616" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7da3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135344", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135344" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7da4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131732", + "neg_nil_inc_fam_households": 7, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2131732" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7da5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205131910", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131910" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7da6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132203", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132203" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7da7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132221", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2132221" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7da8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132417", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 15, + "sa1_7dig16": "2132417" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7da9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132539", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132539" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7daa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132637", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132637" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7dab" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133203", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133203" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7dac" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133226", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133226" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7dad" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133443", + "neg_nil_inc_fam_households": 7, + "negative_nil_income_tot": 13, + "sa1_7dig16": "2133443" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7dae" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301134021", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134021" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7daf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301134045", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134045" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7db0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134124", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134124" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7db1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134408", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134408" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7db2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134412", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134412" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7db3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134603", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2134603" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7db4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134908", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134908" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7db5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136209", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136209" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7db6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136316", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136316" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7db7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136521", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136521" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7db8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137037", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137037" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7db9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137205", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137205" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7dba" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137220", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137220" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7dbb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137238", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137238" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7dbc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137507", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137507" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7dbd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138017", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138017" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7dbe" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138021", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138021" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7dbf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138139", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138139" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7dc0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138234", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138234" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7dc1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138322", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138322" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7dc2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138519", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2138519" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7dc3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139001", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139001" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7dc4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601141008", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2141008" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7dc5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141506", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2141506" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7dc6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141610", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141610" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7dc7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142104", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142104" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7dc8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142304", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142304" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7dc9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702142526", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2142526" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7dca" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702142532", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2142532" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7dcb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902142828", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2142828" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7dcc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143213", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2143213" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7dcd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144820", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2144820" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7dce" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21602141304", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141304" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7dcf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21602141307", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141307" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7dd0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143404", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143404" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7dd1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143413", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143413" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7dd2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144611", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144611" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7dd3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144726", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2144726" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7dd4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103145023", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145023" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7dd5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103145116", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2145116" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7dd6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145421", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145421" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7dd7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145426", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145426" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7dd8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304146205", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146205" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7dd9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304146334", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146334" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7dda" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146512", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146512" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ddb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146731", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146731" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ddc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146818", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2146818" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ddd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502146938", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146938" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7dde" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147226", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147226" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ddf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147401", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2147401" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7de0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147610", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2147610" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7de1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147710", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147710" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7de2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147719", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147719" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7de3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147804", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147804" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7de4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147810", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147810" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7de5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147818", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147818" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7de6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704148011", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2148011" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7de7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107627", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107627" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7de8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104014", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104014" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7de9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110330", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110330" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7dea" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110906", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110906" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7deb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113201", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113201" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7dec" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113209", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2113209" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ded" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303135214", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2135214" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7def" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113412", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2113412" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7df0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100455", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100455" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7df1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102805", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102805" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7df2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103918", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103918" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7df4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113825", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113825" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7df5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104033", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104033" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7df6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104521", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104521" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e19" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105012", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2105012" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e1a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144620", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2144620" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e1b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20103101411", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2101411" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e1c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20103101505", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2101505" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e1d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20203103321", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2103321" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e1e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201101823", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101823" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e1f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102507", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102507" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e20" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102513", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2102513" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e21" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202103002", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2103002" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e22" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20203103213", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2103213" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e23" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105627", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105627" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e24" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106312", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106312" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e25" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106632", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2106632" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e26" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107313", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2107313" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e27" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107431", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107431" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e28" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107609", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2107609" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e29" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403106929", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106929" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e2a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107201", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107201" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e2b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107802", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107802" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e2c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110915", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110915" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e2d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111231", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111231" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e2e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111232", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2111232" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e2f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111443", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111443" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e30" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111505", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111505" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e31" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111514", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111514" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e32" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605112918", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2112918" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e33" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109507", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109507" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e34" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109607", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2109607" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e35" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109712", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109712" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e36" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114431", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114431" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e37" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114463", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114463" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e38" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114605", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114605" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e39" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114606", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2114606" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e3a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114832", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2114832" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e3b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114943", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114943" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e3c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115023", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115023" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e3d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115127", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115127" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e3e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115135", + "neg_nil_inc_fam_households": 9, + "negative_nil_income_tot": 14, + "sa1_7dig16": "2115135" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e3f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112336", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2112336" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e40" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115209", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115209" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e41" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115414", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2115414" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e42" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115612", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115612" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e43" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115740", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115740" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e44" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116620", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2116620" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e45" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116929", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116929" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e46" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117036", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117036" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e47" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117103", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117103" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e48" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117327", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2117327" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e49" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117709", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117709" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e4a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120009", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120009" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e4b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116112", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 11, + "sa1_7dig16": "2116112" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e4c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116115", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116115" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e4d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116129", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116129" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e4e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116437", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116437" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e4f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146508", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146508" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e50" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117711", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117711" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e51" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117815", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2117815" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e52" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802118016", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2118016" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e53" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118631", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2118631" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e54" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118838", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2118838" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e55" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118928", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118928" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e56" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119029", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119029" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e57" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119413", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119413" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e58" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119434", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2119434" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e59" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119735", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119735" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e5a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146529", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146529" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e5b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120022", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120022" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e5c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120210", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120210" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e5d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120419", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120419" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e5e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120420", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120420" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e5f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120820", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2120820" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e60" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120836", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2120836" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e61" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903120922", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2120922" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e62" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122026", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122026" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e63" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122308", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2122308" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e64" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128127", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128127" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e65" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121110", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2121110" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e66" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121402", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121402" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e67" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904121929", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2121929" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e68" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122015", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122015" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e69" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122327", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122327" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e6a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122821", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122821" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e6b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122939", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2122939" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e6c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122951", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2122951" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e6d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001123003", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2123003" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e6e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124017", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2124017" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e6f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132520", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132520" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e70" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001123012", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2123012" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e71" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132541", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2132541" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e72" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21002123203", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2123203" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e73" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124122", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124122" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e74" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124306", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124306" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e75" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124603", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2124603" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e76" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124906", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124906" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e77" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124933", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124933" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e78" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21002123306", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123306" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e79" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123922", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123922" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e7a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124009", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124009" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e7b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128009", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2128009" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e7c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133038", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2133038" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e7d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124941", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124941" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e7e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125813", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125813" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e7f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126823", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126823" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e80" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104126919", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126919" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e81" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127005", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2127005" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e82" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127009", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2127009" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e83" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127101", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127101" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e84" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127107", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127107" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e85" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127809", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2127809" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e86" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128303", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128303" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e87" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128651", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2128651" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e88" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128724", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128724" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e89" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129005", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2129005" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e8a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129016", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129016" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e8b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129254", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2129254" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e8c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129323", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129323" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e8d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129469", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129469" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e8e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129518", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2129518" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e8f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130115", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130115" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e90" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130124", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2130124" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e91" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130127", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130127" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e92" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130425", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2130425" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e93" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130507", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2130507" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e94" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130819", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130819" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e95" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204130919", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2130919" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e96" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131136", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2131136" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e97" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131250", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131250" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e98" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131457", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2131457" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e99" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132303", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132303" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e9a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133069", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133069" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e9b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133318", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133318" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e9c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133321", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2133321" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e9d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133806", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133806" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e9e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133818", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2133818" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7e9f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301134029", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134029" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ea0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134126", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134126" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ea1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134227", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134227" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ea2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135713", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2135713" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ea3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135806", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135806" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ea4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136531", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2136531" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ea5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136945", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136945" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ea6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137041", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137041" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ea7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137103", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137103" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ea8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137221", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2137221" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ea9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137235", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137235" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7eaa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137432", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137432" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7eab" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137603", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2137603" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7eac" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137810", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137810" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ead" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137917", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137917" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7eae" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138010", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138010" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7eaf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138024", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2138024" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7eb0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138212", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138212" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7eb1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501138912", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138912" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7eb2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137944", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137944" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7eb3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142225", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142225" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7eb4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142310", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142310" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7eb5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139030", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139030" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7eb6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502139806", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2139806" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7eb7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140402", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140402" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7eb8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140521", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2140521" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7eb9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140707", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140707" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7eba" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142316", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2142316" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ebb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702142512", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2142512" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ebc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802142607", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142607" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ebd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141710", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141710" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ebe" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141742", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2141742" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ebf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142018", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142018" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ec0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902142801", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142801" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ec1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902142818", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2142818" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ec2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902142822", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2142822" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ec3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143126", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143126" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ec4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143202", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143202" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ec5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143314", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143314" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ec6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143522", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143522" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ec7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143704", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2143704" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ec8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003144004", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2144004" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ec9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144225", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144225" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7eca" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144317", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144317" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ecb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144422", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144422" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ecc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144619", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2144619" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ecd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144816", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2144816" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ece" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103145114", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2145114" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ecf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145402", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145402" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ed0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203145703", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145703" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ed1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203145830", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145830" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ed2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203145831", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2145831" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ed3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204145902", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145902" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ed4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204146008", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2146008" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ed5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304146110", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146110" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ed6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146411", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146411" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ed7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146604", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146604" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ed8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146621", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2146621" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ed9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146734", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146734" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7eda" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146822", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146822" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7edb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502146901", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146901" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7edc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147213", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2147213" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7edd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704148032", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2148032" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ede" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112631", + "neg_nil_inc_fam_households": 7, + "negative_nil_income_tot": 21, + "sa1_7dig16": "2112631" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7edf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802118227", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2118227" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ee0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118630", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2118630" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ee1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118817", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2118817" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ee3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133415", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 11, + "sa1_7dig16": "2133415" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ee4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903120953", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120953" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ee6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107413", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2107413" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7efa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107809", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2107809" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7efc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114210", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114210" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f07" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114214", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2114214" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f08" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100215", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2100215" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f0e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100233", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2100233" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f0f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100438", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100438" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f10" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100441", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100441" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f11" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100514", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100514" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f12" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100515", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100515" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f13" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100516", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100516" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f14" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100830", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100830" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f15" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20103101609", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2101609" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f16" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201101833", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101833" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f17" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201101905", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2101905" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f18" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103703", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103703" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f19" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104412", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104412" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f1a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102712", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2102712" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f1b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103708", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103708" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f1c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103709", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103709" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f1d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103808", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103808" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f1e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103826", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2103826" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f1f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103908", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103908" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f20" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104425", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104425" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f21" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104428", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104428" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f22" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104701", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104701" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f23" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104718", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104718" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f24" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104731", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104731" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f25" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303104821", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104821" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f26" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303104910", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2104910" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f27" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105311", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2105311" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f28" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105504", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2105504" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f29" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105505", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105505" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f2a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105904", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2105904" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f2b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105907", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105907" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f2c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401106209", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2106209" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f2d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106643", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106643" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f2e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108132", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2108132" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f2f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108136", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108136" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f30" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108219", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108219" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f31" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108224", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2108224" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f32" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108410", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2108410" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f33" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114409", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114409" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f34" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503108902", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2108902" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f35" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109105", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109105" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f36" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109305", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109305" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f37" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109763", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109763" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f38" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110414", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110414" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f39" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110508", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110508" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f3a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110525", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110525" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f3b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110529", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2110529" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f3c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110541", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 11, + "sa1_7dig16": "2110541" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f3d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110722", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110722" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f3e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110731", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2110731" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f3f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110803", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2110803" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f40" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111107", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111107" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f41" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111119", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111119" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f42" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111211", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111211" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f43" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111234", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111234" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f44" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111321", + "neg_nil_inc_fam_households": 7, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2111321" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f45" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604111717", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111717" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f46" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604111906", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111906" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f47" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112241", + "neg_nil_inc_fam_households": 10, + "negative_nil_income_tot": 52, + "sa1_7dig16": "2112241" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f48" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112612", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2112612" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f49" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605112803", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2112803" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f4a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702116006", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2116006" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f4b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113023", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2113023" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f4c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113225", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113225" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f4d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113303", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2113303" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f4e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113310", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2113310" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f4f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113313", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2113313" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f50" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113425", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2113425" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f51" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113518", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2113518" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f52" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113701", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2113701" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f53" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113821", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113821" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f54" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113828", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2113828" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f55" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607113910", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2113910" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f56" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114461", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114461" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f57" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114716", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2114716" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f58" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115033", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115033" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f59" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115535", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115535" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f5a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115601", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115601" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f5b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802118107", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 16, + "sa1_7dig16": "2118107" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f5c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702116019", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116019" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f5d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116101", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116101" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f5e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116320", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116320" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f5f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116324", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 13, + "sa1_7dig16": "2116324" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f60" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117028", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117028" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f61" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117113", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117113" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f62" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117307", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117307" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f63" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117330", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117330" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f64" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117409", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2117409" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f65" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117413", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117413" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f66" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117451", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117451" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f67" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117638", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2117638" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f68" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117808", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117808" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f69" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119015", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119015" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f6a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119328", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119328" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f6b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119539", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119539" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f6c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119702", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2119702" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f6d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119709", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119709" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f6e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119921", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2119921" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f6f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120307", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120307" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f70" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120524", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120524" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f71" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120728", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2120728" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f72" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120824", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120824" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f73" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903120903", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120903" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f74" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903120934", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120934" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f75" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903120945", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120945" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f76" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122033", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122033" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f77" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122511", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2122511" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f78" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122604", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2122604" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f79" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122607", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122607" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f7a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122925", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122925" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f7b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122941", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2122941" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f7c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001123102", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2123102" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f7d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21002123222", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2123222" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f7e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21002123309", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123309" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f7f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123616", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2123616" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f80" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123709", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2123709" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f81" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123715", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2123715" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f82" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124023", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124023" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f83" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124135", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124135" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f84" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124158", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124158" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f85" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124224", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124224" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f86" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124316", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124316" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f87" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124326", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124326" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f88" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124613", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124613" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f89" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124710", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124710" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f8a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125127", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125127" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f8b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125402", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2125402" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f8c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125710", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2125710" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f8d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129506", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2129506" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f8e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125904", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125904" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f8f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125907", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125907" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f90" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101126039", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2126039" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f91" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101126042", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2126042" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f92" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101126044", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126044" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f93" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21102126205", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126205" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f94" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126329", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126329" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f95" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126718", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126718" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f96" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127208", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2127208" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f97" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127413", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2127413" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f98" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127520", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127520" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f99" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127626", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2127626" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f9a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128703", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128703" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f9b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129133", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2129133" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f9c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134707", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2134707" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f9d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127601", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127601" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f9e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127617", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127617" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7f9f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130120", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130120" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7fa0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130216", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130216" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7fa1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204130915", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2130915" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7fa2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131218", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131218" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7fa3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131444", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131444" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7fa4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131733", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131733" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7fa5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131812", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131812" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7fa6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205131941", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2131941" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7fa7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132018", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 11, + "sa1_7dig16": "2132018" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7fa8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132020", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 15, + "sa1_7dig16": "2132020" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7fa9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132131", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2132131" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7faa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132218", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2132218" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7fab" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132223", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2132223" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7fac" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132252", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132252" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7fad" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132317", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2132317" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7fae" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132630", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2132630" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7faf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132717", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132717" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7fb0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133007", + "neg_nil_inc_fam_households": 7, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2133007" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7fb1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133103", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133103" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7fb2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134741", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 11, + "sa1_7dig16": "2134741" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7fb3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133210", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133210" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7fb4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133223", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133223" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7fb5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133518", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133518" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7fb6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133824", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133824" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7fb7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133834", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133834" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7fb8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301134002", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2134002" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7fb9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301134016", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134016" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7fba" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301134044", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134044" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7fbb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134221", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2134221" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7fbc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134226", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134226" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7fbd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135312", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2135312" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7fbe" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135345", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2135345" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7fbf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136232", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136232" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7fc0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136552", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136552" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7fc1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136614", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136614" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7fc2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137049", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2137049" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7fc3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137115", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2137115" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7fc4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137229", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137229" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7fc5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137307", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137307" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7fc6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137309", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2137309" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7fc7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137406", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137406" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7fc8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137501", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137501" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7fc9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137605", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2137605" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7fca" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137607", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137607" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7fcb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138506", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138506" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7fcc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501138622", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138622" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7fcd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139021", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139021" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7fce" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140515", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140515" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7fcf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21602141309", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2141309" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7fd0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137905", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137905" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7fd1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138037", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138037" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7fd2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138504", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2138504" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7fd3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21602141328", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141328" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7fd4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141611", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141611" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7fd5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141707", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2141707" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7fd6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143041", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143041" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7fd7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143129", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143129" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7fd8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145532", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2145532" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7fd9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145533", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2145533" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7fda" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142233", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142233" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7fdb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902142823", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2142823" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7fdc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902142829", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142829" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7fdd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902142907", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142907" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7fde" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902142922", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142922" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7fdf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143525", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143525" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7fe0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143609", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143609" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7fe1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143616", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143616" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7fe2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143624", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143624" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7fe3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003143815", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143815" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7fe4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144327", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2144327" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7fe5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144630", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2144630" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7fe6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145510", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145510" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7fe7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145607", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145607" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7fe8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145621", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145621" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7fe9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203145810", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145810" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7fea" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203145819", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145819" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7feb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146702", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146702" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7fec" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146733", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146733" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7fed" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502146941", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146941" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7fee" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502147027", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2147027" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7fef" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147707", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147707" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ff0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147911", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147911" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ff1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605112933", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2112933" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ff2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139105", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139105" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626ed745b7_7ff7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502147014", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147014" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7ff7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147604", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2147604" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7ff6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114103", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2114103" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7fed" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114105", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 12, + "sa1_7dig16": "2114105" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7fe7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114114", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2114114" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7fe6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114325", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114325" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7fe5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100306", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2100306" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7fe1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100319", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100319" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7fe0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20102101012", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101012" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7fdf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20102101104", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101104" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7fde" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20103101401", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2101401" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7fdd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102007", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102007" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7fdc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102114", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2102114" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7fdb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102220", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102220" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7fda" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102407", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102407" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7fd9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102520", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102520" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7fd8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102612", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102612" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7fd7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102613", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2102613" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7fd6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103801", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2103801" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7fd5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103822", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2103822" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7fd4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103852", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103852" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7fd3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103868", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103868" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7fd2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103912", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2103912" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7fd1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103935", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103935" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7fd0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104026", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104026" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7fcf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104105", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104105" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7fce" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104126", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104126" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7fcd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104136", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104136" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7fcc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104316", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104316" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7fcb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104413", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104413" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7fca" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105002", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2105002" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7fc9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105014", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2105014" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7fc8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105034", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2105034" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7fc7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105322", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105322" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7fc6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105404", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105404" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7fc5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105614", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105614" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7fc4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105616", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105616" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7fc3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105628", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2105628" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7fc2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105903", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105903" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7fc1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401106006", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106006" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7fc0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106316", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106316" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7fbf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106317", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2106317" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7fbe" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106328", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106328" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7fbd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106610", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2106610" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7fbc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403106812", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106812" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7fbb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107508", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107508" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7fba" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107617", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2107617" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7fb9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107705", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2107705" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7fb8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107928", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107928" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7fb7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110110", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2110110" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7fb6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110120", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110120" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7fb5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114411", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2114411" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7fb4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108107", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2108107" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7fb3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503108801", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108801" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7fb2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503108906", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108906" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7fb1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110549", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110549" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7fb0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110725", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110725" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7faf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110834", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110834" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7fae" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111006", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111006" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7fad" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111315", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111315" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7fac" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604111702", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2111702" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7fab" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604111721", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 47, + "sa1_7dig16": "2111721" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7faa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109405", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109405" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7fa9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109411", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2109411" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7fa8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109538", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2109538" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7fa7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109719", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109719" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7fa6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112203", + "neg_nil_inc_fam_households": 14, + "negative_nil_income_tot": 48, + "sa1_7dig16": "2112203" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7fa5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110210", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110210" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7fa4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110308", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2110308" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7fa3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110311", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110311" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7fa2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114414", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114414" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7fa1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114721", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114721" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7fa0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114804", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2114804" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f9f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115034", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115034" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f9e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115342", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115342" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f9d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115718", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115718" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f9c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702116003", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116003" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f9b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116225", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116225" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f9a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116314", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2116314" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f99" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116405", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116405" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f98" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116406", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116406" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f97" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116522", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116522" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f96" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116524", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2116524" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f95" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116945", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116945" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f94" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117015", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117015" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f93" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117038", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117038" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f92" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117325", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117325" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f91" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117401", + "neg_nil_inc_fam_households": 7, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117401" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f90" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117730", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2117730" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f8f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117842", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117842" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f8e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118610", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2118610" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f8d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118624", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118624" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f8c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118816", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118816" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f8b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118905", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2118905" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f8a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118927", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2118927" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f89" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119019", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119019" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f88" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119117", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119117" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f87" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119334", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119334" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f86" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119745", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119745" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f85" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119823", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119823" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f84" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119829", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119829" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f83" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120223", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 11, + "sa1_7dig16": "2120223" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f82" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120310", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120310" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f81" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120847", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2120847" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f80" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903120920", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120920" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f7f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121209", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121209" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f7e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121303", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121303" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f7d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121405", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2121405" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f7c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121508", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121508" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f7b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122010", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122010" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f7a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122014", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122014" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f79" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122022", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2122022" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f78" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122112", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122112" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f77" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122617", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122617" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f76" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122701", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122701" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f75" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122826", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122826" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f74" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122933", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122933" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f73" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122953", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2122953" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f72" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122957", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122957" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f71" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123713", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123713" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f70" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124120", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124120" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f6f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124147", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124147" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f6e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124302", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124302" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f6d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124308", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2124308" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f6c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21002123519", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123519" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f6b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124522", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124522" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f6a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124528", + "neg_nil_inc_fam_households": 9, + "negative_nil_income_tot": 11, + "sa1_7dig16": "2124528" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f69" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124624", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124624" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f68" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125405", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125405" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f67" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125612", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125612" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f66" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126636", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2126636" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f65" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126643", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126643" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f64" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104126912", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2126912" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f63" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127423", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2127423" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f62" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127611", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127611" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f61" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127835", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127835" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f60" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127838", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127838" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f5f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128011", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128011" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f5e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130416", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2130416" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f5d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128132", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128132" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f5c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128408", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128408" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f5b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128507", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128507" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f5a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128816", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128816" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f59" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130512", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130512" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f58" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128904", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128904" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f57" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128935", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128935" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f56" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128941", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128941" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f55" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129239", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129239" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f54" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129511", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2129511" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f53" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129718", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2129718" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f52" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130044", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2130044" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f51" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130404", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2130404" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f50" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132723", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132723" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f4f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130817", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130817" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f4e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131017", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2131017" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f4d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131148", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131148" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f4c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131213", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131213" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f4b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131242", + "neg_nil_inc_fam_households": 7, + "negative_nil_income_tot": 11, + "sa1_7dig16": "2131242" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f4a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131418", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131418" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f49" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131424", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131424" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f48" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131719", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131719" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f47" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205131909", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131909" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f46" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205131914", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 15, + "sa1_7dig16": "2131914" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f45" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132006", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2132006" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f44" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132135", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132135" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f43" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132140", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132140" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f42" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132428", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132428" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f41" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132536", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132536" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f40" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132622", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2132622" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f3f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133609", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133609" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f3e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133725", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133725" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f3d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133914", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133914" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f3c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301134041", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134041" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f3b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134112", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134112" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f3a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134128", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2134128" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f39" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134425", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2134425" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f38" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134511", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2134511" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f37" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136142", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136142" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f36" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134625", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2134625" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f35" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134708", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2134708" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f34" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134805", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2134805" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f33" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134816", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2134816" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f32" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303135126", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2135126" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f31" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303135226", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2135226" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f30" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135503", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2135503" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f2f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135725", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135725" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f2e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136113", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136113" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f2d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136611", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136611" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f2c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136612", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2136612" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f2b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136961", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136961" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f2a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136969", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136969" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f29" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137054", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2137054" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f28" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137107", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137107" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f27" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137128", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137128" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f26" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137725", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137725" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f25" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501138837", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138837" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f24" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137803", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137803" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f23" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138132", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138132" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f22" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138328", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138328" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f21" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138413", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2138413" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f20" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138433", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138433" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f1f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501138613", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2138613" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f1e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501138702", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138702" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f1d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140523", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140523" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f1c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21602141320", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2141320" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f1b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21602141321", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141321" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f1a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21602141410", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141410" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f19" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141716", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141716" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f18" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141741", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141741" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f17" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142016", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2142016" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f16" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142025", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2142025" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f15" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142114", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2142114" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f14" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702142420", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2142420" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f13" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802142627", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142627" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f12" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802142705", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2142705" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f11" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143008", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2143008" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f10" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143410", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143410" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f0f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144605", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2144605" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f0e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304146310", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146310" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f0d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146712", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146712" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f0c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144901", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144901" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f0b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103145006", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2145006" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f0a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103145213", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145213" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f09" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145333", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2145333" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f08" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145513", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2145513" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f07" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146725", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146725" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f06" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147803", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2147803" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f05" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147954", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147954" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f04" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704148017", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2148017" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f03" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704148018", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2148018" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7f02" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604111734", + "neg_nil_inc_fam_households": 29, + "negative_nil_income_tot": 336, + "sa1_7dig16": "2111734" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7ed9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147311", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147311" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7ed8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604111909", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2111909" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7ed7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112602", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2112602" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7ed6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147403", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2147403" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7ed5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503108705", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108705" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7ed4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503108717", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2108717" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7ed3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605112929", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2112929" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7ed2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605112936", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2112936" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7ecd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102717", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2102717" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7eca" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20102101013", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2101013" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7ec9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20103101302", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101302" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7ec8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100121", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2100121" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7ec7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100517", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2100517" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7ec6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100810", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2100810" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7ec5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201101819", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101819" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7ec4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201101826", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101826" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7ec3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141646", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141646" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7ec2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202103003", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2103003" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7ec1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20203103204", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103204" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7ec0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103840", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2103840" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7ebf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104116", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104116" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7ebe" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104135", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104135" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7ebd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112118", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2112118" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7ebc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104139", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104139" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7ebb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104229", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104229" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7eba" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104246", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104246" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7eb9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105419", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105419" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7eb8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105517", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105517" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7eb7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105044", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105044" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7eb6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105319", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2105319" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7eb5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105631", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105631" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7eb4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401106205", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106205" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7eb3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106609", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106609" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7eb2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403106919", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106919" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7eb1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107208", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107208" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7eb0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107312", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2107312" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7eaf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107401", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107401" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7eae" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113214", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113214" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7ead" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107438", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2107438" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7eac" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107605", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107605" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7eab" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107708", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2107708" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7eaa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107801", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107801" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7ea9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503108703", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2108703" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7ea8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112119", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2112119" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7ea7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107816", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2107816" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7ea6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108113", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2108113" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7ea5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108301", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108301" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7ea4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108507", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108507" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7ea3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110704", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2110704" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7ea2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503108924", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108924" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7ea1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109348", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2109348" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7ea0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110860", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2110860" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e9f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110904", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110904" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e9e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110921", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110921" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e9d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111004", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111004" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e9c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112325", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2112325" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e9b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109351", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109351" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e9a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109402", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2109402" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e99" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109417", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2109417" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e98" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111108", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111108" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e97" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111144", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111144" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e96" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111461", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111461" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e95" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111620", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111620" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e94" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111630", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111630" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e93" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109718", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109718" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e92" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113309", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2113309" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e91" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113334", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 14, + "sa1_7dig16": "2113334" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e90" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113702", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 18, + "sa1_7dig16": "2113702" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e8f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113709", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2113709" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e8e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113714", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2113714" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e8d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114440", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 12, + "sa1_7dig16": "2114440" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e8c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114842", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114842" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e8b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115002", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2115002" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e8a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115122", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 19, + "sa1_7dig16": "2115122" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e89" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114512", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114512" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e88" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114615", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114615" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e87" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114708", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2114708" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e86" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114714", + "neg_nil_inc_fam_households": 11, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2114714" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e85" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114719", + "neg_nil_inc_fam_households": 7, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2114719" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e84" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114806", + "neg_nil_inc_fam_households": 8, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2114806" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e83" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114830", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114830" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e82" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115202", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2115202" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e81" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115204", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115204" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e80" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115338", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115338" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e7f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115402", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115402" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e7e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115625", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115625" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e7d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115732", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2115732" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e7c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702116021", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116021" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e7b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116503", + "neg_nil_inc_fam_households": 18, + "negative_nil_income_tot": 59, + "sa1_7dig16": "2116503" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e7a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116809", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116809" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e79" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116811", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116811" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e78" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117007", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117007" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e77" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117116", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117116" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e76" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117334", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117334" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e75" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117405", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2117405" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e74" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117736", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117736" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e73" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802118001", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2118001" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e72" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802118006", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2118006" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e71" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802118014", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2118014" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e70" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802118201", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2118201" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e6f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118509", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2118509" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e6e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118528", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118528" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e6d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118811", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118811" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e6c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118914", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118914" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e6b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119337", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119337" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e6a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119402", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2119402" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e69" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119412", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2119412" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e68" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119439", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2119439" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e67" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119510", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2119510" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e66" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119624", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119624" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e65" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119714", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119714" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e64" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119833", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119833" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e63" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119905", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119905" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e62" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120313", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120313" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e61" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120344", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2120344" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e60" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120402", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120402" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e5f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120735", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2120735" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e5e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120803", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2120803" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e5d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120812", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120812" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e5c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903120918", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2120918" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e5b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903120921", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120921" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e5a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121320", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121320" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e59" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903120930", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120930" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e58" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121101", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121101" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e57" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121412", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2121412" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e56" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904121607", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2121607" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e55" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904121705", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121705" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e54" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122042", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122042" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e53" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122312", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2122312" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e52" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122609", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2122609" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e51" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122611", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122611" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e50" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21004124024", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124024" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e4f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124221", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124221" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e4e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129703", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2129703" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e4d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124519", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2124519" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e4c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124634", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124634" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e4b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125619", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125619" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e4a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125626", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2125626" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e49" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125636", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125636" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e48" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125702", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125702" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e47" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130102", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130102" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e46" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125923", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2125923" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e45" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101126014", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2126014" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e44" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21102126212", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126212" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e43" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21102126221", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126221" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e42" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126304", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126304" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e41" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126504", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126504" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e40" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126532", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126532" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e3f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126610", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126610" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e3e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127224", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2127224" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e3d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127427", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2127427" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e3c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127716", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2127716" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e3b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127828", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2127828" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e3a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127836", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127836" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e39" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130434", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2130434" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e38" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128223", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2128223" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e37" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128640", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2128640" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e36" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128723", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2128723" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e35" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129247", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2129247" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e34" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129308", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129308" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e33" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129413", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129413" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e32" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129427", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129427" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e31" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130545", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2130545" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e30" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131006", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131006" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e2f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131163", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 14, + "sa1_7dig16": "2131163" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e2e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131216", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131216" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e2d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131601", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2131601" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e2c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131725", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2131725" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e2b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131808", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131808" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e2a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132212", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2132212" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e29" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132312", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132312" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e28" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132321", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132321" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e27" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132504", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2132504" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e26" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132526", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132526" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e25" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132737", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132737" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e24" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133115", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133115" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e23" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133520", + "neg_nil_inc_fam_households": 9, + "negative_nil_income_tot": 15, + "sa1_7dig16": "2133520" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e22" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301134022", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2134022" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e21" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301134038", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134038" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e20" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135341", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135341" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e1f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301134048", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134048" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e1e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134202", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134202" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e1d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134205", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134205" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e1c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134231", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2134231" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e1b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134314", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134314" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e1a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134434", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134434" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e19" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134440", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134440" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e18" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134702", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2134702" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e17" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134903", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134903" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e16" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303135019", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2135019" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e15" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135326", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2135326" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e14" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135626", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2135626" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e13" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135711", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2135711" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e12" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135831", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2135831" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e11" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304136025", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2136025" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e10" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136216", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136216" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e0f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137120", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137120" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e0e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137204", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137204" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e0d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137230", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2137230" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e0c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137241", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137241" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e0b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138016", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138016" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e0a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138134", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2138134" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e09" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138215", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138215" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e08" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138529", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2138529" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e07" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502139611", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139611" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e06" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502139905", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139905" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e05" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140101", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140101" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e04" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140213", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140213" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e03" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140426", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140426" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e02" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140428", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2140428" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e01" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140505", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2140505" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7e00" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140807", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140807" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7dff" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601141005", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141005" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7dfe" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21602141207", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2141207" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7dfd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141746", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141746" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7dfc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141753", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141753" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7dfb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143032", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143032" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7dfa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141917", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2141917" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7df9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141925", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141925" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7df8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142019", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142019" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7df7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142028", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142028" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7df6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142228", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142228" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7df5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702142401", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142401" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7df4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143501", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2143501" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7df3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702142412", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2142412" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7df2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702142434", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142434" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7df1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702142501", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142501" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7df0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702142535", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142535" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7def" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802142708", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2142708" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7dee" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802142714", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2142714" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7ded" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143020", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143020" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7dec" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143515", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2143515" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7deb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143625", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143625" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7dea" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003143837", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2143837" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7de9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144309", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2144309" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7de8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144316", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2144316" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7de7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144703", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 11, + "sa1_7dig16": "2144703" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7de6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103145101", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 11, + "sa1_7dig16": "2145101" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7de5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103145201", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2145201" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7de4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145330", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145330" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7de3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304146340", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146340" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7de2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146405", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146405" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7de1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146521", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146521" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7de0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502146928", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146928" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7ddf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502146943", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2146943" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7dde" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502147017", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147017" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7ddd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147221", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147221" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7ddc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147225", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147225" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7ddb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147506", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2147506" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7dda" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147509", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147509" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7dd9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147909", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2147909" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7dd8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704148035", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2148035" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7dd7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112219", + "neg_nil_inc_fam_households": 57, + "negative_nil_income_tot": 366, + "sa1_7dig16": "2112219" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7dd6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131105", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2131105" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7dd4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111309", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111309" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7dd3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133429", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 11, + "sa1_7dig16": "2133429" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7db7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113321", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2113321" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7db6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114841", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114841" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7db5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103145203", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145203" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7db4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124947", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124947" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7daf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120704", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 11, + "sa1_7dig16": "2120704" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7da4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111454", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111454" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7da3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123731", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2123731" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7da2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104124", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104124" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7da1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104125", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2104125" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7da0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104302", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2104302" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d9d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20301103403", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103403" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d9c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106311", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106311" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d9b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100109", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100109" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d9a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100347", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100347" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d99" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100808", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100808" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d98" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100833", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2100833" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d97" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20102101015", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2101015" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d96" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20102101211", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2101211" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d95" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103720", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103720" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d94" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103806", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2103806" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d93" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20103101507", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101507" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d92" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20103101603", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101603" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d91" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102403", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102403" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d90" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103819", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103819" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d8f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103823", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2103823" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d8e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103856", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103856" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d8d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103858", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103858" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d8c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104017", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104017" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d8b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104030", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104030" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d8a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102813", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102813" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d89" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202103101", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103101" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d88" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112229", + "neg_nil_inc_fam_households": 16, + "negative_nil_income_tot": 95, + "sa1_7dig16": "2112229" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d87" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104330", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104330" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d86" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104423", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104423" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d85" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104508", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104508" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d84" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104609", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104609" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d83" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104615", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104615" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d82" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104621", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104621" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d81" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105305", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105305" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d80" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105310", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105310" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d7f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105321", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2105321" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d7e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105416", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105416" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d7d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105417", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2105417" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d7c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604111810", + "neg_nil_inc_fam_households": 24, + "negative_nil_income_tot": 78, + "sa1_7dig16": "2111810" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d7b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106720", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106720" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d7a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107009", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107009" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d79" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107303", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107303" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d78" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107815", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107815" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d77" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107821", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107821" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d76" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112234", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 15, + "sa1_7dig16": "2112234" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d75" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112312", + "neg_nil_inc_fam_households": 11, + "negative_nil_income_tot": 162, + "sa1_7dig16": "2112312" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d74" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112513", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2112513" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d73" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108203", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2108203" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d72" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108210", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108210" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d71" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109307", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109307" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d70" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113007", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113007" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d6f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108221", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108221" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d6e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503108905", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108905" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d6d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109015", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2109015" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d6c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109736", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2109736" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d6b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505109901", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109901" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d6a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111136", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111136" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d69" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113213", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113213" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d68" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113342", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2113342" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d67" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113403", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2113403" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d66" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113439", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2113439" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d65" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113512", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113512" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d64" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113608", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113608" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d63" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113728", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2113728" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d62" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113832", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113832" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d61" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114110", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114110" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d60" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114206", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2114206" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d5f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114308", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114308" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d5e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114816", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2114816" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d5d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114910", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2114910" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d5b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114926", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2114926" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d5a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114944", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2114944" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d59" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115136", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115136" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d58" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115144", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 11, + "sa1_7dig16": "2115144" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d57" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115626", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2115626" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d56" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702116023", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2116023" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d55" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116139", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2116139" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d54" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116312", + "neg_nil_inc_fam_households": 12, + "negative_nil_income_tot": 48, + "sa1_7dig16": "2116312" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d53" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116611", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116611" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d52" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140619", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140619" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d51" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116922", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116922" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d50" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117403", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117403" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d4f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117414", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117414" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d4e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117424", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2117424" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d4d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118515", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118515" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d4c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119326", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119326" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d4b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119331", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119331" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d4a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119442", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119442" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d49" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119607", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2119607" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d48" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119717", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119717" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d47" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119908", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119908" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d46" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119918", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119918" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d45" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119922", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119922" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d44" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120317", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120317" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d43" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120517", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120517" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d42" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121305", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121305" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d41" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121310", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121310" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d40" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122038", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2122038" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d3f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127326", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127326" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d3e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121216", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121216" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d3d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122124", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122124" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d3c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122409", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2122409" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d3b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122510", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122510" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d3a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122514", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122514" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d39" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123707", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123707" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d38" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003123928", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123928" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d37" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124304", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2124304" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d36" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005125003", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2125003" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d35" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125110", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2125110" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d34" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140634", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2140634" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d33" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125617", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125617" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d32" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101126041", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2126041" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d31" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126524", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2126524" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d30" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126539", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126539" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d2f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127004", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2127004" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d2e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127102", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2127102" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d2d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127109", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2127109" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d2c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127319", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127319" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d2b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127328", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2127328" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d2a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127410", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127410" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d29" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127808", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2127808" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d28" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129452", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129452" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d27" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128314", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128314" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d26" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128423", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128423" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d25" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128612", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128612" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d24" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128914", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128914" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d23" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129715", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2129715" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d22" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130128", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130128" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d21" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128623", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128623" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d20" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128632", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128632" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d1f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128946", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128946" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d1e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130529", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2130529" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d1d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128642", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128642" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d1c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128652", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128652" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d1b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128705", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128705" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d1a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128719", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2128719" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d19" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129211", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2129211" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d18" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137405", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137405" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d17" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204130906", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130906" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d16" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131011", + "neg_nil_inc_fam_households": 8, + "negative_nil_income_tot": 20, + "sa1_7dig16": "2131011" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d15" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131023", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131023" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d14" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131247", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2131247" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d13" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205131918", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131918" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d12" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132301", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2132301" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d11" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132418", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132418" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d10" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133057", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133057" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d0f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133308", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133308" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d0e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137526", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2137526" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d0d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133325", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133325" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d0c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133521", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133521" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d0b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133814", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2133814" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d0a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133838", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133838" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d09" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134240", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134240" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d08" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134320", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134320" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d07" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303135125", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2135125" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d06" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136215", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2136215" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d05" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136228", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136228" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d04" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136236", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136236" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d03" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136312", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136312" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d02" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136960", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136960" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d01" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136968", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136968" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7d00" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137003", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137003" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7cff" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137009", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137009" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7cfe" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137035", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137035" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7cfd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137038", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137038" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7cfc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137147", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2137147" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7cfb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137212", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2137212" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7cfa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137223", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137223" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7cf9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137908", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137908" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7cf8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138213", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138213" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7cf7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138515", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138515" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7cf6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501138605", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138605" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7cf5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139109", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2139109" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7cf4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21501139309", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2139309" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7cf3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502139513", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2139513" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7cf2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502139910", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2139910" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7cf1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140510", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140510" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7cf0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140715", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140715" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7cef" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140810", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2140810" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7cee" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601140811", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2140811" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7ced" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21602141209", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141209" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7cec" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141523", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141523" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7ceb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142009", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142009" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7cea" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142302", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2142302" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7ce9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702142528", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2142528" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7ce8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902142831", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2142831" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7ce7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143409", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2143409" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7ce6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143633", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143633" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7ce5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144103", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2144103" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7ce4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144109", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2144109" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7ce3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144412", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2144412" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7ce2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101144621", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2144621" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7ce1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103145107", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145107" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7ce0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145401", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145401" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7cdf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204146033", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146033" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7cde" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304146102", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146102" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7cdd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146615", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146615" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7cdc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146739", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146739" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7cdb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146742", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2146742" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7cda" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147316", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2147316" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7cd9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147405", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147405" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7cd8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147413", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147413" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7cd7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147907", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147907" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7cd6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147943", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147943" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7cd5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147947", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147947" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7cd4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132646", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132646" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7cd3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132647", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2132647" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7cd2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145431", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2145431" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7cd1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110558", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2110558" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7cd0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117447", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117447" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7ccf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118806", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118806" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7cce" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204130910", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2130910" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7ccd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134318", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134318" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7ccc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303135012", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2135012" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7cc0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902142901", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2142901" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7cb2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100227", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2100227" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7ca4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100101", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100101" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7ca2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100203", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100203" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c9e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100327", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2100327" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c9d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100328", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100328" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c9c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100419", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2100419" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c9b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100432", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2100432" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c9a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100435", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100435" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c99" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20102101216", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101216" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c98" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20103101713", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2101713" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c97" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102029", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102029" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c96" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102421", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102421" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c95" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102510", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102510" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c94" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102701", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2102701" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c93" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102814", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102814" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c92" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104702", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104702" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c91" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105003", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105003" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c90" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102816", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102816" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c8f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20203103212", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103212" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c8e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403106926", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2106926" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c8d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20203103309", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2103309" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c8c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103847", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103847" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c8b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104027", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104027" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c8a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104138", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104138" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c89" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104217", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104217" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c88" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104510", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2104510" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c87" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104512", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104512" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c86" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117433", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117433" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c85" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105009", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2105009" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c84" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105418", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2105418" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c83" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105515", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2105515" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c82" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401105620", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2105620" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c81" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107321", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107321" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c80" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108110", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2108110" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c7f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108121", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108121" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c7e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109756", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2109756" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c7d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401106009", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106009" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c7c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106704", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106704" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c7b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108406", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2108406" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c7a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109630", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2109630" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c79" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110014", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2110014" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c78" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108605", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2108605" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c77" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109122", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2109122" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c76" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109335", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2109335" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c75" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109504", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2109504" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c74" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109539", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109539" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c73" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113715", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2113715" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c72" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110208", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2110208" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c71" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110303", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110303" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c70" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110322", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110322" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c6f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110559", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 12, + "sa1_7dig16": "2110559" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c6e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110824", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2110824" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c6d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111137", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111137" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c6c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113718", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2113718" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c6b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111324", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111324" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c6a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111519", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 12, + "sa1_7dig16": "2111519" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c69" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112236", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 59, + "sa1_7dig16": "2112236" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c68" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112611", + "neg_nil_inc_fam_households": 13, + "negative_nil_income_tot": 40, + "sa1_7dig16": "2112611" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c67" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112624", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2112624" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c66" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605112833", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2112833" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c65" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113020", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2113020" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c64" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113346", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2113346" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c63" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113348", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2113348" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c62" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113415", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2113415" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c61" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113430", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2113430" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c60" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113723", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2113723" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c5f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113827", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2113827" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c5e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114004", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114004" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c5d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114009", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114009" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c5c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114437", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114437" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c5b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114443", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2114443" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c5a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114712", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2114712" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c59" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114715", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2114715" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c58" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114918", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2114918" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c57" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114921", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114921" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c56" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114934", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114934" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c55" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117210", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117210" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c54" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115102", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115102" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c53" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115224", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115224" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c52" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115306", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2115306" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c51" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115330", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115330" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c50" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115539", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115539" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c4f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702116007", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116007" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c4e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116415", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2116415" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c4d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116430", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116430" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c4c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117104", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117104" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c4b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118618", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118618" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c4a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119012", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119012" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c49" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119119", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119119" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c48" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119322", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119322" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c47" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119325", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119325" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c46" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119613", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2119613" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c45" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119748", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119748" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c44" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120107", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120107" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c43" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120346", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120346" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c42" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120415", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120415" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c41" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120519", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120519" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c40" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120709", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120709" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c3f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120731", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120731" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c3e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120811", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120811" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c3d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121523", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2121523" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c3c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122351", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122351" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c3b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122354", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2122354" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c3a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122405", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122405" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c39" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121532", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121532" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c38" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122031", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2122031" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c37" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122106", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2122106" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c36" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904122310", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2122310" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c35" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127845", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2127845" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c34" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001122612", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2122612" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c33" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001123106", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123106" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c32" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21002123213", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2123213" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c31" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21002123215", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123215" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c30" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124707", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2124707" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c2f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124925", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2124925" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c2e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125423", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125423" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c2d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125817", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125817" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c2c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130807", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130807" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c2b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125906", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2125906" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c2a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101126009", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2126009" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c29" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21102126211", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126211" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c28" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126513", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2126513" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c27" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126720", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2126720" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c26" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127122", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127122" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c25" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127222", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127222" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c24" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127317", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2127317" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c23" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105127605", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127605" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c22" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204130902", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2130902" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c21" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128145", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2128145" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c20" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202129434", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129434" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c1f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130039", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2130039" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c1e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130137", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2130137" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c1d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130505", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2130505" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c1c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130522", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130522" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c1b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130605", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130605" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c1a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130628", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2130628" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c19" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130801", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2130801" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c18" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131007", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2131007" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c17" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131107", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131107" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c16" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131222", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131222" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c15" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131231", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131231" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c14" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131303", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131303" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c13" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131407", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131407" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c12" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131448", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131448" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c11" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131449", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2131449" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c10" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131710", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2131710" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c0f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131718", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2131718" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c0e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21204131720", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2131720" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c0d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132243", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132243" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c0c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132335", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132335" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c0b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132435", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2132435" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c0a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132519", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132519" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c09" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132544", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132544" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c08" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132610", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2132610" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c07" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132627", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2132627" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c06" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132628", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2132628" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c05" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132738", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2132738" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c04" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132739", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132739" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c03" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301132808", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2132808" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c02" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133104", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133104" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c01" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133121", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2133121" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7c00" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133704", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2133704" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7bff" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133903", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133903" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7bfe" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301133910", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2133910" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7bfd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21301134033", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134033" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7bfc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134110", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2134110" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7bfb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134244", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2134244" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7bfa" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21302134627", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2134627" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7bf9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134710", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2134710" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7bf8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303134812", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 10, + "sa1_7dig16": "2134812" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7bf7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303135015", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135015" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7bf6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21303135201", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135201" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7bf5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135315", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2135315" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7bf4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135706", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2135706" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7bf3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21304135707", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 12, + "sa1_7dig16": "2135707" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7bf2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136203", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2136203" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7bf1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136223", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2136223" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7bf0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136546", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136546" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7bef" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136631", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136631" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7bee" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136803", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136803" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7bed" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305136963", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2136963" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7bec" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137127", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137127" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7beb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21401137411", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2137411" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7bea" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402137914", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2137914" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7be9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138050", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138050" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7be8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138107", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2138107" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7be7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143033", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143033" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7be6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138342", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138342" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7be5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138425", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138425" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7be4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138502", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2138502" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7be3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21402138528", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2138528" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7be2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502139512", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139512" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7be1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143109", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2143109" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7be0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502139519", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2139519" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7bdf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140420", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2140420" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7bde" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21503140503", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2140503" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7bdd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21601141001", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2141001" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7bdc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21602141107", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2141107" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7bdb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21602141317", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2141317" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7bda" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21602141323", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2141323" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7bd9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21603141722", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2141722" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7bd8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142020", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2142020" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7bd7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21701142103", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142103" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7bd6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702142426", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2142426" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7bd5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802142614", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2142614" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7bd4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143210", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143210" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7bd3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143318", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143318" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7bd2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904143611", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2143611" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7bd1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21003144013", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144013" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7bd0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144108", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144108" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7bcf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144114", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2144114" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7bce" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144215", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144215" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7bcd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005144222", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2144222" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7bcc" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145321", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145321" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7bcb" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145422", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145422" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7bca" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145429", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2145429" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7bc9" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21202145511", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2145511" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7bc8" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203145706", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145706" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7bc7" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203145827", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2145827" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7bc6" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146505", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146505" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7bc5" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21305146511", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2146511" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7bc4" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21502146919", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2146919" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7bc3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147109", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2147109" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7bc2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21703147223", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2147223" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7bc1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704147934", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 8, + "sa1_7dig16": "2147934" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7bc0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21704148013", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2148013" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7bbf" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112129", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2112129" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7bbe" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112617", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 20, + "sa1_7dig16": "2112617" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7bbd" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111313", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111313" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7bba" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114516", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114516" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7bb1" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114702", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2114702" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7ba3" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801116814", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116814" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7ba2" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114727", + "neg_nil_inc_fam_households": 5, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2114727" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7ba0" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117406", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2117406" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b9e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117442", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117442" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b8e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114902", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114902" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b8d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701114906", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114906" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b8b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100106", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2100106" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b8a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100232", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2100232" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b89" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20101100321", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2100321" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b88" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20102100901", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2100901" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b87" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20102101009", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2101009" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b86" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102503", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102503" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b85" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104249", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2104249" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b84" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20801117110", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117110" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b83" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20102101124", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2101124" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b82" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102804", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102804" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b81" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20102101206", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2101206" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b80" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102216", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2102216" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b7f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20201102221", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2102221" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b7e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104029", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2104029" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b7d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104202", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104202" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b7c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202102825", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2102825" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b7b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20202103021", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103021" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b7a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103719", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103719" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b79" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103722", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2103722" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b78" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103803", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103803" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b77" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103864", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2103864" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b76" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302103906", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2103906" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b75" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104320", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2104320" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b74" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104704", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2104704" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b73" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20302104736", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2104736" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b72" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20303105312", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2105312" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b71" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20401106001", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106001" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b70" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106308", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106308" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b6f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106613", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106613" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b6e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20402106649", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106649" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b6d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403106910", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2106910" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b6c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403106931", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2106931" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b6b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107426", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2107426" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b6a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107461", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107461" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b69" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20403107512", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107512" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b68" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20602111016", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2111016" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b67" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20501107805", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2107805" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b66" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20502108115", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108115" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b65" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503108719", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2108719" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b64" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503108912", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2108912" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b63" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109024", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109024" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b62" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20503109103", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109103" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b61" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109421", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109421" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b60" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109526", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2109526" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b5f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20504109531", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2109531" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b5e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20505110128", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110128" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b5d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20601110615", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2110615" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b5c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20603111437", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111437" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b5b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604111716", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2111716" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b5a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20604112411", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2112411" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b59" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605112935", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2112935" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b58" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605112939", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2112939" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b57" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113208", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113208" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b56" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113305", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2113305" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b55" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20605113437", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2113437" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b54" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113617", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113617" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b53" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20606113812", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2113812" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b52" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114014", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114014" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b51" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114507", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114507" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b50" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114508", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114508" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b4f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20607114520", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2114520" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b4e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115309", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115309" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b4d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115310", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115310" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b4c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115311", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2115311" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b4b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115514", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115514" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b4a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115522", + "neg_nil_inc_fam_households": 7, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2115522" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b49" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20701115540", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2115540" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b48" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702116024", + "neg_nil_inc_fam_households": 4, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2116024" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b47" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116108", + "neg_nil_inc_fam_households": 7, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2116108" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b46" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116135", + "neg_nil_inc_fam_households": 6, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2116135" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b45" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115606", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2115606" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b44" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702115729", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 12, + "sa1_7dig16": "2115729" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b43" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702116001", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116001" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b42" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20702116010", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2116010" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b41" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20703116515", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2116515" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b40" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117607", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2117607" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b3f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117729", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117729" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b3e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117743", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2117743" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b3d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20802117833", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2117833" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b3c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803118925", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2118925" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b3b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20803119013", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119013" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b3a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20804119531", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2119531" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b39" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119706", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119706" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b38" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901119808", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2119808" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b37" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120016", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 6, + "sa1_7dig16": "2120016" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b36" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120021", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120021" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b35" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20901120332", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2120332" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b34" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20902120841", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2120841" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b33" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121307", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2121307" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b32" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20903121312", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2121312" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b31" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904121910", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2121910" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b30" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "20904121937", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2121937" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b2f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001123115", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2123115" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b2e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21001123120", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2123120" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b2d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124222", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 9, + "sa1_7dig16": "2124222" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b2c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124323", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2124323" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b2b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124727", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2124727" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b2a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21005124940", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 4, + "sa1_7dig16": "2124940" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b29" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125618", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125618" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b28" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125637", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2125637" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b27" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130032", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 7, + "sa1_7dig16": "2130032" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b26" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21101125925", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2125925" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b25" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21102126208", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126208" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b24" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126601", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126601" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b23" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126628", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126628" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b22" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126712", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126712" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b21" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126746", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2126746" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b20" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21103126805", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2126805" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b1f" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21104127026", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2127026" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b1e" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21105128002", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2128002" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b1d" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201128926", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2128926" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b1c" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21201129116", + "neg_nil_inc_fam_households": 0, + "negative_nil_income_tot": 0, + "sa1_7dig16": "2129116" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b1b" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21203130034", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 3, + "sa1_7dig16": "2130034" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b1a" + }, + { + "type": "Feature", + "properties": { + "sa1_main16": "21205132528", + "neg_nil_inc_fam_households": 3, + "negative_nil_income_tot": 5, + "sa1_7dig16": "2132528" + }, + "id": "sa1_p28_total_hsehold_income_by_hsehold_census_2016.fid--11cc2652_1626eda5dc6_-7b19" + } + ] +} diff --git a/examples/data/choropleth_metadata.json b/examples/data/choropleth_metadata.json new file mode 100644 index 0000000000..c6d77da043 --- /dev/null +++ b/examples/data/choropleth_metadata.json @@ -0,0 +1,88 @@ +{ + "organisation": "AU_Govt_ABS", + "name": "sa1_p28_total_hsehold_income_by_hsehold_census_2016", + "title": "SA1-P28 Total Household Income (Weekly) by Household Composition-Census 2016", + "legal": { + "copyrightYear": "2017", + "attributionYear": "2017", + "attribution": "{datasource.organisationTitle}, ({dataset.attributionYear}): {dataset.title}; accessed from AURIN Portal on {dateOfAccess}.", + "clickthrough": false, + "licenceType": "Creative Commons Attribution 2.5 Australia (CC BY 2.5 AU)", + "copyrightNotice": "© {datasource.organisationTitle} {dataset.copyrightYear}" + }, + "referenceSystemIdentifier": "urn:x-ogc:def:crs:EPSG:4283", + "geoLevel": "sa1_2016", + "key": "sa1_main16", + "keyRegex": null, + "availability": "true", + "geomField": "wkb_geometry", + "keyword": "household composition,household income,census,2016,weekly income,pep,place of enumeration profile,p28,sa1", + "theme": null, + "temporalExtent": { + "beginDate": "2016-08-09T00:00:00", + "endDate": "2016-08-11T00:00:00", + "selectTime": false + }, + "type": "dataset", + "_id": "dataset-AU_Govt_ABS-sa1_p28_total_hsehold_income_by_hsehold_census_2016-sa1_2016", + "bbox": null, + "abstract": "SA1 based data for Total Household Income (Weekly) by Household Composition, in Place of Enumeration Profile (PEP), 2016 Census. Count of occupied private dwellings. Total Household Income (Weekly) is calculated by summing the personal incomes reported by all household members aged 15 years and over. Excludes 'Other non-classifiable' households. Comprises 'Visitors only', 'Lone person' and 'Group households'. The data is by SA1 2016 boundaries. Periodicity: 5-Yearly.
\nNote: There are small random adjustments made to all cell values to protect the confidentiality of data. These adjustments may cause the sum of rows or columns to differ by small amounts from table totals.
\nFor more information visit the data source: http://www.abs.gov.au/census.\n", + "selectedAttributes": [ + { + "name": "sa1_main16", + "type": "String", + "title": "SA1 2016 11-digit identifier", + "description": "SA1 2016 11-digit identifier.", + "stype": "nominal", + "isDimension": false + }, + { + "name": "sa1_7dig16", + "type": "String", + "title": "SA1 7 digit code 2016", + "description": "SA1 7 digit code 2016.", + "stype": "nominal", + "isDimension": false + }, + { + "name": "neg_nil_inc_fam_households", + "type": "Short", + "title": "Negative Nil income Family households", + "description": "Negative Nil income Family households.", + "stype": "ratio", + "isDimension": false + }, + { + "name": "negative_nil_income_tot", + "type": "Short", + "title": "Negative Nil income Total", + "description": "Negative Nil income Total.", + "stype": "ratio", + "isDimension": false + } + ], + "filter": { + "filterType": "tabular", + "feature": { + "key": "sa1_main16", + "geoLevel": "sa1_2016", + "geoField": "ignored", + "year": "2006", + "featureBbox": [ + 140.961681984, + -39.159189527500004, + 149.976679008, + -33.9806475865 + ], + "featureType": "ste", + "featureInstance": "2", + "featureName": "Victoria", + "referenceSystemIdentifier": "urn:x-ogc:def:crs:EPSG:4283", + "prefix": "", + "keyTransform": null + }, + "states": [ + "2" + ] + } +} diff --git a/folium/folium.py b/folium/folium.py index 871f907abc..8df21cd200 100644 --- a/folium/folium.py +++ b/folium/folium.py @@ -19,6 +19,7 @@ from folium.map import FitBounds from folium.raster_layers import TileLayer from folium.utilities import _validate_location +from folium.vector_layers import VectorGrid, VectorGridChoropleth from jinja2 import Environment, PackageLoader, Template @@ -638,3 +639,46 @@ def keep_in_front(self, *args): """ for obj in args: self.objects_to_stay_in_front.append(obj) + + def add_vector_grid_protobuf(self, tiles, name=None, options=None): + """ + An implementation of VectorGrid.protobuf plugin to display gridded vector data as a tile-layer + src: https://github.com/Leaflet/Leaflet.VectorGrid + docs: http://leaflet.github.io/Leaflet.VectorGrid/vectorgrid-api-docs.html + + Parameters + ---------- + tiles: location of the tiles (i.e. url) + name: name of the layer + options: options to pass to VectorGrid protobuf (i.e. styles) + + Usage + ----- + See examples/VectorGrid.ipynb + + """ + _default_js.append( + ('vectorGrid', 'https://unpkg.com/leaflet.vectorgrid@1.3.0/dist/Leaflet.VectorGrid.bundled.js')) + vectorGrid = VectorGrid(tiles=tiles, name=name, options=options) + self.add_child(vectorGrid, name=name) + + def add_vector_grid_choropleth(self, tiles, data, field, name=None, options=None): + """ + Returns a vector grid based Choropleth, tiles are protobuf based and data is a JSON dictionary, + linked by the key in (field) + Parameters + ---------- + tiles: location of the tiles (i.e. url) + name: name of the layer + options: options to pass to VectorGrid protobuf (i.e. styles) + data: JSON dictionary containing unique keyfield values as keys and color (idealy generated by a color map) as value + field: linking key field + + Usage + ----- + See examples/VectorGrid.ipynb (may need ipythonwidgets installed) + """ + _default_js.append( + ('vectorGrid', 'https://unpkg.com/leaflet.vectorgrid@1.3.0/dist/Leaflet.VectorGrid.bundled.js')) + vectorGridChoropleth = VectorGridChoropleth(tiles=tiles, name=name, data=data, field=field, options=options) + self.add_child(vectorGridChoropleth, name=name) diff --git a/folium/vector_layers.py b/folium/vector_layers.py index b0b5383cd5..0ba2c19635 100644 --- a/folium/vector_layers.py +++ b/folium/vector_layers.py @@ -12,7 +12,7 @@ from branca.element import (CssLink, Element, Figure, JavascriptLink, MacroElement) # noqa from branca.utilities import (_locations_tolist, _parse_size, image_to_url, iter_points, none_max, none_min) # noqa -from folium.map import Marker +from folium.map import Marker, Layer from jinja2 import Template @@ -327,3 +327,110 @@ def __init__(self, location, radius=10, popup=None, tooltip=None, **kwargs): tooltip=tooltip) self._name = 'CircleMarker' self.options = _parse_options(line=False, radius=radius, **kwargs) + + +class VectorGrid(Layer): + """ + An implementation of VectorGrid.protobuf plugin to display gridded vector data as a layer + src: https://github.com/Leaflet/Leaflet.VectorGrid + docs: http://leaflet.github.io/Leaflet.VectorGrid/vectorgrid-api-docs.html + + Parameters + ---------- + tiles: location of the tiles (i.e. url) + name: name of the layer + options: options to pass to VectorGrid protobuf (i.e. styles) + + Usage + ----- + See examples/VectorGrid.ipynb + + """ + _template = Template(u""" + {% macro script(this, kwargs) -%} + var {{this.get_name()}} = L.vectorGrid.protobuf( + '{{this.tiles}}', + {{ this.options }}).addTo({{this._parent.get_name()}}); + {%- endmacro %} + """) # noqa + + def __init__(self, tiles, name, options): + self.tile_name = (name if name is not None else + ''.join(tiles.lower().strip().split())) + super(VectorGrid, self).__init__(name=self.tile_name) + self.tiles = tiles + self._name = 'VectorGrid' + if(options): + self.options = options + +class VectorGridChoropleth(Layer): + """ + Returns a vector grid based Choropleth, tiles are protobuf based and data is a JSON dictionary, + linked by the key in (field) + Parameters + ---------- + tiles: location of the tiles (i.e. url) + name: name of the layer + options: options to pass to VectorGrid protobuf (i.e. styles) + data: JSON dictionary containing unique keyfield values as keys and color (idealy generated by a color map) as value + field: linking key field + + Usage + ----- + See examples/VectorChoropleth.ipynb (may need ipythonwidgets installed) + """ + + _template = Template(u""" + {% macro script(this, kwargs) -%} + var vectorTileStyling = { + {{this.tile_name}} : function(properties,zoom) { + if(properties.{{this.field}} in {{this.data}} ) + { + return { + "fillColor": {{this.data}}[properties.{{this.field}}], + "fillOpacity": 1, + "fill": true, + "color": '#FFD3D3D3', + "opacity": 1, + "weight" : 1 + } + + } + else + { + return { + "color": "#FFD3D3D3", + "weight": 1, + "opacity": 0.65 + + } + } + } + }; + + let featureFunction = function(feat) { + return feat.properties.{{this.field}}; } + var mapboxVectorTileOptions = { + rendererFactory: L.canvas.tile, + attribution: 'none', + vectorTileLayerStyles: vectorTileStyling, + interactive : true, + getFeatureId : featureFunction + }; + + var {{this.get_name()}} = L.vectorGrid.protobuf( + '{{this.tiles}}', mapboxVectorTileOptions + ).addTo({{this._parent.get_name()}}); + {%- endmacro %} + """) # noqa + + def __init__(self, tiles, name, data, field, options): + self.tile_name = (name if name is not None else + ''.join(tiles.lower().strip().split())) + super(VectorGridChoropleth, self).__init__(name=self.tile_name) + self.tiles = tiles + self._name = 'VectorGridChoropleth' + self.data = data + self.field = field + if (options): + self.options = options