daniel-dona commited on
Commit
58562a2
·
verified ·
1 Parent(s): 75dc68f

Initial upload: full 5-min resolution + monthly aggregate, all 33 REE API columns, deduplicated

Browse files
README.md CHANGED
@@ -1,3 +1,189 @@
1
  ---
2
- license: mit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ language:
3
+ - en
4
+ - es
5
+ pretty_name: "REE Iberian Peninsula Electricity Generation — 5-min resolution (2008–2026)"
6
+ tags:
7
+ - electricity
8
+ - energy
9
+ - spain
10
+ - iberia
11
+ - generation
12
+ - demand
13
+ - time-series
14
+ - renewables
15
+ - power-grid
16
+ size_categories:
17
+ - 1M<n<10M
18
+ task_categories:
19
+ - tabular-classification
20
+ - time-series-forecasting
21
+ license: cc-by-4.0
22
  ---
23
+
24
+ # REE Iberian Peninsula Electricity Generation
25
+
26
+ Hourly electricity **demand and generation by source** for the Iberian Peninsula, sourced from [REE (Red Eléctrica de España)](https://demanda.ree.es/). Covers **2008–present** at **5-minute resolution**, fully deduplicated.
27
+
28
+ ## Quick Stats
29
+
30
+ | | Full Resolution | Monthly Aggregate |
31
+ |---|---|---|
32
+ | **Rows** | 1,931,443 | 222 |
33
+ | **Columns** | 38 | 35 |
34
+ | **Date range** | 2007-12-31 → 2026-05-14 | 2007-12 → 2026-05 |
35
+ | **Resolution** | 5 minutes | Monthly mean |
36
+ | **Parquet size** | ~47 MB | ~47 KB |
37
+
38
+ ## Files
39
+
40
+ | File | Description |
41
+ |---|---|
42
+ | `ree_peninsula_generation_full.parquet` | Full 5-min resolution, all columns, deduplicated |
43
+ | `ree_peninsula_generation_monthly.parquet` | Monthly mean aggregation |
44
+ | `ree_peninsula_generation_monthly.csv` | Monthly data as CSV for quick inspection |
45
+
46
+ ## Columns
47
+
48
+ ### Timestamp & Helpers
49
+
50
+ | Column | Type | Description |
51
+ |---|---|---|
52
+ | `ts` | datetime | Timestamp (5-minute intervals) |
53
+ | `year` | int | Extracted year |
54
+ | `month` | int | Extracted month (1–12) |
55
+ | `day` | int | Extracted day (1–31) |
56
+ | `hour` | int | Extracted hour (0–23) |
57
+ | `date` | string | Date as `YYYY-MM-DD` |
58
+
59
+ ### Demand
60
+
61
+ | Column | Unit | Description |
62
+ |---|---|---|
63
+ | `dem` | MW | Total electricity demand on the Iberian Peninsula |
64
+
65
+ ### Generation by Source
66
+
67
+ | Column | Unit | Description (ES) |
68
+ |---|---|---|
69
+ | `eol` | MW | Eólica (Wind) |
70
+ | `nuc` | MW | Nuclear |
71
+ | `gf` | MW | Gas natural |
72
+ | `car` | MW | Carbón (Coal) |
73
+ | `cc` | MW | Ciclo combinado (Combined cycle) |
74
+ | `hid` | MW | Hidráulica (Hydropower) |
75
+ | `sol` | MW | Solar (legacy total; may overlap with `solFot` + `solTer`) |
76
+ | `solFot` | MW | Solar fotovoltaica (Photovoltaic) |
77
+ | `solTer` | MW | Solar térmica (Concentrated solar thermal) |
78
+ | `termRenov` | MW | Térmica renovable (Renewable thermal / biomass) |
79
+ | `cogenResto` | MW | Cogeneración y resto (Cogeneration & other) |
80
+ | `aut` | MW | Autogeneración (Self-generation) |
81
+ | `conb` | MW | Bombeo (Pumped storage consumption) |
82
+ | `turb` | MW | Turbinación (Pumped storage generation) |
83
+ | `gnhd` | MW | Hidráulica no distrib. bombeo |
84
+ | `bat` | MW | Baterías (Battery discharge) |
85
+ | `consBat` | MW | Consumo de baterías (Battery charging) |
86
+ | `vap` | MW | Vapor (Steam) |
87
+
88
+ ### International Exchange
89
+
90
+ | Column | Unit | Description |
91
+ |---|---|---|
92
+ | `inter` | MW | Net international exchange (positive = net export) |
93
+ | `icb` | MW | Islanded consumption blocks |
94
+ | `expAnd` | MW | Exports to Andorra |
95
+ | `expMar` | MW | Exports to Morocco |
96
+ | `expPor` | MW | Exports to Portugal |
97
+ | `expFra` | MW | Exports to France |
98
+ | `expTot` | MW | Total exports |
99
+ | `impFra` | MW | Imports from France |
100
+ | `impPor` | MW | Imports from Portugal |
101
+ | `impMar` | MW | Imports from Morocco |
102
+ | `impAnd` | MW | Imports from Andorra |
103
+ | `impTot` | MW | Total imports |
104
+
105
+ ### Balancing
106
+
107
+ | Column | Unit | Description |
108
+ |---|---|---|
109
+ | `dif` | MW | Difference / balancing term |
110
+
111
+ ## Usage
112
+
113
+ ### Python (full resolution)
114
+
115
+ ```python
116
+ import pandas as pd
117
+
118
+ df = pd.read_parquet("https://huggingface.co/datasets/daniel-dona/ree-data/resolve/main/ree_peninsula_generation_full.parquet")
119
+ print(df.shape) # (1931443, 38)
120
+ print(df.columns.tolist())
121
+ ```
122
+
123
+ ### Python (via `datasets` library)
124
+
125
+ ```python
126
+ from datasets import load_dataset
127
+
128
+ ds = load_dataset("daniel-dona/ree-data")
129
+ print(ds)
130
+ ```
131
+
132
+ ### Python (monthly aggregate)
133
+
134
+ ```python
135
+ import pandas as pd
136
+
137
+ m = pd.read_parquet("https://huggingface.co/datasets/daniel-dona/ree-data/resolve/main/ree_peninsula_generation_monthly.parquet")
138
+ # Track the decline of coal over time
139
+ coal_by_year = m.groupby("year")["car"].mean().reset_index()
140
+ print(coal_by_year)
141
+ ```
142
+
143
+ ### DuckDB (direct SQL on parquet)
144
+
145
+ ```sql
146
+ SELECT year, month,
147
+ AVG(eol) AS avg_wind,
148
+ AVG(solFot) AS avg_solar_pv,
149
+ AVG(car) AS avg_coal,
150
+ AVG(nuc) AS avg_nuclear
151
+ FROM read_parquet('ree_peninsula_generation_full.parquet')
152
+ GROUP BY year, month
153
+ ORDER BY year, month;
154
+ ```
155
+
156
+ ## Data Source
157
+
158
+ All data is from the [REE (Red Eléctrica de España)](https://demanda.ree.es/) open API:
159
+
160
+ ```
161
+ https://demanda.ree.es/WSvisionaMovilesPeninsulaRest/resources/demandaGeneracionPeninsula?fecha=YYYY-MM-DD
162
+ ```
163
+
164
+ Each daily JSON contains ~288 records (5-minute intervals × 24 hours) plus a few hours of overlap into adjacent days. The dataset in this repo is **fully deduplicated** on `ts`.
165
+
166
+ ## Notes
167
+
168
+ - **Coal phase-out**: Spain's last coal plants closed in 2025. The `car` column drops to near-zero from mid-2025 onward.
169
+ - **Solar growth**: `solFot` and `solTer` show the rapid expansion of solar from ~2015 onward.
170
+ - **Battery storage**: `bat` and `consBat` become non-trivial from ~2022, reflecting grid-scale battery deployment.
171
+ - **`hid` can be negative**: Negative hydro values indicate net pumping (more energy consumed by pumps than generated by turbines).
172
+ - **`sol` vs `solFot`/`solTer`**: The `sol` column is a legacy aggregate. Prefer `solFot` + `solTer` for accurate solar breakdown.
173
+ - **Updates**: This dataset is a static snapshot as of 2026-05-14. Re-run the source scripts to refresh.
174
+
175
+ ## License
176
+
177
+ This dataset is published under **CC-BY-4.0**. The underlying data is published by [REE](https://www.ree.es/en/transparency/opens-data) as open data.
178
+
179
+ ## Citation
180
+
181
+ ```bibtex
182
+ @dataset{dona2026ree,
183
+ author = {Donat, Daniel},
184
+ title = {REE Iberian Peninsula Electricity Generation (2008--2026)},
185
+ year = {2026},
186
+ url = {https://huggingface.co/datasets/daniel-dona/ree-data},
187
+ note = {Source: Red Eléctrica de España (REE) open data API}
188
+ }
189
+ ```
ree_peninsula_generation_full.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5af6c9fbbb815cadab2cce9162514c2dd62b83c9f91df66ff0ff9c393e8a578b
3
+ size 49819738
ree_peninsula_generation_monthly.csv ADDED
@@ -0,0 +1,223 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ year,month,dem,eol,nuc,gf,car,cc,hid,aut,inter,icb,sol,solFot,solTer,termRenov,cogenResto,expAnd,expMar,expPor,expFra,expTot,impFra,impPor,impMar,impAnd,impTot,conb,turb,gnhd,bat,consBat,dif,vap,date
2
+ 2007,12,30246.277777777777,697.6111111111111,7385.361111111111,133.94444444444446,7812.222222222223,9441.472222222223,1600.3333333333333,3156.5555555555557,-6.805555555555555,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2007-12
3
+ 2008,1,32744.759520609317,3487.4942876344085,7152.049059139785,92.83646953405018,6684.1332885304655,10850.357638888889,1200.3709677419354,3827.489247311828,-577.043458781362,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2008-01
4
+ 2008,2,32335.52346743295,2918.779214559387,7335.916786398468,99.10871647509579,6575.675886015326,11590.667385057472,832.1216475095786,3893.669779693487,-906.2806513409962,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2008-02
5
+ 2008,3,30043.29020311974,5541.035237347099,7198.37347099091,89.36696218157334,4918.496801705757,9125.03355403434,865.7942991807878,3860.5042082818986,-1594.668499607227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2008-03
6
+ 2008,4,29667.184027777777,4672.24375,5603.642592592592,135.78020833333332,4321.541898148148,9588.999421296296,2786.275347222222,4293.126620370371,-1770.7318287037037,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2008-04
7
+ 2008,5,28092.70273297491,2359.6696908602153,6282.966509856631,18.42753136200717,2921.7785618279568,9863.474462365592,3571.0560035842295,4070.6095430107525,-1021.7913306451613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2008-05
8
+ 2008,6,29135.971058115305,2880.3882843250753,6340.7664968742765,97.58705718916416,2846.8435980551053,10806.676661264182,3456.3853901366056,4170.753993980088,-1450.567955545265,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2008-06
9
+ 2008,7,31123.880264336916,2809.023857526882,6095.618951612903,79.49383960573476,4920.371751792115,11998.620407706094,2298.8840725806454,4054.8029793906812,-1227.6927643369177,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2008-07
10
+ 2008,8,28959.181675627242,2647.3077956989246,6751.717517921147,134.60909498207886,4122.346326164875,11164.799059139785,1665.4898073476702,3506.386760752688,-1067.6768593189963,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2008-08
11
+ 2008,9,29160.800810185185,2930.0130787037037,6220.474652777778,100.5900462962963,4812.8857638888885,10977.82337962963,1532.2350694444444,3811.3494212962964,-1299.4672453703704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2008-09
12
+ 2008,10,28104.360775089604,3200.455085125448,5791.167674731183,61.07493279569893,5510.728830645161,9857.999215949822,1164.2860663082438,3947.8968413978496,-1462.990703405018,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2008-10
13
+ 2008,11,30384.85127314815,4673.045949074074,5602.312731481482,92.471875,5698.544212962963,9670.892708333333,1474.0157407407407,4370.743634259259,-1286.7373842592592,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2008-11
14
+ 2008,12,31265.96079749104,5011.138328853047,6623.431115591397,57.231966845878134,6030.448588709677,7807.562051971327,2417.4005376344085,4478.11704749104,-1203.433355734767,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2008-12
15
+ 2009,1,31753.44612455197,4512.674507168459,7293.8286290322585,49.653225806451616,6165.840501792115,8111.069668458781,2123.3024193548385,4598.313396057348,-1151.426523297491,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2009-01
16
+ 2009,2,30693.491319444445,4623.502480158731,6420.274801587301,48.39744543650794,4503.660342261905,6764.466145833333,3974.1419890873017,4989.916542658731,-652.7330109126984,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2009-02
17
+ 2009,3,28057.86081202333,4030.570435172723,5288.883692238672,16.77781516375056,4024.1489457155676,6959.251794526694,2890.994616419919,5035.387393449978,-226.78095558546434,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2009-03
18
+ 2009,4,26192.594791666666,4040.343634259259,5630.997569444445,10.312962962962963,2518.590162037037,7737.056712962963,2230.130787037037,4715.8126157407405,-722.2865740740741,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2009-04
19
+ 2009,5,26103.896505376346,3530.020945340502,4940.762320788531,34.08702956989247,3031.717741935484,7608.081653225807,2550.1487455197134,5008.05454749104,-596.9043458781362,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2009-05
20
+ 2009,6,28304.520717592593,3026.5847222222224,4864.192476851852,8.125578703703704,3440.5667824074076,10778.749537037036,2197.891550925926,5021.825231481482,-1069.4986111111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2009-06
21
+ 2009,7,30339.695686362615,3164.9283307121996,5376.955403280162,105.89586609750617,4341.468546394069,11623.067512918446,1770.957312963379,5203.307121995057,-1268.6206470456077,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2009-07
22
+ 2009,8,28711.362368152433,2758.2081206759667,7121.863332199161,4.637745264829307,2453.973460360667,11266.822161733016,1437.0406033798345,4699.392990813201,-1048.1171600317568,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2009-08
23
+ 2009,9,28789.764513108614,3288.505383895131,6138.2567883895135,0.0,3762.8389513108614,10512.429307116105,950.5318352059925,5051.724602059925,-940.5406132958801,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2009-09
24
+ 2009,10,27385.090785601085,3945.0946343672176,5335.006791940231,16.33869141951551,4148.895177722436,8917.924043468418,1274.5949739642292,4911.796807788091,-1239.4035544487208,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2009-10
25
+ 2009,11,28470.159948741846,6482.546714818267,5498.114864864865,21.393289841565704,2815.2919384902143,7888.63863000932,1901.3602050326188,5008.093080149115,-1203.121155638397,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2009-11
26
+ 2009,12,30124.943996415772,6283.082325268817,5284.666666666667,29.116263440860216,2515.6223118279568,8438.179099462366,3180.2769937275984,4883.908378136201,-552.3118279569892,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2009-12
27
+ 2010,1,31662.118727598565,5613.455533154121,5978.136088709677,49.92215501792115,2304.2327508960575,7289.856966845879,5465.077844982079,5201.158602150537,-360.508064516129,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2010-01
28
+ 2010,2,32541.11755952381,6771.607638888889,6864.270461309524,41.833705357142854,2058.3900049603176,7333.7348710317465,4783.373387896825,5274.849826388889,-695.1315724206349,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2010-02
29
+ 2010,3,30556.913736942603,6073.587779400202,6547.035718297203,27.69437268336516,1159.7704144670336,5543.392227339099,6352.532517129058,5448.2208244411995,-719.8961024373807,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2010-03
30
+ 2010,4,27614.391898148147,3764.075115740741,6780.381944444444,0.0,895.2476851851852,6185.284606481481,5307.644560185186,5586.001851851852,-993.8125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2010-04
31
+ 2010,5,27481.85965501792,4859.332997311828,5893.78416218638,0.0,1117.732638888889,6442.482750896057,4093.324708781362,5741.077172939068,-716.1627464157706,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2010-05
32
+ 2010,6,28389.05625,3573.879513888889,6491.317476851852,0.0,1873.2049768518518,7817.784722222223,3877.12349537037,5808.455555555555,-1123.7271990740742,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2010-06
33
+ 2010,7,31317.079525089604,3692.481966845878,7253.114695340501,28.839381720430108,3309.5387544802866,9271.223566308243,3216.8679435483873,5793.139784946236,-1324.4498207885304,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2010-07
34
+ 2010,8,28917.879592293906,3799.679659498208,7286.575156810036,15.979614695340501,3822.5756048387098,7830.258400537635,2151.8079077060934,4884.928091397849,-973.1522177419355,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2010-08
35
+ 2010,9,28763.962731481482,3158.5178240740743,7046.000810185185,3.3113425925925926,4149.858912037037,8837.883564814814,1589.8511574074073,5138.199768518519,-1303.0672453703703,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2010-09
36
+ 2010,10,27463.240927419356,5158.895161290323,7279.3178763440865,0.0,2709.141129032258,7255.8706317204305,1592.327620967742,5057.654681899641,-1721.6109991039427,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2010-10
37
+ 2010,11,30611.649421296297,5956.589814814814,7062.619791666667,0.05358796296296296,2295.1833333333334,7935.396875,2654.1796296296297,5356.277546296296,-773.8344907407408,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2010-11
38
+ 2010,12,31481.472782258064,6264.3250448028675,6459.284946236559,0.0,2784.2913306451615,6726.831093189964,3993.5843413978496,5381.541442652329,-288.4622535842294,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2010-12
39
+ 2011,1,31833.545026881722,5452.044242831541,6316.242159498208,0.0,2543.2799059139784,6977.526769713261,5734.084341397849,5471.834117383512,-763.1844758064516,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2011-01
40
+ 2011,2,31693.856274801587,5957.462673611111,6352.064732142857,0.053943452380952384,3573.8297371031745,7015.713913690476,3582.2100694444443,5761.273065476191,-503.7993551587302,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2011-02
41
+ 2011,3,30651.54822790489,6382.353746074473,5807.34578286227,0.0,4041.806191117093,5281.183378196501,4074.6572454015254,6026.71399730821,-1049.2073799910274,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2011-03
42
+ 2011,4,26782.318287037036,4702.14375,6146.3486111111115,0.0,3422.790046296296,3851.659837962963,3867.8796296296296,6235.404050925926,-1512.0599537037037,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2011-04
43
+ 2011,5,27470.566308243728,4166.381720430108,4872.834565412187,0.0,3859.158266129032,5700.518257168459,3030.4592293906812,6086.031137992832,-326.9975358422939,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2011-05
44
+ 2011,6,29016.22349537037,3977.3752314814815,6520.804398148148,0.0,3623.8550925925924,6923.903125,2224.2734953703703,6216.545833333334,-575.0775462962963,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2011-06
45
+ 2011,7,29554.495855734767,4294.374775985663,6483.871639784947,0.14952956989247312,5441.6606182795695,6259.976142473119,1584.964829749104,6044.986783154121,-691.5861335125448,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2011-07
46
+ 2011,8,29006.424843189965,3615.0458109318997,7097.680667562724,0.0,5294.652105734767,6454.966509856631,1503.722670250896,5232.376232078853,-288.17697132616485,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2011-08
47
+ 2011,9,29168.76099537037,3187.298263888889,6939.3275462962965,0.0,6291.977777777778,6437.157407407408,1321.8483796296296,5717.607175925926,-784.5805555555555,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2011-09
48
+ 2011,10,27214.70351702509,4162.501344086021,6081.947020609319,0.0,5639.3604390681,5098.875224014337,1330.721214157706,5346.919914874552,-536.0787410394265,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2011-10
49
+ 2011,11,28483.983912037038,5203.292824074074,6313.794212962963,0.0,5257.318171296296,4772.247569444445,2210.152777777778,5416.621064814814,-822.8377314814815,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2011-11
50
+ 2011,12,29148.45049283154,6030.592405913979,6497.147737455197,0.0,4922.7827060931895,4635.738463261649,2117.309027777778,5500.577508960573,-646.282482078853,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2011-12
51
+ 2012,1,31007.49327956989,4841.626008064516,6938.364583333333,0.0,6723.765681003584,5863.747199820788,1537.548611111111,5694.486895161291,-737.4419802867384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2012-01
52
+ 2012,2,32743.080459770114,7016.952346743295,7413.85153256705,0.0,7433.993893678161,5700.333093869732,981.1186542145593,6176.1282327586205,-2003.688577586207,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2012-02
53
+ 2012,3,28738.450314042173,5101.133019291162,7385.768506056527,0.0,5814.217362045761,4282.720278151637,1093.9604082548228,6255.168573351279,-1189.399394347241,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2012-03
54
+ 2012,4,27137.448726851853,7439.196064814815,7223.7924768518515,0.0,3446.2849537037036,3118.5113425925924,1338.1747685185185,6296.335416666667,-1697.3318287037036,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2012-04
55
+ 2012,5,27095.810035842293,5044.714941756272,6015.764112903225,0.0,5084.803987455197,3192.80667562724,2269.146505376344,6815.966845878136,-1275.6478494623657,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2012-05
56
+ 2012,6,28834.648842592593,4796.241435185185,4878.271875,0.0,6978.090625,4344.773726851852,2078.854050925926,6760.153935185185,-883.7115740740741,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2012-06
57
+ 2012,7,29145.412634408603,4021.87936827957,6872.432795698925,0.0,6245.71875,4526.33501344086,1591.951388888889,6807.8038754480285,-857.2261424731183,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2012-07
58
+ 2012,8,29013.76019265233,4205.554323476703,7352.419690860215,0.0,6288.8125,4833.914314516129,1261.410394265233,5953.895497311828,-917.7222222222222,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2012-08
59
+ 2012,9,27664.416666666668,5489.122685185185,7379.311342592592,0.0,5183.720486111111,4104.798842592592,919.3755787037037,6107.173958333334,-1563.6315972222221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2012-09
60
+ 2012,10,26614.669578853045,4224.412634408603,7251.832437275985,0.0,5364.635080645161,4422.628920250896,1388.7130376344087,5990.128248207885,-2057.6784274193546,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2012-10
61
+ 2012,11,28081.56934475573,6379.8787913868955,5607.906575596203,0.0,5292.757930076406,4235.160569576291,1969.2398703403567,5749.583699930539,-1202.7483213706876,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2012-11
62
+ 2012,12,28578.18514784946,7377.731406810036,5834.816084229391,0.0,4780.996975806452,3876.0996863799282,2372.6339605734765,6026.5607078853045,-1586.8566308243728,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2012-12
63
+ 2013,1,30183.08154121864,8518.71729390681,6150.2413754480285,0.0,3903.1099910394264,3534.8814964157705,2625.8781362007167,6243.279009856631,-652.4949596774194,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2013-01
64
+ 2013,2,30585.85974702381,8022.453869047619,6565.934275793651,0.0,3629.4283234126983,2943.9401041666665,3857.4739583333335,6760.610987103175,-1101.8340773809523,-1.2992311507936507,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2013-02
65
+ 2013,3,28533.17866756393,7823.123822341858,6992.643113503814,0.0,1721.159376401974,2037.6765365634815,4170.552377747869,6552.836585912965,-584.1850605652759,-111.83983849259758,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2013-03
66
+ 2013,4,26965.796759259258,6169.876504629629,6171.693171296296,0.0,1292.7045138888889,1581.2019675925926,5491.048726851852,7037.16712962963,-576.4872685185185,-120.91041666666666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2013-04
67
+ 2013,5,26256.91857078853,5319.858086917563,5348.8530465949825,0.031586021505376344,2588.006832437276,2218.9351478494623,3705.4152105734765,7426.380600358423,-194.05577956989248,-110.86290322580645,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2013-05
68
+ 2013,6,26780.991782407407,5321.070486111111,6016.078819444445,0.0,3486.542824074074,1928.3265046296297,3143.879398148148,7574.587847222222,-510.5519675925926,-154.81550925925927,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2013-06
69
+ 2013,7,29116.621191756272,3832.640568996416,6911.7622087813625,0.0,7071.393033154121,3016.4473566308243,2643.65479390681,6714.627016129032,-1433.682123655914,-193.53349014336916,567.80958781362,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2013-07
70
+ 2013,8,27652.502016129034,4547.712141577061,6769.691756272401,0.0,5923.4500448028675,3215.4084901433694,2118.8999775985662,3988.4202508960575,-698.3188844086021,-209.3176523297491,2055.7637768817203,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2013-08
71
+ 2013,9,27366.778703703705,4451.080208333334,6603.076041666666,0.0,6359.837037037037,3138.495138888889,1981.2805555555556,4565.0512731481485,-1145.835185185185,-156.28275462962964,1683.799537037037,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2013-09
72
+ 2013,10,26673.53931451613,5330.696012544803,5868.326724910395,0.0,5468.2550403225805,3451.0425627240143,1919.456317204301,4583.57414874552,-916.8242607526881,-144.36379928315412,1222.0973342293908,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2013-10
73
+ 2013,11,28373.77314814815,8977.824189814815,5646.13125,0.0,3527.0082175925927,2859.2346064814815,2978.090625,4892.395138888889,-1247.2199074074074,-117.93912037037038,969.5413194444444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2013-11
74
+ 2013,12,29181.903449820788,6695.048947132616,5341.912970430108,0.0,6321.78998655914,3764.8775761648744,2207.6589381720432,4885.862343189964,-581.706541218638,-116.55253136200717,781.9844310035842,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2013-12
75
+ 2014,1,29584.726254480287,8905.530801971327,6074.388104838709,0.0,2892.3890008960575,2113.129816308244,3984.319892473118,5240.864023297491,28.775313620071685,-130.8127240143369,586.1062948028674,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2014-01
76
+ 2014,2,30182.43328373016,8889.578745039682,7003.317956349207,0.0,1151.4342757936508,1919.6070188492063,6932.953373015873,4506.869667658731,-739.4141865079365,-127.51835317460318,753.406746031746,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2014-02
77
+ 2014,3,27978.812696276356,6901.601951547779,7091.501906684612,0.0,1582.3474652310454,1757.1917900403769,5665.365859129654,4073.199865410498,-314.0075145805294,-117.09185733512786,1451.7119784656797,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2014-03
78
+ 2014,4,25938.63263888889,5573.120717592593,7008.386342592593,0.0,1739.9211805555556,1740.811574074074,5447.560532407408,3935.0900462962964,-912.8425925925926,-110.03506944444445,1625.2841435185185,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2014-04
79
+ 2014,5,25995.44242831541,5594.657482078853,5829.538194444444,0.0,4316.436155913979,1929.11917562724,2584.3577508960575,4168.285282258064,-355.31675627240145,-113.17618727598567,2147.9268593189963,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2014-05
80
+ 2014,6,27099.605671296296,4562.684837962963,4769.662384259259,0.0,7016.35462962963,2483.94375,2373.8810185185184,4414.668518518519,-439.79525462962965,-171.2875,2123.1262731481484,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2014-06
81
+ 2014,7,28375.774193548386,4914.267025089605,5715.7280465949825,0.0,7296.538418458781,2512.0625,2357.041554659498,4223.938284050179,-695.239023297491,-203.65938620071685,2253.1779793906812,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2014-07
82
+ 2014,8,27213.173387096773,3882.843301971326,5666.719198028673,0.0,6847.959229390681,3009.97020609319,2569.094310035842,3517.313060035842,-336.78472222222223,-219.49719982078852,2274.7502240143367,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2014-08
83
+ 2014,9,28219.564467592594,2972.4079861111113,6682.62037037037,0.0,7960.093287037037,3732.298842592593,2325.885300925926,3788.375578703704,-483.4003472222222,-201.63680555555555,1440.6003472222221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2014-09
84
+ 2014,10,26560.52329749104,4536.951948924731,6888.37208781362,0.0,5945.999663978495,2909.6999327956987,2013.566196236559,3623.7049731182797,-421.28326612903226,-133.74260752688173,1194.1309363799282,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2014-10
85
+ 2014,11,27553.735185185185,7116.552546296296,6045.805439814815,0.0,4430.177546296296,2712.3314814814817,3059.4366898148146,3440.791435185185,254.20532407407407,-108.74872685185186,600.8557870370371,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2014-11
86
+ 2014,12,28679.423275089604,6487.029233870968,6292.607190860215,0.0,5497.969086021505,2723.630376344086,4106.7762096774195,3432.7130376344085,-501.1653225806452,-116.21236559139786,750.0118727598566,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2014-12
87
+ 2015,1,30524.694444444445,6663.589493727599,7024.788642473119,0.0,6637.223678315412,3009.763216845878,3124.4659498207884,3679.9827508960575,-367.33310931899643,-146.8942652329749,896.5641801075269,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2015-01
88
+ 2015,2,31329.405381944445,8975.77802579365,6999.256696428572,0.0,4418.70808531746,2562.9294394841268,4790.415054563492,3610.7145337301586,-848.062748015873,-164.21354166666666,980.4807787698413,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2015-02
89
+ 2015,3,28479.90500224316,6597.384477344101,6981.512786002691,341.20794078061914,3532.2609914759983,2252.4282189322566,4820.3946837146705,3173.442799461642,-547.3407357559444,-133.99259757738898,1459.3078734858682,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2015-03
90
+ 2015,4,26166.38252314815,5482.788888888889,6505.5313657407405,340.89421296296297,4158.111226851852,2385.376967592593,3348.72025462963,2981.5011574074074,-424.0989583333333,-119.62534722222222,1504.746412037037,0.1076388888888889,1.8276620370370371,1.0942129629629629,7.618171296296296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2015-04
91
+ 2015,5,26599.801411290322,6457.278673835125,4793.459677419355,345.96673387096774,3847.4460125448027,2201.8484543010754,3629.6643145161293,3111.0094086021504,227.47950268817203,-87.02340949820788,2069.7536962365593,1139.3562948028673,940.5471550179211,505.65994623655916,2601.1387768817203,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2015-05
92
+ 2015,6,28241.899652777778,4011.1003472222224,5231.704629629629,5.285648148148148,7463.0200231481485,2686.642013888889,3265.743287037037,3571.2356481481484,-16.087268518518517,-168.96331018518518,2189.078125,1163.0408564814816,1025.525,536.4600694444445,3030.607986111111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2015-06
93
+ 2015,7,31544.992943548386,4144.250336021505,6459.3422939068105,0.0,8193.604502688173,4675.839829749104,2619.5265456989246,3603.5017921146955,-270.54469086021504,-240.6600582437276,2346.8542786738353,1148.03707437276,1203.8417338709678,577.979726702509,3018.830085125448,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2015-07
94
+ 2015,8,28015.353718637994,4362.902777777777,6682.095318100359,0.0,7045.8074596774195,3229.5938620071684,1997.5182571684588,3430.580533154122,-350.0325940860215,-226.40400985663084,1841.7263664874552,1014.657482078853,826.5731406810036,586.8780241935484,2841.0343862007167,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2015-08
95
+ 2015,9,27131.798148148147,4170.849421296296,6773.756018518518,0.0,6429.818981481481,2830.358449074074,2062.7121527777776,3657.5221064814814,-249.06099537037036,-163.8400462962963,1617.0366898148147,935.9584490740741,680.7262731481482,579.6587962962963,3072.4949074074075,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2015-09
96
+ 2015,10,26588.03259408602,5244.665434587813,5525.424731182796,0.0,5837.985327060932,2904.1621863799282,2048.473566308244,3646.182123655914,572.4881272401434,-131.47748655913978,936.5180331541219,683.919914874552,252.0962141577061,580.2803539426524,3064.3625672043013,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2015-10
97
+ 2015,11,27682.79965277778,5148.057291666667,5514.340393518519,0.0,6411.305439814815,3006.490277777778,2415.444675925926,3658.3310185185187,609.9325231481481,-98.05590277777777,1013.3513888888889,692.7190972222222,320.62939814814814,586.5358796296297,3070.51875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2015-11
98
+ 2015,12,28065.967741935485,4740.930555555556,6515.978158602151,0.0,6270.764896953405,3617.7579525089604,1680.5814292114696,3561.7214381720432,1201.8875448028673,-123.75369623655914,595.144041218638,483.40333781362006,111.22916666666667,532.4803987455197,3028.117607526882,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2015-12
99
+ 2016,1,28993.259968637994,7594.481070788531,6171.7333109319,0.0,3533.091285842294,2597.6441532258063,4033.6833557347672,3528.9010976702507,1124.1163754480287,-118.03584229390681,524.3291890681004,443.41946684587816,80.39471326164875,509.8935931899642,3018.2246863799282,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2016-01
100
+ 2016,2,30028.400502873563,8742.43283045977,5682.389846743295,0.0,2622.5994971264367,1938.52502394636,5404.908524904215,3572.865780651341,1362.7491618773947,-129.040469348659,828.568127394636,639.351412835249,188.7106082375479,439.5176005747126,3133.2422174329504,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2016-02
101
+ 2016,3,28912.586698070885,7317.052153432032,6959.472521310005,0.0,2297.6382907133243,1838.0158142664873,5518.399282189323,3501.4580529385375,221.23082099596232,-147.80316285329744,1402.7337371018393,879.65489008524,523.804620906236,348.74394347240917,3152.265365634814,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2016-03
102
+ 2016,4,27718.658912037037,6206.240162037037,6995.761574074074,0.0,1271.1758101851851,1668.0611111111111,6972.367361111111,3384.7546296296296,-159.69699074074074,-118.9576388888889,1495.6097222222222,924.684837962963,570.4319444444444,300.7741898148148,3082.7770833333334,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2016-04
103
+ 2016,5,26458.460461469534,5285.659050179212,5216.2666890681,0.0,1413.3854166666667,2041.602038530466,6480.400985663083,3476.9508288530465,1009.933579749104,-139.37421594982078,1670.5296818996417,1002.0994623655914,667.9221550179211,384.28685035842295,3092.198700716846,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2016-05
104
+ 2016,6,28064.036689814813,4512.706597222223,6693.987962962963,0.0,2861.4166666666665,2659.6373842592593,3910.9538194444444,3684.5604166666667,1486.1369212962964,-170.85104166666667,2309.520601851852,1174.4862268518518,1134.9659722222223,409.3800925925926,3386.960300925926,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2016-06
105
+ 2016,7,29925.799283154123,4683.274305555556,6968.503472222223,0.0,4935.711469534051,3227.9699820788533,2940.8904569892475,3899.5884856630823,1218.3370295698924,-192.37376792114696,2240.0349462365593,1114.2981630824372,1125.245855734767,435.23566308243727,3463.9118503584227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2016-07
106
+ 2016,8,28864.482526881722,4881.8692876344085,6936.109431003584,0.0,4601.201388888889,2739.7691532258063,2643.7997311827958,3714.165994623656,1375.9003136200718,-202.57302867383513,2158.5745967741937,1069.618391577061,1088.4474686379929,449.70586917562724,3275.9818548387098,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2016-08
107
+ 2016,9,28970.56875,3718.2318287037037,6967.600925925926,0.0,6019.289467592593,3001.144675925926,2249.9461805555557,3820.3113425925926,1537.9798611111112,-149.70636574074075,1781.5429398148149,957.7081018518519,823.3489583333334,438.50324074074075,3402.3649305555555,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2016-09
108
+ 2016,10,26717.57056451613,3205.9381720430106,6846.306115591397,0.0,5765.079525089605,4451.834565412187,2160.7877464157705,3921.1550179211467,-597.7391353046595,-120.43301971326164,1079.6938844086021,711.1281362007169,368.06227598566306,423.0394265232975,3499.9656137992833,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2016-10
109
+ 2016,11,28674.134143518517,5364.975694444444,5235.339236111111,0.0,6229.9788194444445,4800.377314814815,1936.2476851851852,3969.3181712962964,477.13194444444446,-80.57951388888888,728.1355324074074,538.5564814814815,190.76122685185186,429.60578703703703,3547.7189814814815,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2016-11
110
+ 2016,12,28737.51590501792,3630.2217741935483,5825.4741263440865,0.0,6760.155241935484,4481.8042114695345,2383.9983198924733,3879.5501792114696,1240.9691980286739,-112.7200940860215,632.2763216845879,474.5173611111111,157.29043458781362,420.519041218638,3470.875560035842,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2016-12
111
+ 2017,1,31031.066532258064,6425.1652105734765,7084.653225806452,0.0,6938.8217965949825,3986.5851254480285,2583.394041218638,4055.2439516129034,-729.8060035842294,-128.1141353046595,803.2958109318996,602.5646281362007,200.2076612903226,447.14012096774195,3616.674283154122,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2017-01
112
+ 2017,2,29637.78162202381,7230.434151785715,7071.657490079365,0.0,4941.870411706349,2292.7991071428573,2596.0613839285716,4059.32279265873,787.7669890873016,-94.50855654761905,744.5848214285714,618.9935515873016,125.09486607142857,440.96999007936506,3622.4945436507937,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2017-02
113
+ 2017,3,28305.633467922835,6328.782525796321,7069.650403768506,0.0,2376.1993046209063,1969.4478465679676,3462.7018842530283,2898.7828622700763,1934.8734858681023,-103.76749663526245,1315.4276581426648,897.9616419919246,416.9722969941678,377.7055854643338,3570.603185284881,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2017-03
114
+ 2017,4,26159.55451388889,5733.118055555556,6835.810185185185,0.0,2601.046875,1757.7034722222222,2353.0334490740743,1.43125,1426.2905092592594,-77.83020833333333,1807.9905092592592,1093.9645833333334,713.515162037037,330.2453703703704,3388.2877314814814,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2017-04
115
+ 2017,5,27104.867943548386,4626.019265232975,5562.347222222223,0.0,4742.5893817204305,2186.468189964158,2422.4698700716845,6.75548835125448,1920.7941308243728,-98.84274193548387,1920.9245071684588,1103.2186379928316,817.2085573476703,409.11290322580646,3408.7532482078855,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2017-05
116
+ 2017,6,30137.83171296296,4364.927777777778,5625.854398148148,0.0,5987.08900462963,4462.275462962963,2099.679513888889,100.95127314814815,1548.401388888889,-155.83900462962964,2170.3743055555556,1112.8150462962963,1057.0497685185185,428.78113425925926,3601.942476851852,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2017-06
117
+ 2017,7,30171.71012544803,4448.785842293907,5900.665994623656,0.0,5475.005264336917,5072.158602150537,1498.735103046595,0.0,1690.2358870967741,-205.514896953405,2227.077172939068,1132.2860663082438,1094.3585349462367,459.03819444444446,3601.4034498207884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2017-07
118
+ 2017,8,29346.40692204301,4386.2036290322585,6839.128472222223,0.0,4047.540098566308,4711.6059587813625,1341.3573028673836,3.0274417562724016,2433.7660170250897,-221.00358422939067,1950.859094982079,1016.5670922939069,933.7954749103943,434.214605734767,3419.202172939068,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2017-08
119
+ 2017,9,28122.527546296296,3880.883912037037,6582.840046296296,0.0,3978.0435185185183,4503.487731481481,1594.775462962963,592.8637731481482,1910.5564814814816,-158.61481481481482,1880.8802083333333,1023.8991898148148,856.4928240740741,439.3400462962963,3506.0216435185184,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2017-09
120
+ 2017,10,27183.053651433693,4172.080085125448,5821.070564516129,0.0,5298.314068100359,5233.188620071684,1043.4610215053763,3988.613799283154,359.1965725806452,-123.51960125448029,1371.1050627240143,846.4733422939069,524.1281362007169,425.3529345878136,3578.3916890681003,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2017-10
121
+ 2017,11,29090.677314814813,5387.362615740741,5036.206481481481,0.0,6550.659953703704,6371.281944444445,1212.7267361111112,4137.652083333333,-505.6489583333333,-95.81539351851852,982.5917824074074,689.9996527777778,292.1570601851852,430.0480324074074,3717.892476851852,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2017-11
122
+ 2017,12,29934.426747311827,7708.091845878136,6769.402665770609,0.0,5621.984094982079,4142.559923835125,1439.2828181003583,4082.4153225806454,-472.9551971326165,-121.46034946236558,726.6373207885305,550.8930331541219,175.24305555555554,425.5089605734767,3687.0617159498206,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2017-12
123
+ 2018,1,30512.30656362007,7105.383064516129,6844.059139784947,0.0,4128.290658602151,3085.2068772401435,2856.415546594982,4103.128920250896,1781.5479390681003,-114.06451612903226,717.3969534050179,569.1376568100359,147.74473566308242,403.039314516129,3700.950156810036,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2018-01
124
+ 2018,2,31844.81498015873,6936.377232142857,6824.518601190476,0.0,5241.967633928572,2969.7889384920636,3531.6310763888887,4153.454241071428,1255.685267857143,-146.81361607142858,1075.1961805555557,731.5141369047619,343.16331845238096,450.63640873015873,3702.261284722222,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2018-02
125
+ 2018,3,29838.991251682368,10349.441790040377,6040.937640197398,0.0,1832.975886047555,1760.741924629879,5372.411395244504,3894.4577164647826,-384.83299685957826,-119.3305293853746,1087.4930462090624,770.8244728577838,316.17552714221625,372.57178106774336,3523.03532974428,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2018-03
126
+ 2018,4,27685.72465277778,6141.426157407407,5309.3751157407405,0.0,1950.9650462962964,1725.835648148148,6087.473958333333,3923.4719907407407,1212.8247685185186,-90.75520833333333,1420.401388888889,954.78125,465.12233796296294,329.50601851851854,3594.2893518518517,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2018-04
127
+ 2018,5,26974.820676523297,4370.5581317204305,5034.802083333333,0.0,3084.4460125448027,2702.5852374551973,4465.0050403225805,3858.7088933691757,1825.6280241935483,-118.55891577060932,1729.217741935484,1078.127688172043,650.5920698924731,393.31149193548384,3483.3879928315414,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2018-05
128
+ 2018,6,28261.20196759259,3582.4137731481483,5019.293055555556,0.0,3219.6315972222224,3080.6640046296297,4946.061689814815,4102.319444444444,2573.827199074074,-148.7420138888889,1881.374537037037,1118.2210648148148,762.636574074074,440.3298611111111,3662.506712962963,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2018-06
129
+ 2018,7,29967.902441756272,3335.023409498208,6057.17585125448,0.0,4745.011088709677,3051.97311827957,3954.1993727598565,4107.332997311828,2530.883288530466,-214.96538978494624,2396.09811827957,1235.9936155913979,1159.556899641577,444.6820116487455,3663.1667786738353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2018-07
130
+ 2018,8,29727.41778673835,4103.874439964157,6919.274305555556,0.0,4768.527329749104,3641.7964829749103,2805.8142921146955,3980.0609318996417,1660.3621191756272,-203.4290994623656,2047.0252016129032,1119.9206989247311,926.5994623655914,431.77464157706095,3548.3111559139784,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2018-08
131
+ 2018,9,28954.474074074074,3315.765740740741,6974.0881944444445,0.0,5762.732291666666,3041.025810185185,2686.305324074074,4138.775231481482,1545.8966435185184,-147.86516203703704,1632.3673611111112,979.3054398148148,652.5480324074074,446.56111111111113,3692.848263888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2018-09
132
+ 2018,10,27439.241039426524,5728.391801075269,6923.677755376344,0.0,4593.556899641577,3418.7767697132617,1876.305443548387,2204.3133960573477,-255.47838261648747,-121.82571684587813,1141.5482750896058,748.9724462365591,392.0679883512545,403.0508512544803,3727.0593637992833,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2018-10
133
+ 2018,11,29123.697453703702,6284.883796296296,5296.3443287037035,0.0,5459.943865740741,4442.821180555556,2926.931597222222,185.97650462962963,45.713541666666664,-88.16805555555555,608.754050925926,500.1685185185185,108.10636574074074,409.53599537037036,3731.099189814815,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2018-11
134
+ 2018,12,28586.636312724015,5801.492607526881,5753.284498207885,0.0,3877.2286066308243,3943.9173387096776,3272.4859991039425,271.69959677419354,1242.8117159498208,-148.63048835125448,706.9054659498208,564.4435483870968,141.97188620071685,405.60226254480284,3726.937948028674,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2018-12
135
+ 2019,1,31476.917562724015,8036.052531362007,6787.812163978495,0.0,4186.82627688172,4352.024865591397,2765.872983870968,7.366375448028674,312.81272401433694,-181.206541218638,886.9566532258065,670.8441980286739,215.5785170250896,410.97939068100357,3915.2054211469535,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2019-01
136
+ 2019,2,30086.712797619046,5422.123387896825,7086.17683531746,0.0,3387.2888144841268,3707.6292162698414,3520.3365575396824,55.58159722222222,1476.124255952381,-174.39930555555554,1321.968253968254,929.9782986111111,391.44630456349205,429.109871031746,3906.006820436508,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2019-02
137
+ 2019,3,27972.819762225212,6469.756953790938,7096.657245401525,0.0,1167.945042620009,2917.2962090623596,2671.6055406011665,183.57447285778375,1846.680910722297,-161.5752579632122,1702.3193135935396,1054.7242036787798,647.0663974876626,421.84253028263794,3833.1659937191566,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2019-03
138
+ 2019,4,27167.05625,6392.758564814815,6437.025347222222,0.0,1049.720949074074,3822.6530092592593,2533.3685185185186,12.863773148148148,1494.6324074074073,-169.57881944444443,1417.1876157407407,896.2737268518518,520.2958333333333,384.390625,3797.2800925925926,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2019-04
139
+ 2019,5,26762.61133512545,6132.325492831541,5363.040658602151,0.0,505.5044802867383,5298.916442652329,2392.3827284946237,36.38284050179212,988.3195564516129,-189.0657482078853,2207.68167562724,1220.3159722222222,986.8658154121864,381.0389784946237,3676.4742383512544,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2019-05
140
+ 2019,6,27844.36863425926,4443.45625,6478.1137731481485,0.0,617.5621527777778,7151.655208333334,2186.6253472222224,36.434375,731.5686342592593,-217.85972222222222,2363.9162037037036,1274.8337962962962,1088.7282407407408,399.4103009259259,3680.3899305555556,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2019-06
141
+ 2019,7,30617.894489247312,4307.597782258064,6904.686379928316,0.0,935.6159274193549,9403.00436827957,2016.06832437276,51.15681003584229,868.8345654121864,-266.11659946236557,2365.2246863799282,1348.8792562724013,1016.0562275985664,443.0049283154122,3634.356966845878,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2019-07
142
+ 2019,8,28715.845318100357,3604.5131048387098,6835.367271505376,0.0,505.33848566308245,9484.233646953406,1621.5535394265232,22.572916666666668,454.0847894265233,-245.53360215053763,2487.2121415770607,1480.0824372759857,1006.9397401433691,438.5769489247312,3521.7110215053763,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2019-08
143
+ 2019,9,27813.975231481483,5186.130208333333,6952.236111111111,0.0,659.9616898148148,7568.1400462962965,1634.7060185185185,96.23472222222222,119.08761574074074,-209.29803240740742,1849.377662037037,1217.5972222222222,631.2945601851852,426.1568287037037,3619.94375,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2019-09
144
+ 2019,10,27165.341621863798,4901.40042562724,6087.5356182795695,0.0,956.2035170250896,7592.430331541219,1488.447020609319,13.029905913978494,759.9367159498208,-180.73431899641577,1493.6900761648747,1084.283938172043,409.0552195340502,424.73566308243727,3636.289090501792,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2019-10
145
+ 2019,11,28923.936574074072,9959.220486111111,4808.034953703704,0.0,811.9295138888889,5409.335648148148,3497.0320601851854,24.90949074074074,-430.1571759259259,-124.45891203703704,827.5003472222222,729.9766203703704,97.01689814814814,437.32430555555555,3724.3899305555556,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2019-11
146
+ 2019,12,27886.02632168459,6917.777889784947,5863.632728494624,0.0,553.6990367383513,3752.7185259856633,5737.039426523297,0.0,582.2442876344086,-157.63575268817203,790.7008288530466,698.0021281362007,92.1964605734767,404.62152777777777,3434.8532706093188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2019-12
147
+ 2020,1,30522.315300179212,6107.562387992832,7098.445228494624,0.0,1227.078629032258,4455.280801971327,4812.8699596774195,23.055891577060933,1963.5252016129032,-179.39762544802866,974.733870967742,859.5977822580645,114.62612007168458,464.24876792114696,3593.7971550179213,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2020-01
148
+ 2020,2,28666.663433908045,5950.6141044061305,7006.860392720307,0.0,1247.976412835249,3483.4460009578543,3883.187978927203,11.866738505747126,1459.8702107279694,-162.90720785440612,1726.3146551724137,1392.8344109195402,332.91965996168585,510.36494252873564,3552.9905411877394,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2020-02
149
+ 2020,3,26707.869111709286,7332.565500224316,6948.453903095558,0.0,690.448295199641,1909.1444593988335,3758.57267833109,11.584454912516824,637.3647375504711,-148.58950201884252,1742.0578734858682,1421.4491924629879,320.1313369223867,488.33176312247645,3340.6970614625393,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2020-03
150
+ 2020,4,22583.540277777778,5017.477083333333,5682.970833333334,0.0,467.95578703703706,2444.288425925926,3400.553587962963,1.2653935185185186,305.3802083333333,-109.45266203703704,1926.3561342592593,1637.785648148148,288.47256944444445,477.71944444444443,2962.921875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2020-04
151
+ 2020,5,23492.902105734767,5172.207325268817,4140.983198924731,0.0,371.366935483871,2749.2511200716845,3595.6424731182797,6.257728494623656,896.2844982078853,-105.23174283154121,3039.658266129032,2293.217741935484,745.8279569892474,539.647961469534,3087.177755376344,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2020-05
152
+ 2020,6,25643.86215277778,4513.514814814815,5048.784837962963,0.0,550.800925925926,4958.581365740741,2952.140625,74.97476851851852,357.28171296296296,-126.68912037037038,3524.4890046296296,2534.3146990740743,989.6539351851852,540.7881944444445,3316.2556712962964,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2020-06
153
+ 2020,7,29645.914090501792,5442.9672939068105,6951.155689964157,0.0,437.5125448028674,7891.86704749104,2213.2165098566306,7.033826164874552,-619.806899641577,-222.72972670250897,3686.53270609319,2611.5253136200718,1074.5084005376343,478.1331765232975,3381.2840501792116,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2020-07
154
+ 2020,8,28020.42025089606,4633.548275089605,6943.028449820788,0.0,481.3645833333333,6843.8592069892475,2361.07414874552,0.0,-337.8070116487455,-242.13620071684588,3496.4612455197134,2491.9620295698924,1003.9926075268817,510.6505376344086,3325.405241935484,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2020-08
155
+ 2020,9,27077.989699074074,5390.4736111111115,6787.338773148148,0.0,415.72430555555553,6376.388657407408,2345.1866898148146,25.633680555555557,-885.3037037037037,-158.63229166666667,2679.820486111111,2048.9416666666666,630.3880787037037,559.3160879629629,3560.3238425925924,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2020-09
156
+ 2020,10,26432.538978494624,7466.943884408603,6087.337477598567,0.0,338.3623431899642,3822.4963037634407,2435.804211469534,3.077396953405018,124.31619623655914,-139.43693996415772,2215.7918906810037,1755.9600134408602,459.36447132616485,574.2660170250896,3499.635752688172,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2020-10
157
+ 2020,11,27448.002430555556,5703.513194444445,6458.755324074074,0.0,492.2605324074074,4543.702430555555,3382.663888888889,159.2181712962963,1492.884375,-130.98043981481482,1256.304398148148,1105.8716435185186,149.9773148148148,561.4475694444444,3680.3034722222224,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2020-11
158
+ 2020,12,28633.248095878138,9751.31899641577,7089.190860215053,0.0,321.72939068100357,3488.6065188172042,4088.36335125448,51.78461021505376,-1096.1624103942652,-181.19220430107526,1071.734094982079,969.7586245519714,101.47972670250896,586.0982302867384,3504.4611335125446,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2020-12
159
+ 2021,1,30830.11760752688,9539.202956989247,6982.510192652329,0.0,784.2642249103943,3016.069892473118,5103.318548387097,1.3147401433691757,264.9017697132617,-182.5141129032258,1238.3701836917562,1105.3822804659499,132.46695788530465,538.3043234767025,3541.8595430107525,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2021-01
160
+ 2021,2,28759.350074404763,9342.813740079366,6485.341765873016,0.0,284.351066468254,1665.580357142857,6174.598338293651,13.142485119047619,-265.0044642857143,-164.75508432539684,1598.6026785714287,1395.592509920635,202.4856150793651,553.609871031746,3080.499503968254,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2021-02
161
+ 2021,3,28062.58636159713,7481.568192014356,6499.684836249439,0.0,346.5812023328847,2266.9159937191566,4836.955585464334,27.433153880663976,229.5510318528488,-167.34073575594437,2715.298003589053,2230.781179901301,484.0143562135487,484.1674517720951,3362.253476895469,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2021-03
162
+ 2021,4,26320.910532407408,5642.2079861111115,5841.30949074074,0.0,395.86435185185184,4032.5895833333334,3648.2068287037036,132.81631944444445,331.0777777777778,-150.35543981481482,2627.295486111111,2262.6613425925925,364.2987268518518,547.325,3399.05625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2021-04
163
+ 2021,5,25948.55376344086,6181.314404121864,5903.725134408603,0.0,461.0099686379928,2742.5408826164876,2613.577172939068,25.43301971326165,337.9323476702509,-147.75806451612902,4022.6090949820787,3151.7262544802866,870.4232750896057,530.0763888888889,3299.1892921146955,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2021-05
164
+ 2021,6,27398.913541666665,4899.406597222222,5168.122337962963,0.0,623.1299768518519,4438.121643518519,2905.6402777777776,103.68518518518519,1381.0197916666666,-88.91145833333333,4130.696759259259,3222.5222222222224,907.6743055555555,501.82256944444447,3433.7996527777777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2021-06
165
+ 2021,7,29238.718974014337,5498.7622087813625,6901.370407706093,0.0,430.96987007168457,4134.52833781362,2880.676747311828,2.7317428315412187,876.2130376344086,-60.19198028673835,4620.8663754480285,3488.7355510752686,1131.9002016129032,478.2951388888889,3470.8532706093188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2021-07
166
+ 2021,8,28027.248991935485,4780.9005376344085,6948.210573476703,0.0,452.1159274193548,4547.756832437276,2526.2106854838707,18.231854838709676,866.8950492831541,-52.621751792114694,4127.503360215053,3224.5203853046596,902.642809139785,567.7944668458781,3196.753360215054,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2021-08
167
+ 2021,9,27449.002083333333,4243.953935185185,6820.793981481482,0.0,683.3398148148148,6057.081944444444,1934.0870370370371,54.97094907407408,599.1997685185186,-50.85324074074074,3239.764236111111,2629.3202546296297,609.9917824074074,556.8989583333333,3035.9391203703703,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2021-09
168
+ 2021,10,25664.54648297491,5592.757280465949,6388.946012544803,0.0,736.2147177419355,5178.504928315412,1312.0933019713261,27.499215949820787,-103.7736335125448,-50.10394265232975,2783.33792562724,2346.7674731182797,436.0836693548387,595.0785170250896,2950.8400537634407,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2021-10
169
+ 2021,11,28334.006944444445,8702.29074074074,4982.70787037037,0.0,826.3885416666667,7991.615625,1655.4168981481482,51.899421296296296,-1837.2457175925927,-38.50613425925926,2065.3185185185184,1837.5454861111111,227.28391203703703,614.4567129629629,3063.8694444444445,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2021-11
170
+ 2021,12,28069.713373655915,9067.79648297491,5288.750448028673,0.0,990.4153225806451,6129.059923835125,3088.921370967742,82.12757616487455,-1796.3063396057348,-43.23409498207885,1451.7205421146953,1317.1120071684588,134.06081989247312,602.4437724014336,3009.534610215054,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2021-12
171
+ 2022,1,28929.85103046595,7111.569668458781,6780.711021505376,0.0,980.3900089605735,7023.732190860215,2634.8767921146955,189.87925627240142,-1597.9801747311828,-41.711581541218635,2237.50582437276,2015.0596998207886,222.01993727598565,592.923835125448,3048.1646505376343,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-40.909946236559136,0.0,327.9659498207885,0.0,0.0,0.0,0.0,2022-01
172
+ 2022,2,28464.48821924603,6755.379092261905,7098.84660218254,0.0,882.6525297619048,6122.748883928572,1597.375744047619,53.60478670634921,-715.4011656746031,-41.62363591269841,2726.664558531746,2415.504464285714,311.45448908730157,567.6407490079365,3190.9260912698414,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-715.2310267857143,0.0,1073.9815228174602,0.0,0.0,0.0,0.0,2022-02
173
+ 2022,3,27334.687079407806,8469.342193808883,6446.650403768506,0.0,985.2351951547779,4441.606886496186,2279.8742709735307,73.15589950650516,-1199.3919919246298,-41.25145805293854,2034.5963436518618,1878.3481381785555,155.73384925975773,578.4153207716465,3078.2208389412294,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-562.1146253925527,0.0,1374.3880663974876,0.0,0.0,0.0,0.0,2022-03
174
+ 2022,4,25573.471064814814,7495.777777777777,6162.617939814815,0.0,992.0862268518518,3636.1819444444445,2185.8893518518516,32.65532407407407,-2215.2282407407406,-46.695717592592594,4011.091435185185,3462.952546296296,547.6170138888889,609.4525462962963,2554.795023148148,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-821.7788194444445,0.0,1362.386226851852,0.0,0.0,0.0,0.0,2022-04
175
+ 2022,5,25621.14527329749,5939.984655017921,5484.767809139785,0.0,730.9459005376344,4209.395609318996,2393.2252464157705,104.40905017921148,-1775.0905017921148,-42.856966845878134,5247.706093189964,4442.943772401433,804.3197804659499,547.5352822580645,2570.9535170250897,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-601.0641801075269,0.0,1387.272737455197,0.0,0.0,0.0,0.0,2022-05
176
+ 2022,6,27780.092824074072,4837.154861111111,6230.030324074074,0.0,1147.3037037037036,8143.189583333334,1404.1438657407407,27.201041666666665,-2035.6241898148148,-48.403819444444444,5132.66875,4404.977777777778,727.3327546296297,586.0351851851852,2259.194212962963,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-694.0804398148148,0.0,802.3304398148148,0.0,0.0,0.0,0.0,2022-06
177
+ 2022,7,29628.327396953406,5559.843525985663,6846.137096774193,0.0,1153.727038530466,10494.029345878136,1224.9024417562723,55.19780465949821,-3262.6428091397847,-90.26164874551971,5381.870743727599,4469.418682795699,912.044914874552,564.7538082437276,1692.5903897849462,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-549.6116711469534,0.0,707.7382392473119,0.0,0.0,0.0,0.0,2022-07
178
+ 2022,8,27593.655801971327,5382.284274193548,6909.842853942652,0.0,1126.9287634408602,9924.513440860215,1182.4078181003583,8.381720430107526,-3767.6741711469535,-104.55073924731182,5069.083221326165,4222.759184587813,845.8589829749104,519.4854390681004,1366.8267249103942,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-684.125,0.0,681.536850358423,0.0,0.0,0.0,0.0,2022-08
179
+ 2022,9,26464.136342592592,5652.164930555556,6758.102662037037,0.0,900.1085648148148,9831.929513888888,1440.299074074074,78.4954861111111,-4005.946759259259,-98.2923611111111,4196.9056712962965,3601.543865740741,594.8528935185185,487.3679398148148,1328.181712962963,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-690.537962962963,0.0,897.6554398148148,0.0,0.0,0.0,0.0,2022-09
180
+ 2022,10,24546.126792114694,6741.655689964157,5416.8168682795695,0.0,533.8641353046595,8747.756272401433,858.0302419354839,36.69198028673835,-2794.5939740143367,-82.36503136200717,2837.2913306451615,2616.5137768817203,218.60259856630825,503.0241935483871,1693.9136424731182,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-741.7346550179211,0.0,529.3980734767025,0.0,0.0,0.0,0.0,2022-10
181
+ 2022,11,25555.986226851852,9182.908449074073,5910.18449074074,0.0,460.3292824074074,5780.641898148148,1613.392361111111,100.29409722222222,-2287.580787037037,-77.81643518518518,2192.749421296296,2053.9743055555555,138.2386574074074,521.3358796296296,2123.9979166666667,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-810.8251157407408,0.0,1066.3439814814815,0.0,0.0,0.0,0.0,2022-11
182
+ 2022,12,25943.846438172044,7482.1606182795695,6946.525313620072,0.0,952.9967517921147,5111.785282258064,3378.9488127240143,31.124215949820787,-1516.6162634408602,-107.47334229390681,1491.516577060932,1416.717741935484,74.41991487455198,449.1584901433692,1636.696012544803,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-1105.3363575268818,0.0,2636.4481406810037,0.0,0.0,0.0,0.0,2022-12
183
+ 2023,1,28080.168234767025,9871.077172939069,6854.129032258064,0.0,415.55174731182797,2997.6600582437277,4791.183691756272,14.563620071684587,-1254.8221326164874,-167.1092069892473,2306.773409498208,2158.735887096774,147.50862455197134,403.8469982078853,1645.3788082437277,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-1271.149193548387,0.0,3882.6603942652328,0.0,0.0,0.0,0.0,2023-01
184
+ 2023,2,28780.6875,6868.286458333333,6849.403273809524,0.0,639.7418154761905,5762.527281746032,3572.1588541666665,5.377852182539683,-1391.2203621031747,-134.33048115079364,3257.753472222222,3006.7193700396824,250.5155009920635,537.3327132936508,2444.1150793650795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-627.5039682539683,0.0,2620.27876984127,0.0,0.0,0.0,0.0,2023-02
185
+ 2023,3,26092.600044863168,8799.513122476446,6867.086810228802,0.0,589.2634589502019,3552.628869448183,2395.3600269179005,143.30114401076716,-3522.065836698071,-110.90242261103634,4517.638515029161,3956.8626065500225,560.2192687303724,427.1659937191566,2146.974315836698,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-1252.3572229699416,0.0,1844.2609914759983,0.0,0.0,0.0,0.0,2023-03
186
+ 2023,4,22985.227662037036,6611.857407407408,6347.576504629629,0.0,364.7611111111111,3371.580092592593,1776.685763888889,16.255671296296295,-3285.666550925926,-136.45960648148147,5840.100231481481,5031.939583333334,807.6791666666667,389.30694444444447,1975.5975694444444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-1325.0471064814815,0.0,1389.3390046296297,0.0,0.0,0.0,0.0,2023-04
187
+ 2023,5,23440.741711469534,7108.834901433692,5029.94914874552,0.0,335.86514336917566,3842.6224238351256,1617.024417562724,92.2174059139785,-2262.8757840501794,-160.13250448028674,5691.225582437276,5026.212813620072,664.528561827957,456.54827508960574,2028.6161514336918,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-1004.0709005376344,0.0,1118.972446236559,0.0,0.0,0.0,0.0,2023-05
188
+ 2023,6,25938.829976851852,4211.533217592592,5591.286226851852,0.0,428.26979166666666,5685.867476851852,2517.715162037037,32.84884259259259,-1498.1247685185185,-172.97465277777778,5999.876620370371,5247.147685185185,752.4418981481482,458.5878472222222,2237.7872685185184,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-569.0783564814815,0.0,1441.1288194444444,0.0,0.0,0.0,0.0,2023-06
189
+ 2023,7,28552.845878136202,4930.691084229391,6894.9282034050175,0.0,389.0430107526882,5964.311827956989,1568.6924283154121,37.729166666666664,-698.3453181003584,-227.93548387096774,6994.402665770609,5964.0854614695345,1029.8040994623657,445.4317876344086,1977.4353718637992,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-659.4651657706094,0.0,937.9789426523297,0.0,0.0,0.0,0.0,2023-07
190
+ 2023,8,27173.113127240144,5498.673051075269,6742.821908602151,0.0,562.5228494623656,5943.422715053764,1099.516577060932,8.552195340501791,-1686.6241039426523,-236.53617831541217,6772.651657706093,5803.696908602151,968.4952956989247,467.83445340501794,1818.828405017921,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-864.7345430107526,0.0,762.9715501792115,0.0,0.0,0.0,0.0,2023-08
191
+ 2023,9,25460.061458333334,4834.845486111111,6342.05,0.0,574.2494212962963,5963.375694444445,1108.694560185185,24.45474537037037,-910.8748842592593,-181.94537037037037,5045.6244212962965,4483.252662037037,561.9283564814815,408.6835648148148,2035.678935185185,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-767.1741898148148,0.0,837.2672453703703,0.0,0.0,0.0,0.0,2023-09
192
+ 2023,10,24820.551859318995,7634.479502688172,5074.222782258064,0.11760752688172044,516.9808467741935,4706.724014336917,1628.323700716846,210.38306451612902,-520.8922491039426,-176.74988799283153,3618.464829749104,3312.3741039426523,305.673835125448,364.95889336917566,1833.8375896057348,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-1017.5784050179211,0.0,1373.150873655914,0.0,0.0,0.0,0.0,2023-10
193
+ 2023,11,26075.175694444446,9480.13923611111,5234.503356481481,3.4145833333333333,322.287037037037,3306.4712962962963,4280.552314814815,102.29652777777778,-1196.0449074074074,-97.27974537037036,2777.1725694444444,2619.916550925926,158.43854166666668,350.45358796296296,1427.5666666666666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-1115.655787037037,0.0,3382.3386574074075,0.0,0.0,0.0,0.0,2023-11
194
+ 2023,12,26809.747311827956,7727.294242831541,6700.502016129032,0.605510752688172,298.4068100358423,3577.5128808243726,5031.382056451613,22.01456093189964,-1053.8528225806451,-148.12275985663084,2497.4928315412185,2374.5153449820787,126.6709229390681,362.87511200716847,1543.2623207885304,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-923.7488799283154,0.0,3746.1394489247314,0.0,0.0,0.0,0.0,2023-12
195
+ 2024,1,28202.22020609319,7591.750112007168,6925.200940860215,3.013664874551971,372.11178315412184,3779.0601478494623,4894.245743727599,87.09330197132617,-673.9334677419355,-163.52889784946237,2595.4595654121863,2468.1085349462364,130.8997535842294,395.144041218638,2014.1099910394266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-991.1877240143369,0.0,3772.200716845878,0.0,0.0,0.0,0.0,2024-01
196
+ 2024,2,27228.61254789272,9656.607159961686,6473.55938697318,0.7727490421455939,308.2781369731801,2343.5294540229884,3885.152179118774,69.70581896551724,-1623.33752394636,-164.20055076628353,3769.066451149425,3518.3894875478927,250.63912835249042,376.15074233716473,1812.6827107279694,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-1245.5029932950192,0.0,3124.993893678161,0.0,0.0,0.0,0.0,2024-02
197
+ 2024,3,25919.422274562585,7927.915657245401,4723.852624495289,2.2701884253028264,293.9844100493495,2298.8169582772543,5621.071781067743,152.18158366980708,-1135.1164199192463,-147.2275684163302,4151.27108568865,3939.1731718259307,214.00448631673396,419.3204351727232,1404.5583221175416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-1464.2446164199193,0.0,4627.150403768506,0.0,0.0,0.0,0.0,2024-03
198
+ 2024,4,24729.779398148148,6267.080324074074,4897.019328703704,2.849537037037037,309.2349537037037,2135.463425925926,5159.732060185185,72.26319444444445,-1665.638888888889,-150.87939814814814,5953.169097222222,5369.074421296296,585.6164351851852,415.65,1221.872800925926,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-1035.5525462962962,0.0,3886.8263888888887,0.0,0.0,0.0,0.0,2024-04
199
+ 2024,5,24527.488687275985,5536.142809139785,4759.86704749104,1.0664202508960574,291.72759856630825,2054.0115367383514,3431.4646057347672,209.3570788530466,-1351.679435483871,-156.51825716845877,7561.639112903225,6765.4946236559135,796.9792786738351,425.2320788530466,1660.6133512544802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-1342.453405017921,0.0,2473.9441084229393,0.0,0.0,0.0,0.0,2024-05
200
+ 2024,6,25435.72465277778,5971.802893518518,6060.5886574074075,1.4516203703703703,268.15949074074075,2268.1896990740743,2899.4090277777777,196.875,-1721.0628472222222,-201.82939814814816,7150.523263888889,6460.954861111111,689.3988425925926,463.7824074074074,1873.755787037037,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-1141.0246527777779,0.0,1998.6798611111112,0.0,0.0,0.0,0.0,2024-06
201
+ 2024,7,28673.02396953405,5469.545250896057,6822.535170250896,0.490255376344086,284.95586917562724,3655.1304883512544,2581.6702508960575,329.387208781362,-1304.068100358423,-280.8225806451613,8632.564404121864,7750.766577060932,881.5374103942652,489.4202508960573,1899.8500224014338,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-910.319108422939,0.0,1728.0347222222222,0.0,0.0,0.0,0.0,2024-07
202
+ 2024,8,28042.81115591398,5012.191532258064,6886.354838709677,2.32538082437276,304.38440860215053,3917.7423835125446,2062.2150537634407,335.7730734767025,-551.2981630824373,-253.13004032258064,7994.4956317204305,7112.734318996416,882.47166218638,449.0,1885.4967517921148,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-931.944108422939,0.0,1509.422827060932,0.0,0.0,0.0,0.0,2024-08
203
+ 2024,9,25804.586689814816,6198.987615740741,6960.796064814815,0.2832175925925926,420.5395833333333,3259.154861111111,1878.6099537037037,216.44155092592592,-1586.901851851852,-224.7386574074074,6346.346180555555,5713.972453703704,630.6119212962963,430.3642361111111,1706.4211805555556,-168.35625,-352.60497685185186,-1015.4119212962963,-240.4818287037037,-1776.854976851852,780.2920138888888,172.22268518518518,174.80381944444446,183.2150462962963,1310.5335648148148,-732.3451388888889,256.82094907407406,1726.3163194444444,0.0,0.0,0.0,0.0,2024-09
204
+ 2024,10,25450.119847670252,7478.7517921146955,6213.706989247312,0.2600806451612903,415.0003360215054,3040.6741711469535,3561.3827284946237,168.20049283154123,-1211.562724014337,-194.0695564516129,3818.4255152329747,3624.7308467741937,193.47927867383513,384.9405241935484,1588.8836245519713,-0.9484767025089605,-386.8549507168459,-1473.953405017921,-458.80745967741933,-2320.5642921146955,953.8915770609319,145.278561827957,22.357862903225808,12.985439068100359,1134.513440860215,-121.51948924731182,733.3462141577061,3546.615703405018,0.34901433691756273,-0.4320116487455197,-0.07661290322580645,0.0,2024-10
205
+ 2024,11,25902.546412037038,6662.201041666666,5042.981481481482,0.0,400.42418981481484,4852.109027777778,3485.4704861111113,231.2619212962963,-555.1769675925926,-108.62986111111111,3269.4185185185183,3130.576736111111,138.3193287037037,443.61840277777776,1948.7857638888888,0.0,-357.60092592592594,-1312.4337962962964,-406.30717592592595,-2076.341898148148,1320.272685185185,195.40613425925926,31.92025462962963,24.956712962962964,1572.5557870370371,0.0,820.9296296296296,3287.5891203703704,1.4787037037037036,-1.792476851851852,-0.31157407407407406,0.0,2024-11
206
+ 2024,12,27303.978382616486,6925.873431899641,5708.752016129032,0.0,424.50369623655916,6071.212701612903,2982.4704301075267,207.51691308243727,-816.5899417562724,-104.79491487455198,3356.3338933691757,3204.7072132616486,151.2706093189964,467.7591845878136,1837.7855062724013,0.0,-98.36267921146954,-2066.3357974910396,-470.50560035842295,-2635.204077060932,1681.186267921147,49.56294802867384,125.24395161290323,36.48599910394265,1892.4791666666667,-552.020273297491,136.86503136200716,3086.4957437275984,1.065076164874552,-0.834005376344086,0.2314068100358423,0.0,2024-12
207
+ 2025,1,28975.980846774193,9979.664762544802,7022.5625,0.0,401.7840501792115,3758.69914874552,3735.142137096774,233.58086917562724,-1490.4193548387098,-114.8763440860215,3076.8990815412185,2951.6169354838707,124.76075268817205,466.661626344086,1769.4299955197132,-10.75728046594982,-180.36906362007167,-1182.0172491039427,-1250.1021505376343,-2623.2457437275984,662.5396505376344,456.68682795698925,59.219086021505376,34.65905017921147,1213.1046146953406,-986.7056451612904,137.4399641577061,3878.6251120071684,1.0202732974910393,-1.2971550179211468,-0.30443548387096775,0.0,2025-01
208
+ 2025,2,28369.106770833332,5387.923239087301,7047.776165674603,0.0,416.382564484127,3869.0243055555557,5944.260788690476,354.1483134920635,-1773.224330357143,-135.2437996031746,4822.489211309524,4572.600818452381,249.40265376984127,503.18092757936506,1921.2529761904761,-40.33618551587302,-261.75880456349205,-929.5570436507936,-1379.8914930555557,-2611.543526785714,457.41629464285717,354.06374007936506,40.84288194444444,0.0,852.3229166666666,-845.6594742063492,700.9754464285714,5965.901785714285,1.1552579365079365,-1.5221974206349207,-0.35652281746031744,0.0,2025-02
209
+ 2025,3,27546.993606998654,8820.066397487662,6563.32133243607,0.0,258.03398384925976,2653.446949304621,5105.8552041274115,282.1878645132346,-2081.2854419021983,-152.60935397039032,4205.852960969044,3960.0188425302827,245.35071781067742,397.2031179901301,1513.3667563930014,-26.194706146253925,-263.9108344549125,-701.6210183938986,-1774.0965679676985,-2765.8231269627636,175.6115971287573,483.0669582772544,35.958389412292505,0.0,694.6369448183042,-1080.7511215791835,501.6436742934051,5632.195715567519,1.0893898609241812,-1.3040601166442352,-0.21276357110812022,0.0,2025-03
210
+ 2025,4,24120.28576388889,5765.103703703704,4097.841898148148,0.0,237.0900462962963,2791.9123842592594,4883.164467592593,339.1199074074074,-1512.3559027777778,-119.71226851851851,5907.695023148148,5398.486458333334,427.29479166666664,417.55011574074075,1438.948726851852,-15.062847222222222,-332.5085648148148,-738.3234953703703,-1353.1525462962964,-2439.047453703704,281.6633101851852,620.0246527777778,30.634143518518517,0.0,932.3221064814815,-1438.024189814815,604.9534722222222,5648.044907407408,1.2822916666666666,-1.4688657407407408,-0.1909722222222222,0.0,2025-04
211
+ 2025,5,24250.57190860215,4370.560371863799,4116.336917562724,0.0,194.40849014336916,3611.986335125448,4288.603382616488,575.2343189964158,-1358.9872311827958,-148.6537858422939,7022.643481182796,6366.88664874552,656.6314964157706,442.8241487455197,1343.7491039426523,-8.645609318996415,-600.2494399641577,-678.622311827957,-857.2862903225806,-2144.803651433692,677.4342517921147,311.86256720430106,1.814964157706093,0.003360215053763441,991.1151433691756,-1428.312724014337,762.8262768817204,4817.758176523297,1.3607750896057347,-2.193100358422939,-0.837141577060932,0.0,2025-05
212
+ 2025,6,28287.811805555557,4154.580092592592,5742.740046296296,0.0,198.46423611111112,5539.717708333334,2921.049884259259,1131.6700231481482,-1403.5914351851852,-238.0974537037037,8823.81388888889,8174.166898148148,649.1313657407408,448.63796296296294,1832.4751157407406,-18.70659722222222,-559.437037037037,-1735.0292824074074,-147.79965277777777,-2460.9725694444446,970.0684027777778,85.15625,9.69675925925926,0.001388888888888889,1064.922800925926,-1171.1234953703704,610.9398148148148,3373.5568287037036,1.1385416666666666,-1.3521990740740741,-0.21435185185185185,0.0,2025-06
213
+ 2025,7,29287.13239247312,5728.348342293907,6839.80667562724,0.0,14.625560035842295,4823.238687275985,2133.104950716846,919.1243279569892,-1920.4559811827958,-254.5266577060932,9163.066308243728,8288.364135304659,874.2781137992831,484.3307571684588,1737.2989471326164,-24.529009856630825,-588.985103046595,-1862.813732078853,-338.1004704301075,-2814.4283154121863,837.9557571684588,55.00616039426523,9.563956093189963,0.0005600358422939068,902.5264336917563,-1292.9817428315412,644.3225806451613,2551.8223566308243,1.419466845878136,-1.5740367383512546,-0.15423387096774194,149.48902329749103,2025-07
214
+ 2025,8,27720.939628136202,4669.846102150537,6867.355174731183,0.0,0.0,4764.8393817204305,2005.2505600358422,739.0832213261649,-1276.5454749103942,-281.39336917562724,8371.816756272401,7720.831093189964,650.4939516129032,459.1964605734767,1685.9588933691757,-23.51736111111111,-612.4508288530466,-1736.9940636200718,-381.05768369175627,-2754.0199372759857,1419.442652329749,59.03304211469534,8.86861559139785,0.006048387096774193,1487.350358422939,-1366.8853046594982,636.542226702509,2403.1477374551973,0.944668458781362,-1.123543906810036,-0.17887544802867383,220.84923835125448,2025-08
215
+ 2025,9,26703.964699074073,5216.290740740741,6309.185532407408,0.0,9.97037037037037,4388.279629629629,1857.033449074074,493.83680555555554,-952.8439814814815,-231.40081018518518,7430.312847222222,6883.213078703704,546.7326388888889,470.59247685185187,1684.723148148148,-22.558796296296297,-485.57523148148147,-1628.270486111111,-299.9512731481482,-2436.355787037037,1396.9677083333333,87.51030092592593,12.719907407407407,0.0033564814814814816,1497.2012731481482,-1153.4563657407407,580.7648148148148,2261.102546296296,1.1956018518518519,-1.3976851851851853,-0.21203703703703702,257.93958333333336,2025-09
216
+ 2025,10,25405.26164874552,5711.461357526881,4962.544466845879,0.0,27.96426971326165,6155.767697132616,1987.161402329749,380.9174507168459,-1736.6270161290322,-160.39527329749103,5689.349238351255,5374.8523745519715,313.9874551971326,443.55409946236557,1808.0997983870968,-14.522289426523297,-536.3469982078853,-1953.0838933691757,-368.7083333333333,-2872.6615143369177,1104.2424955197132,33.856518817204304,10.88138440860215,0.0076164874551971325,1148.988015232975,-1048.9610215053763,631.7427195340501,2321.7693772401435,0.9970878136200717,-1.298163082437276,-0.33344534050179214,281.1733870967742,2025-10
217
+ 2025,11,27169.092708333334,9362.456134259259,5114.05775462963,0.0,7.418634259259259,4979.233101851852,2376.2443287037036,94.77685185185184,-1656.2103009259258,-107.12581018518519,4427.798263888889,4276.988425925926,150.33113425925927,455.58472222222224,1739.6116898148148,-16.414930555555557,-459.60439814814816,-1272.764699074074,-872.4131944444445,-2621.197222222222,818.6493055555555,128.403125,20.527546296296297,0.0002314814814814815,967.5802083333333,-1100.2296296296297,565.4783564814815,2840.338425925926,0.6494212962962963,-0.8539351851851852,-0.2150462962962963,298.3710648148148,2025-11
218
+ 2025,12,28940.927979390683,6828.476478494624,6478.595654121864,0.0,63.20967741935484,5793.323924731183,4097.910394265233,1.2443996415770608,-536.0806451612904,-162.48566308243727,3005.8103718637994,3377.59811827957,65.47681451612904,480.7212141577061,1903.2071012544802,-32.133736559139784,-511.23812724014334,-1169.6706989247311,-476.7100134408602,-2189.7525761648744,1461.4764784946237,173.96796594982078,26.281362007168457,0.0,1661.725806451613,-781.7163978494624,679.7939068100359,4170.577844982079,1.0642921146953406,-1.246975806451613,-0.19702060931899643,324.91207437275983,2025-12
219
+ 2026,1,30717.124551971327,10500.743839605735,7039.502240143369,0.0,27.299955197132615,4730.131608422939,3820.4767025089604,0.0,-1450.200716845878,-187.44534050179212,2989.984431003584,3629.2311827956987,46.550291218637994,444.9605734767025,1680.1055107526881,-51.295698924731184,-323.2123655913978,-916.9790546594982,-1348.0870295698924,-2639.57414874552,641.7020609318996,498.72670250896056,50.51758512544803,0.0011200716845878136,1190.9474686379929,-1043.3853046594982,614.0658602150538,4212.261088709677,1.27665770609319,-1.4592293906810037,-0.1808915770609319,251.02654569892474,2026-01
220
+ 2026,2,29417.781374007936,8798.493551587302,5997.7114335317465,0.0,0.0,3353.4088541666665,5951.230406746032,0.0,-1091.2393353174602,-153.51822916666666,3813.0504712301586,4670.799355158731,185.0889136904762,339.81894841269843,1043.7919146825398,-34.70585317460318,-484.6329365079365,-278.5264136904762,-1346.571304563492,-2144.436507936508,397.2466517857143,645.8154761904761,9.157614087301587,0.0,1052.219742063492,-1360.2693452380952,637.1371527777778,6623.389880952381,1.8580109126984128,-2.009548611111111,-0.16703869047619047,311.45411706349205,2026-02
221
+ 2026,3,28452.967025572005,6564.08972633468,5275.78869448183,0.0,17.75684163301929,3678.3973755047105,5361.399955136832,0.0,-1774.390421713773,-142.12337371018393,6279.329632122028,7250.038470165994,502.4144235082997,439.17216240466576,936.593203230148,-30.30462090623598,-354.82884701659935,-1014.9082548227905,-1259.673171825931,-2659.7148945715567,431.9144235082997,425.61888739345,29.481157469717363,0.001794526693584567,887.0162628981606,-1247.7600942126514,808.4845222072678,5698.636384028712,1.4724091520861373,-1.7334006280843428,-0.4506505159264244,278.07951996410947,2026-03
222
+ 2026,4,26501.444328703703,5102.6461805555555,5403.6300925925925,0.0,0.0,3223.8215277777776,2914.011689814815,0.0,-1510.2947916666667,-136.09849537037036,7539.235648148148,8848.663773148148,499.9616898148148,400.3396990740741,1211.2355324074074,-2.479050925925926,-602.370949074074,-1674.460185185185,-572.6202546296296,-2851.9304398148147,1152.3819444444443,188.88472222222222,4.477199074074074,0.0023148148148148147,1345.7461805555556,-1513.016087962963,896.571412037037,3416.1472222222224,2.6984953703703702,-3.3006944444444444,-0.7989583333333333,285.4123842592593,2026-04
223
+ 2026,5,26103.71649484536,4343.906185567011,4601.320360824742,0.0,103.91365979381443,3423.7384020618556,3225.2355670103093,0.0,-1192.5530927835052,-148.65412371134022,7604.709278350516,8816.808505154639,427.0340206185567,415.87628865979383,1457.4569587628866,0.0,-619.5984536082474,-1671.7079896907217,-281.0644329896907,-2572.37087628866,1186.8984536082473,187.8623711340206,4.337113402061855,0.0,1379.0979381443299,-1436.7876288659793,849.8987113402062,3695.2634020618557,3.9074742268041236,-4.825773195876288,-1.1394329896907216,345.92242268041235,2026-05
ree_peninsula_generation_monthly.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fed1fed8e78a87da36eea1bf3210fcef7955715a2aa735c4c74bdb7691b25c9b
3
+ size 48284