diff --git a/deps/evalhyd b/deps/evalhyd
index 54efcfeac2ccba66aa1ad98b72d92b0765f2d14b..44e1bdf16d38a4cf51de7a003864be63d91a31fb 160000
--- a/deps/evalhyd
+++ b/deps/evalhyd
@@ -1 +1 @@
-Subproject commit 54efcfeac2ccba66aa1ad98b72d92b0765f2d14b
+Subproject commit 44e1bdf16d38a4cf51de7a003864be63d91a31fb
diff --git a/src/evalhyd-python.cpp b/src/evalhyd-python.cpp
index 3ebb81ebac55c3fa07beb42f3a25110849190508..8e6cfdcb2e53cd1dc3846d3f8359fbe79d076a8b 100644
--- a/src/evalhyd-python.cpp
+++ b/src/evalhyd-python.cpp
@@ -6,12 +6,43 @@
 #define MACRO_STRINGIFY(x) STRINGIFY(x)
 
 #define FORCE_IMPORT_ARRAY
+#include <xtensor/xview.hpp>
 #include <xtensor-python/pytensor.hpp>
 
 #include "evalhyd/evald.hpp"
 #include "evalhyd/evalp.hpp"
 
 namespace py = pybind11;
+using namespace py::literals;
+
+// reshape 1D tensors to 2D tensors
+auto evald_1d(
+    const xt::xtensor<double, 1>& q_obs,
+    const xt::xtensor<double, 1>& q_prd,
+    const std::vector<std::string>& metrics,
+    const std::string& transform = "none",
+    const double exponent = 1,
+    double epsilon = -9,
+    const xt::xtensor<bool, 2>& t_msk = {},
+    const xt::xtensor<std::array<char, 32>, 1>& m_cdt = {},
+    const std::unordered_map<std::string, int>& bootstrap =
+        {{"n_samples", -9}, {"len_sample", -9}, {"summary", 0}},
+    const std::vector<std::string>& dts = {}
+)
+{
+    return evalhyd::evald(
+        xt::view(q_obs, xt::newaxis(), xt::all()),
+        xt::view(q_prd, xt::newaxis(), xt::all()),
+        metrics,
+        transform,
+        exponent,
+        epsilon,
+        t_msk,
+        m_cdt,
+        bootstrap,
+        dts
+    );
+}
 
 // Python Module and Docstrings
 PYBIND11_MODULE(evalhyd, m)
@@ -24,30 +55,30 @@ PYBIND11_MODULE(evalhyd, m)
 
     // deterministic evaluation
     m.def(
-        "evald", evalhyd::evald<1>,
+        "evald", evald_1d,
         R"pbdoc(
             Function to evaluate deterministic streamflow predictions.
 
             :Parameters:
 
                 q_obs: `numpy.ndarray`
-                    1D array of streamflow observations. Time steps with
-                    missing observations must be assigned `numpy.nan`
-                    values. Those time steps will be ignored both in
-                    the observations and in the predictions before the
-                    *metrics* are computed.
-                    shape: (time,)
+                   1D array of streamflow observations. Time steps with
+                   missing observations must be assigned `numpy.nan`
+                   values. Those time steps will be ignored both in
+                   the observations and in the predictions before the
+                   *metrics* are computed.
+                   shape: (time,)
 
                 q_prd: `numpy.ndarray`
-                    1D array of streamflow predictions. Time steps with
-                    missing predictions must be assigned `numpy.nan`
-                    values. Those time steps will be ignored both in
-                    the observations and in the predictions before the
-                    *metrics* are computed.
-                    shape: (time,)
+                   1D array of streamflow predictions. Time steps with
+                   missing predictions must be assigned `numpy.nan`
+                   values. Those time steps will be ignored both in
+                   the observations and in the predictions before the
+                   *metrics* are computed.
+                   shape: (time,)
 
                 metrics: `List[str]`
-                    The sequence of evaluation metrics to be computed.
+                   The sequence of evaluation metrics to be computed.
 
                 transform: `str`, optional
                    The transformation to apply to both streamflow observations
@@ -95,7 +126,7 @@ PYBIND11_MODULE(evalhyd, m)
                    provided, masks must feature the same number of dimensions as
                    observations and predictions, and it must broadcastable with
                    both of them.
-                   shape: (time,)
+                   shape: (subsets, time)
 
                 m_cdt: `numpy.ndarray`, optional
                    1D array of masking condition(s) to use to generate
@@ -106,46 +137,69 @@ PYBIND11_MODULE(evalhyd, m)
                    If not provided and neither is *t_msk*, no subset is
                    performed. If provided, only one condition per time series
                    of observations can be provided.
-                   shape: (1,)
+                   shape: (subsets,)
+
+                bootstrap: `dict`, optional
+                   Parameters for the bootstrapping method used to estimate the
+                   sampling uncertainty in the evaluation of the predictions.
+                   Two parameters are mandatory ('n_samples' the number of
+                   random samples, 'len_sample' the length of one sample in
+                   number of years, and 'summary' the statistics to return to
+                   characterise the sampling distribution), and one parameter
+                   is optional ('seed'). If not provided, no bootstrapping is
+                   performed. If provided, *dts* must also be provided.
+
+                dts: `List[str]`, optional
+                   Datetimes. The corresponding date and time for the temporal
+                   dimension of the streamflow observations and predictions.
+                   The date and time must be specified in a string following
+                   the ISO 8601-1:2019 standard, i.e. "YYYY-MM-DD hh:mm:ss"
+                   (e.g. the 21st of May 2007 at 4 in the afternoon is
+                   "2007-05-21 16:00:00"). If provided, it is only used if
+                   *bootstrap* is also provided.
 
             :Returns:
 
                 `List[numpy.ndarray]`
                     The sequence of evaluation metrics computed
                     in the same order as given in *metrics*.
-                    shape: [(components,)+]
+                    shape: [(1, subsets, samples), ...]
         )pbdoc",
         py::arg("q_obs"), py::arg("q_prd"), py::arg("metrics"),
-        py::arg("transform") = "none", py::arg("exponent") = 1,
+        py::arg("transform") = "none",
+        py::arg("exponent") = 1,
         py::arg("epsilon") = -9,
-        py::arg("t_msk") = xt::pytensor<bool, 1>({}),
-        py::arg("m_cdt") = xt::pytensor<std::array<char, 32>, 1>({})
+        py::arg("t_msk") = xt::pytensor<bool, 2>({0}),
+        py::arg("m_cdt") = xt::pytensor<std::array<char, 32>, 1>({}),
+        py::arg("bootstrap") =
+            py::dict("n_samples"_a=-9, "len_sample"_a=-9, "summary"_a=0),
+        py::arg("dts") = py::list()
     );
     m.def(
-        "evald", evalhyd::evald<2>,
+        "evald", evalhyd::evald,
         R"pbdoc(
             Function to evaluate deterministic streamflow predictions.
 
             :Parameters:
 
                 q_obs: `numpy.ndarray`
-                    2D array of streamflow observations. Time steps with
-                    missing observations must be assigned `numpy.nan`
-                    values. Those time steps will be ignored both in
-                    the observations and in the predictions before the
-                    *metrics* are computed.
-                    shape: (1+, time)
+                   2D array of streamflow observations. Time steps with
+                   missing observations must be assigned `numpy.nan`
+                   values. Those time steps will be ignored both in
+                   the observations and in the predictions before the
+                   *metrics* are computed.
+                   shape: (1, time)
 
                 q_prd: `numpy.ndarray`
-                    2D array of streamflow predictions. Time steps with
-                    missing predictions must be assigned `numpy.nan`
-                    values. Those time steps will be ignored both in
-                    the observations and in the predictions before the
-                    *metrics* are computed.
-                    shape: (1+, time)
+                   2D array of streamflow predictions. Time steps with
+                   missing predictions must be assigned `numpy.nan`
+                   values. Those time steps will be ignored both in
+                   the observations and in the predictions before the
+                   *metrics* are computed.
+                   shape: (series, time)
 
                 metrics: `List[str]`
-                    The sequence of evaluation metrics to be computed.
+                   The sequence of evaluation metrics to be computed.
 
                 transform: `str`, optional
                    The transformation to apply to both streamflow observations
@@ -193,10 +247,10 @@ PYBIND11_MODULE(evalhyd, m)
                    provided, masks must feature the same number of dimensions as
                    observations and predictions, and it must broadcastable with
                    both of them.
-                   shape: (1+, time)
+                   shape: (subsets, time)
 
                 m_cdt: `numpy.ndarray`, optional
-                   2D array of masking condition(s) to use to generate
+                   1D array of masking condition(s) to use to generate
                    temporal subsets. Each condition consists in a string and
                    can be specified on observed streamflow values/statistics
                    (mean, median, quantile), or on time indices. If provided
@@ -204,20 +258,43 @@ PYBIND11_MODULE(evalhyd, m)
                    If not provided and neither is *t_msk*, no subset is
                    performed. If provided, only one condition per time series
                    of observations can be provided.
-                   shape: (1+, 1)
+                   shape: (subsets,)
+
+                bootstrap: `dict`, optional
+                   Parameters for the bootstrapping method used to estimate the
+                   sampling uncertainty in the evaluation of the predictions.
+                   Two parameters are mandatory ('n_samples' the number of
+                   random samples, 'len_sample' the length of one sample in
+                   number of years, and 'summary' the statistics to return to
+                   characterise the sampling distribution), and one parameter
+                   is optional ('seed'). If not provided, no bootstrapping is
+                   performed. If provided, *dts* must also be provided.
+
+                dts: `List[str]`, optional
+                   Datetimes. The corresponding date and time for the temporal
+                   dimension of the streamflow observations and predictions.
+                   The date and time must be specified in a string following
+                   the ISO 8601-1:2019 standard, i.e. "YYYY-MM-DD hh:mm:ss"
+                   (e.g. the 21st of May 2007 at 4 in the afternoon is
+                   "2007-05-21 16:00:00"). If provided, it is only used if
+                   *bootstrap* is also provided.
 
             :Returns:
 
                 `List[numpy.ndarray]`
-                    The sequence of evaluation metrics computed
-                    in the same order as given in *metrics*.
-                    shape: [(1+, components), ...]
+                   The sequence of evaluation metrics computed
+                   in the same order as given in *metrics*.
+                   shape: [(series, subsets, samples), ...]
         )pbdoc",
         py::arg("q_obs"), py::arg("q_prd"), py::arg("metrics"),
-        py::arg("transform") = "none", py::arg("exponent") = 1,
+        py::arg("transform") = "none",
+        py::arg("exponent") = 1,
         py::arg("epsilon") = -9,
         py::arg("t_msk") = xt::pytensor<bool, 2>({0}),
-        py::arg("m_cdt") = xt::pytensor<std::array<char, 32>, 2>({0})
+        py::arg("m_cdt") = xt::pytensor<std::array<char, 32>, 1>({}),
+        py::arg("bootstrap") =
+            py::dict("n_samples"_a=-9, "len_sample"_a=-9, "summary"_a=0),
+        py::arg("dts") = py::list()
     );
 
     // probabilistic evaluation
@@ -229,63 +306,85 @@ PYBIND11_MODULE(evalhyd, m)
             :Parameters:
 
                 q_obs: `numpy.ndarray`
-                    2D array of streamflow observations. Time steps with
-                    missing observations must be assigned `numpy.nan`
-                    values. Those time steps will be ignored both in
-                    the observations and in the predictions before the
-                    *metrics* are computed.
-                    shape: (sites, time)
+                   2D array of streamflow observations. Time steps with
+                   missing observations must be assigned `numpy.nan`
+                   values. Those time steps will be ignored both in
+                   the observations and in the predictions before the
+                   *metrics* are computed.
+                   shape: (sites, time)
 
                 q_prd: `numpy.ndarray`
-                    4D array of streamflow predictions. Time steps with
-                    missing predictions must be assigned `numpy.nan`
-                    values. Those time steps will be ignored both in
-                    the observations and in the predictions before the
-                    *metrics* are computed.
-                    shape: (sites, lead times, members, time)
+                   4D array of streamflow predictions. Time steps with
+                   missing predictions must be assigned `numpy.nan`
+                   values. Those time steps will be ignored both in
+                   the observations and in the predictions before the
+                   *metrics* are computed.
+                   shape: (sites, lead times, members, time)
 
                 metrics: `List[str]`
-                    The sequence of evaluation metrics to be computed.
+                   The sequence of evaluation metrics to be computed.
 
                 q_thr: `List[float]`, optional
-                    The streamflow threshold(s) to consider for the *metrics*
-                    assessing the prediction of exceedance events. If not
-                    provided, set to default value as an empty `list`.
-                    shape: (thresholds,)
+                   The streamflow threshold(s) to consider for the *metrics*
+                   assessing the prediction of exceedance events. If not
+                   provided, set to default value as an empty `list`.
+                   shape: (thresholds,)
 
                 t_msk: `numpy.ndarray`, optional
-                    4D array of masks to generate temporal subsets of the whole
-                    streamflow time series (where True/False is used for the
-                    time steps to include/discard in a given subset). If not
-                    provided, no subset is performed and only one set of metrics
-                    is returned corresponding to the whole time series. If
-                    provided, as many sets of metrics are returned as they are
-                    masks provided.
-                    shape: (sites, lead times, subsets, time)
+                   4D array of masks to generate temporal subsets of the whole
+                   streamflow time series (where True/False is used for the
+                   time steps to include/discard in a given subset). If not
+                   provided, no subset is performed and only one set of metrics
+                   is returned corresponding to the whole time series. If
+                   provided, as many sets of metrics are returned as they are
+                   masks provided.
+                   shape: (sites, lead times, subsets, time)
 
                 m_cdt: `numpy.ndarray`, optional
-                    2D array of conditions to generate temporal subsets. Each
-                    condition consists in a string and can be specified on
-                    observed/predicted streamflow values/statistics (mean,
-                    median, quantile), or on time indices. If provided in
-                    combination with t_msk, the latter takes precedence. If not
-                    provided and neither is t_msk, no subset is performed and
-                    only one set of metrics is returned corresponding to the
-                    whole time series. If provided, as many sets of metrics are
-                    returned as they are conditions provided.
-                    shape: (sites, subsets)
+                   2D array of conditions to generate temporal subsets. Each
+                   condition consists in a string and can be specified on
+                   observed/predicted streamflow values/statistics (mean,
+                   median, quantile), or on time indices. If provided in
+                   combination with t_msk, the latter takes precedence. If not
+                   provided and neither is t_msk, no subset is performed and
+                   only one set of metrics is returned corresponding to the
+                   whole time series. If provided, as many sets of metrics are
+                   returned as they are conditions provided.
+                   shape: (sites, subsets)
+
+                bootstrap: `dict`, optional
+                   Parameters for the bootstrapping method used to estimate the
+                   sampling uncertainty in the evaluation of the predictions.
+                   Two parameters are mandatory ('n_samples' the number of
+                   random samples, 'len_sample' the length of one sample in
+                   number of years, and 'summary' the statistics to return to
+                   characterise the sampling distribution), and one parameter
+                   is optional ('seed'). If not provided, no bootstrapping is
+                   performed. If provided, *dts* must also be provided.
+
+                dts: `List[str]`, optional
+                   Datetimes. The corresponding date and time for the temporal
+                   dimension of the streamflow observations and predictions.
+                   The date and time must be specified in a string following
+                   the ISO 8601-1:2019 standard, i.e. "YYYY-MM-DD hh:mm:ss"
+                   (e.g. the 21st of May 2007 at 4 in the afternoon is
+                   "2007-05-21 16:00:00"). If provided, it is only used if
+                   *bootstrap* is also provided.
 
             :Returns:
 
                 `List[numpy.ndarray]`
-                    The sequence of evaluation metrics computed
-                    in the same order as given in *metrics*.
-                    shape: [(sites, lead times, subsets, {quantiles,} {thresholds,} {components}), ...]
+                   The sequence of evaluation metrics computed
+                   in the same order as given in *metrics*.
+                   shape: [(sites, lead times, subsets, samples, {quantiles,} {thresholds,} {components}), ...]
         )pbdoc",
         py::arg("q_obs"), py::arg("q_prd"), py::arg("metrics"),
         py::arg("q_thr") = xt::pytensor<double, 2>({0}),
         py::arg("t_msk") = xt::pytensor<bool, 4>({0}),
-        py::arg("m_cdt") = xt::pytensor<std::array<char, 32>, 2>({0})
+        py::arg("m_cdt") = xt::pytensor<std::array<char, 32>, 2>({0}),
+        py::arg("bootstrap") =
+            py::dict("n_samples"_a=-9, "len_sample"_a=-9, "summary"_a=0),
+        py::arg("dts") = py::list()
     );
 
 #ifdef VERSION_INFO
diff --git a/tests/data/q_obs_1yr.csv b/tests/data/q_obs_1yr.csv
new file mode 100644
index 0000000000000000000000000000000000000000..97a759eae9f6c32e6d2acf3dcef0828550e21dfe
--- /dev/null
+++ b/tests/data/q_obs_1yr.csv
@@ -0,0 +1,2 @@
+1963-10-01 00:00:00,1963-10-02 00:00:00,1963-10-03 00:00:00,1963-10-04 00:00:00,1963-10-05 00:00:00,1963-10-06 00:00:00,1963-10-07 00:00:00,1963-10-08 00:00:00,1963-10-09 00:00:00,1963-10-10 00:00:00,1963-10-11 00:00:00,1963-10-12 00:00:00,1963-10-13 00:00:00,1963-10-14 00:00:00,1963-10-15 00:00:00,1963-10-16 00:00:00,1963-10-17 00:00:00,1963-10-18 00:00:00,1963-10-19 00:00:00,1963-10-20 00:00:00,1963-10-21 00:00:00,1963-10-22 00:00:00,1963-10-23 00:00:00,1963-10-24 00:00:00,1963-10-25 00:00:00,1963-10-26 00:00:00,1963-10-27 00:00:00,1963-10-28 00:00:00,1963-10-29 00:00:00,1963-10-30 00:00:00,1963-10-31 00:00:00,1963-11-01 00:00:00,1963-11-02 00:00:00,1963-11-03 00:00:00,1963-11-04 00:00:00,1963-11-05 00:00:00,1963-11-06 00:00:00,1963-11-07 00:00:00,1963-11-08 00:00:00,1963-11-09 00:00:00,1963-11-10 00:00:00,1963-11-11 00:00:00,1963-11-12 00:00:00,1963-11-13 00:00:00,1963-11-14 00:00:00,1963-11-15 00:00:00,1963-11-16 00:00:00,1963-11-17 00:00:00,1963-11-18 00:00:00,1963-11-19 00:00:00,1963-11-20 00:00:00,1963-11-21 00:00:00,1963-11-22 00:00:00,1963-11-23 00:00:00,1963-11-24 00:00:00,1963-11-25 00:00:00,1963-11-26 00:00:00,1963-11-27 00:00:00,1963-11-28 00:00:00,1963-11-29 00:00:00,1963-11-30 00:00:00,1963-12-01 00:00:00,1963-12-02 00:00:00,1963-12-03 00:00:00,1963-12-04 00:00:00,1963-12-05 00:00:00,1963-12-06 00:00:00,1963-12-07 00:00:00,1963-12-08 00:00:00,1963-12-09 00:00:00,1963-12-10 00:00:00,1963-12-11 00:00:00,1963-12-12 00:00:00,1963-12-13 00:00:00,1963-12-14 00:00:00,1963-12-15 00:00:00,1963-12-16 00:00:00,1963-12-17 00:00:00,1963-12-18 00:00:00,1963-12-19 00:00:00,1963-12-20 00:00:00,1963-12-21 00:00:00,1963-12-22 00:00:00,1963-12-23 00:00:00,1963-12-24 00:00:00,1963-12-25 00:00:00,1963-12-26 00:00:00,1963-12-27 00:00:00,1963-12-28 00:00:00,1963-12-29 00:00:00,1963-12-30 00:00:00,1963-12-31 00:00:00,1964-01-01 00:00:00,1964-01-02 00:00:00,1964-01-03 00:00:00,1964-01-04 00:00:00,1964-01-05 00:00:00,1964-01-06 00:00:00,1964-01-07 00:00:00,1964-01-08 00:00:00,1964-01-09 00:00:00,1964-01-10 00:00:00,1964-01-11 00:00:00,1964-01-12 00:00:00,1964-01-13 00:00:00,1964-01-14 00:00:00,1964-01-15 00:00:00,1964-01-16 00:00:00,1964-01-17 00:00:00,1964-01-18 00:00:00,1964-01-19 00:00:00,1964-01-20 00:00:00,1964-01-21 00:00:00,1964-01-22 00:00:00,1964-01-23 00:00:00,1964-01-24 00:00:00,1964-01-25 00:00:00,1964-01-26 00:00:00,1964-01-27 00:00:00,1964-01-28 00:00:00,1964-01-29 00:00:00,1964-01-30 00:00:00,1964-01-31 00:00:00,1964-02-01 00:00:00,1964-02-02 00:00:00,1964-02-03 00:00:00,1964-02-04 00:00:00,1964-02-05 00:00:00,1964-02-06 00:00:00,1964-02-07 00:00:00,1964-02-08 00:00:00,1964-02-09 00:00:00,1964-02-10 00:00:00,1964-02-11 00:00:00,1964-02-12 00:00:00,1964-02-13 00:00:00,1964-02-14 00:00:00,1964-02-15 00:00:00,1964-02-16 00:00:00,1964-02-17 00:00:00,1964-02-18 00:00:00,1964-02-19 00:00:00,1964-02-20 00:00:00,1964-02-21 00:00:00,1964-02-22 00:00:00,1964-02-23 00:00:00,1964-02-24 00:00:00,1964-02-25 00:00:00,1964-02-26 00:00:00,1964-02-27 00:00:00,1964-02-28 00:00:00,1964-02-29 00:00:00,1964-03-01 00:00:00,1964-03-02 00:00:00,1964-03-03 00:00:00,1964-03-04 00:00:00,1964-03-05 00:00:00,1964-03-06 00:00:00,1964-03-07 00:00:00,1964-03-08 00:00:00,1964-03-09 00:00:00,1964-03-10 00:00:00,1964-03-11 00:00:00,1964-03-12 00:00:00,1964-03-13 00:00:00,1964-03-14 00:00:00,1964-03-15 00:00:00,1964-03-16 00:00:00,1964-03-17 00:00:00,1964-03-18 00:00:00,1964-03-19 00:00:00,1964-03-20 00:00:00,1964-03-21 00:00:00,1964-03-22 00:00:00,1964-03-23 00:00:00,1964-03-24 00:00:00,1964-03-25 00:00:00,1964-03-26 00:00:00,1964-03-27 00:00:00,1964-03-28 00:00:00,1964-03-29 00:00:00,1964-03-30 00:00:00,1964-03-31 00:00:00,1964-04-01 00:00:00,1964-04-02 00:00:00,1964-04-03 00:00:00,1964-04-04 00:00:00,1964-04-05 00:00:00,1964-04-06 00:00:00,1964-04-07 00:00:00,1964-04-08 00:00:00,1964-04-09 00:00:00,1964-04-10 00:00:00,1964-04-11 00:00:00,1964-04-12 00:00:00,1964-04-13 00:00:00,1964-04-14 00:00:00,1964-04-15 00:00:00,1964-04-16 00:00:00,1964-04-17 00:00:00,1964-04-18 00:00:00,1964-04-19 00:00:00,1964-04-20 00:00:00,1964-04-21 00:00:00,1964-04-22 00:00:00,1964-04-23 00:00:00,1964-04-24 00:00:00,1964-04-25 00:00:00,1964-04-26 00:00:00,1964-04-27 00:00:00,1964-04-28 00:00:00,1964-04-29 00:00:00,1964-04-30 00:00:00,1964-05-01 00:00:00,1964-05-02 00:00:00,1964-05-03 00:00:00,1964-05-04 00:00:00,1964-05-05 00:00:00,1964-05-06 00:00:00,1964-05-07 00:00:00,1964-05-08 00:00:00,1964-05-09 00:00:00,1964-05-10 00:00:00,1964-05-11 00:00:00,1964-05-12 00:00:00,1964-05-13 00:00:00,1964-05-14 00:00:00,1964-05-15 00:00:00,1964-05-16 00:00:00,1964-05-17 00:00:00,1964-05-18 00:00:00,1964-05-19 00:00:00,1964-05-20 00:00:00,1964-05-21 00:00:00,1964-05-22 00:00:00,1964-05-23 00:00:00,1964-05-24 00:00:00,1964-05-25 00:00:00,1964-05-26 00:00:00,1964-05-27 00:00:00,1964-05-28 00:00:00,1964-05-29 00:00:00,1964-05-30 00:00:00,1964-05-31 00:00:00,1964-06-01 00:00:00,1964-06-02 00:00:00,1964-06-03 00:00:00,1964-06-04 00:00:00,1964-06-05 00:00:00,1964-06-06 00:00:00,1964-06-07 00:00:00,1964-06-08 00:00:00,1964-06-09 00:00:00,1964-06-10 00:00:00,1964-06-11 00:00:00,1964-06-12 00:00:00,1964-06-13 00:00:00,1964-06-14 00:00:00,1964-06-15 00:00:00,1964-06-16 00:00:00,1964-06-17 00:00:00,1964-06-18 00:00:00,1964-06-19 00:00:00,1964-06-20 00:00:00,1964-06-21 00:00:00,1964-06-22 00:00:00,1964-06-23 00:00:00,1964-06-24 00:00:00,1964-06-25 00:00:00,1964-06-26 00:00:00,1964-06-27 00:00:00,1964-06-28 00:00:00,1964-06-29 00:00:00,1964-06-30 00:00:00,1964-07-01 00:00:00,1964-07-02 00:00:00,1964-07-03 00:00:00,1964-07-04 00:00:00,1964-07-05 00:00:00,1964-07-06 00:00:00,1964-07-07 00:00:00,1964-07-08 00:00:00,1964-07-09 00:00:00,1964-07-10 00:00:00,1964-07-11 00:00:00,1964-07-12 00:00:00,1964-07-13 00:00:00,1964-07-14 00:00:00,1964-07-15 00:00:00,1964-07-16 00:00:00,1964-07-17 00:00:00,1964-07-18 00:00:00,1964-07-19 00:00:00,1964-07-20 00:00:00,1964-07-21 00:00:00,1964-07-22 00:00:00,1964-07-23 00:00:00,1964-07-24 00:00:00,1964-07-25 00:00:00,1964-07-26 00:00:00,1964-07-27 00:00:00,1964-07-28 00:00:00,1964-07-29 00:00:00,1964-07-30 00:00:00,1964-07-31 00:00:00,1964-08-01 00:00:00,1964-08-02 00:00:00,1964-08-03 00:00:00,1964-08-04 00:00:00,1964-08-05 00:00:00,1964-08-06 00:00:00,1964-08-07 00:00:00,1964-08-08 00:00:00,1964-08-09 00:00:00,1964-08-10 00:00:00,1964-08-11 00:00:00,1964-08-12 00:00:00,1964-08-13 00:00:00,1964-08-14 00:00:00,1964-08-15 00:00:00,1964-08-16 00:00:00,1964-08-17 00:00:00,1964-08-18 00:00:00,1964-08-19 00:00:00,1964-08-20 00:00:00,1964-08-21 00:00:00,1964-08-22 00:00:00,1964-08-23 00:00:00,1964-08-24 00:00:00,1964-08-25 00:00:00,1964-08-26 00:00:00,1964-08-27 00:00:00,1964-08-28 00:00:00,1964-08-29 00:00:00,1964-08-30 00:00:00,1964-08-31 00:00:00,1964-09-01 00:00:00,1964-09-02 00:00:00,1964-09-03 00:00:00,1964-09-04 00:00:00,1964-09-05 00:00:00,1964-09-06 00:00:00,1964-09-07 00:00:00,1964-09-08 00:00:00,1964-09-09 00:00:00,1964-09-10 00:00:00,1964-09-11 00:00:00,1964-09-12 00:00:00,1964-09-13 00:00:00,1964-09-14 00:00:00,1964-09-15 00:00:00,1964-09-16 00:00:00,1964-09-17 00:00:00,1964-09-18 00:00:00,1964-09-19 00:00:00,1964-09-20 00:00:00,1964-09-21 00:00:00,1964-09-22 00:00:00,1964-09-23 00:00:00,1964-09-24 00:00:00,1964-09-25 00:00:00,1964-09-26 00:00:00,1964-09-27 00:00:00,1964-09-28 00:00:00,1964-09-29 00:00:00,1964-09-30 00:00:00
+43.0,49.0,52.0,61.0,62.0,62.0,62.0,62.0,61.0,53.0,52.0,52.0,52.0,52.0,52.0,52.0,52.0,52.0,52.0,52.0,52.0,52.0,52.0,52.0,52.0,52.0,52.0,52.0,52.0,53.0,59.0,66.0,72.0,78.0,83.0,89.0,115.0,116.0,140.0,196.0,169.0,186.0,508.0,284.0,206.0,322.0,405.0,541.0,1570.0,887.0,6250.0,2280.0,973.0,887.0,633.0,551.0,478.0,389.0,303.0,286.0,267.0,227.0,195.0,175.0,183.0,182.0,177.0,172.0,168.0,163.0,158.0,152.0,138.0,132.0,122.0,113.0,109.0,109.0,109.0,109.0,106.0,95.0,94.0,94.0,94.0,99.0,120.0,129.0,150.0,157.0,168.0,170.0,167.0,150.0,135.0,133.0,130.0,119.0,114.0,120.0,124.0,131.0,133.0,133.0,142.0,717.0,605.0,372.0,275.0,207.0,170.0,153.0,138.0,133.0,124.0,123.0,122.0,122.0,123.0,132.0,505.0,740.0,989.0,1910.0,868.0,606.0,445.0,359.0,298.0,278.0,256.0,251.0,251.0,250.0,246.0,225.0,220.0,219.0,227.0,422.0,569.0,404.0,315.0,277.0,239.0,254.0,458.0,593.0,543.0,565.0,479.0,550.0,544.0,414.0,328.0,309.0,276.0,235.0,215.0,178.0,170.0,157.0,155.0,154.0,155.0,163.0,319.0,801.0,716.0,516.0,1800.0,1750.0,1040.0,1050.0,712.0,1240.0,5760.0,2870.0,1230.0,812.0,608.0,494.0,414.0,339.0,881.0,1440.0,969.0,638.0,457.0,346.0,302.0,272.0,251.0,239.0,238.0,238.0,235.0,215.0,194.0,181.0,183.0,540.0,360.0,298.0,261.0,359.0,449.0,308.0,253.0,213.0,193.0,173.0,163.0,154.0,154.0,167.0,186.0,167.0,155.0,152.0,144.0,143.0,141.0,129.0,108.0,105.0,104.0,102.0,100.0,99.0,97.0,96.0,95.0,95.0,94.0,94.0,93.0,91.0,90.0,89.0,88.0,87.0,86.0,85.0,84.0,82.0,81.0,80.0,79.0,78.0,77.0,76.0,74.0,73.0,73.0,72.0,72.0,71.0,71.0,71.0,70.0,70.0,69.0,69.0,68.0,68.0,68.0,67.0,67.0,66.0,66.0,65.0,65.0,65.0,66.0,65.0,65.0,64.0,63.0,62.0,62.0,61.0,60.0,59.0,59.0,58.0,58.0,57.0,57.0,56.0,56.0,55.0,55.0,54.0,54.0,53.0,53.0,52.0,51.0,51.0,50.0,49.0,49.0,48.0,48.0,47.0,46.0,46.0,45.0,44.0,44.0,43.0,43.0,42.0,41.0,41.0,40.0,39.0,39.0,38.0,38.0,37.0,36.0,36.0,37.0,37.0,37.0,37.0,38.0,38.0,41.0,42.0,42.0,42.0,42.0,42.0,42.0,42.0,42.0,42.0,42.0,42.0,42.0,42.0,42.0,42.0,42.0,42.0,42.0,38.0,41.0,42.0,42.0,42.0,42.0,40.0,36.0,35.0,35.0,35.0,35.0,34.0,34.0,34.0,33.0,33.0
diff --git a/tests/data/q_prd_1yr.csv b/tests/data/q_prd_1yr.csv
new file mode 100644
index 0000000000000000000000000000000000000000..2f88626c355216c64911dc5104e95b7f898911bb
--- /dev/null
+++ b/tests/data/q_prd_1yr.csv
@@ -0,0 +1,51 @@
+1963-10-01 00:00:00,1963-10-02 00:00:00,1963-10-03 00:00:00,1963-10-04 00:00:00,1963-10-05 00:00:00,1963-10-06 00:00:00,1963-10-07 00:00:00,1963-10-08 00:00:00,1963-10-09 00:00:00,1963-10-10 00:00:00,1963-10-11 00:00:00,1963-10-12 00:00:00,1963-10-13 00:00:00,1963-10-14 00:00:00,1963-10-15 00:00:00,1963-10-16 00:00:00,1963-10-17 00:00:00,1963-10-18 00:00:00,1963-10-19 00:00:00,1963-10-20 00:00:00,1963-10-21 00:00:00,1963-10-22 00:00:00,1963-10-23 00:00:00,1963-10-24 00:00:00,1963-10-25 00:00:00,1963-10-26 00:00:00,1963-10-27 00:00:00,1963-10-28 00:00:00,1963-10-29 00:00:00,1963-10-30 00:00:00,1963-10-31 00:00:00,1963-11-01 00:00:00,1963-11-02 00:00:00,1963-11-03 00:00:00,1963-11-04 00:00:00,1963-11-05 00:00:00,1963-11-06 00:00:00,1963-11-07 00:00:00,1963-11-08 00:00:00,1963-11-09 00:00:00,1963-11-10 00:00:00,1963-11-11 00:00:00,1963-11-12 00:00:00,1963-11-13 00:00:00,1963-11-14 00:00:00,1963-11-15 00:00:00,1963-11-16 00:00:00,1963-11-17 00:00:00,1963-11-18 00:00:00,1963-11-19 00:00:00,1963-11-20 00:00:00,1963-11-21 00:00:00,1963-11-22 00:00:00,1963-11-23 00:00:00,1963-11-24 00:00:00,1963-11-25 00:00:00,1963-11-26 00:00:00,1963-11-27 00:00:00,1963-11-28 00:00:00,1963-11-29 00:00:00,1963-11-30 00:00:00,1963-12-01 00:00:00,1963-12-02 00:00:00,1963-12-03 00:00:00,1963-12-04 00:00:00,1963-12-05 00:00:00,1963-12-06 00:00:00,1963-12-07 00:00:00,1963-12-08 00:00:00,1963-12-09 00:00:00,1963-12-10 00:00:00,1963-12-11 00:00:00,1963-12-12 00:00:00,1963-12-13 00:00:00,1963-12-14 00:00:00,1963-12-15 00:00:00,1963-12-16 00:00:00,1963-12-17 00:00:00,1963-12-18 00:00:00,1963-12-19 00:00:00,1963-12-20 00:00:00,1963-12-21 00:00:00,1963-12-22 00:00:00,1963-12-23 00:00:00,1963-12-24 00:00:00,1963-12-25 00:00:00,1963-12-26 00:00:00,1963-12-27 00:00:00,1963-12-28 00:00:00,1963-12-29 00:00:00,1963-12-30 00:00:00,1963-12-31 00:00:00,1964-01-01 00:00:00,1964-01-02 00:00:00,1964-01-03 00:00:00,1964-01-04 00:00:00,1964-01-05 00:00:00,1964-01-06 00:00:00,1964-01-07 00:00:00,1964-01-08 00:00:00,1964-01-09 00:00:00,1964-01-10 00:00:00,1964-01-11 00:00:00,1964-01-12 00:00:00,1964-01-13 00:00:00,1964-01-14 00:00:00,1964-01-15 00:00:00,1964-01-16 00:00:00,1964-01-17 00:00:00,1964-01-18 00:00:00,1964-01-19 00:00:00,1964-01-20 00:00:00,1964-01-21 00:00:00,1964-01-22 00:00:00,1964-01-23 00:00:00,1964-01-24 00:00:00,1964-01-25 00:00:00,1964-01-26 00:00:00,1964-01-27 00:00:00,1964-01-28 00:00:00,1964-01-29 00:00:00,1964-01-30 00:00:00,1964-01-31 00:00:00,1964-02-01 00:00:00,1964-02-02 00:00:00,1964-02-03 00:00:00,1964-02-04 00:00:00,1964-02-05 00:00:00,1964-02-06 00:00:00,1964-02-07 00:00:00,1964-02-08 00:00:00,1964-02-09 00:00:00,1964-02-10 00:00:00,1964-02-11 00:00:00,1964-02-12 00:00:00,1964-02-13 00:00:00,1964-02-14 00:00:00,1964-02-15 00:00:00,1964-02-16 00:00:00,1964-02-17 00:00:00,1964-02-18 00:00:00,1964-02-19 00:00:00,1964-02-20 00:00:00,1964-02-21 00:00:00,1964-02-22 00:00:00,1964-02-23 00:00:00,1964-02-24 00:00:00,1964-02-25 00:00:00,1964-02-26 00:00:00,1964-02-27 00:00:00,1964-02-28 00:00:00,1964-02-29 00:00:00,1964-03-01 00:00:00,1964-03-02 00:00:00,1964-03-03 00:00:00,1964-03-04 00:00:00,1964-03-05 00:00:00,1964-03-06 00:00:00,1964-03-07 00:00:00,1964-03-08 00:00:00,1964-03-09 00:00:00,1964-03-10 00:00:00,1964-03-11 00:00:00,1964-03-12 00:00:00,1964-03-13 00:00:00,1964-03-14 00:00:00,1964-03-15 00:00:00,1964-03-16 00:00:00,1964-03-17 00:00:00,1964-03-18 00:00:00,1964-03-19 00:00:00,1964-03-20 00:00:00,1964-03-21 00:00:00,1964-03-22 00:00:00,1964-03-23 00:00:00,1964-03-24 00:00:00,1964-03-25 00:00:00,1964-03-26 00:00:00,1964-03-27 00:00:00,1964-03-28 00:00:00,1964-03-29 00:00:00,1964-03-30 00:00:00,1964-03-31 00:00:00,1964-04-01 00:00:00,1964-04-02 00:00:00,1964-04-03 00:00:00,1964-04-04 00:00:00,1964-04-05 00:00:00,1964-04-06 00:00:00,1964-04-07 00:00:00,1964-04-08 00:00:00,1964-04-09 00:00:00,1964-04-10 00:00:00,1964-04-11 00:00:00,1964-04-12 00:00:00,1964-04-13 00:00:00,1964-04-14 00:00:00,1964-04-15 00:00:00,1964-04-16 00:00:00,1964-04-17 00:00:00,1964-04-18 00:00:00,1964-04-19 00:00:00,1964-04-20 00:00:00,1964-04-21 00:00:00,1964-04-22 00:00:00,1964-04-23 00:00:00,1964-04-24 00:00:00,1964-04-25 00:00:00,1964-04-26 00:00:00,1964-04-27 00:00:00,1964-04-28 00:00:00,1964-04-29 00:00:00,1964-04-30 00:00:00,1964-05-01 00:00:00,1964-05-02 00:00:00,1964-05-03 00:00:00,1964-05-04 00:00:00,1964-05-05 00:00:00,1964-05-06 00:00:00,1964-05-07 00:00:00,1964-05-08 00:00:00,1964-05-09 00:00:00,1964-05-10 00:00:00,1964-05-11 00:00:00,1964-05-12 00:00:00,1964-05-13 00:00:00,1964-05-14 00:00:00,1964-05-15 00:00:00,1964-05-16 00:00:00,1964-05-17 00:00:00,1964-05-18 00:00:00,1964-05-19 00:00:00,1964-05-20 00:00:00,1964-05-21 00:00:00,1964-05-22 00:00:00,1964-05-23 00:00:00,1964-05-24 00:00:00,1964-05-25 00:00:00,1964-05-26 00:00:00,1964-05-27 00:00:00,1964-05-28 00:00:00,1964-05-29 00:00:00,1964-05-30 00:00:00,1964-05-31 00:00:00,1964-06-01 00:00:00,1964-06-02 00:00:00,1964-06-03 00:00:00,1964-06-04 00:00:00,1964-06-05 00:00:00,1964-06-06 00:00:00,1964-06-07 00:00:00,1964-06-08 00:00:00,1964-06-09 00:00:00,1964-06-10 00:00:00,1964-06-11 00:00:00,1964-06-12 00:00:00,1964-06-13 00:00:00,1964-06-14 00:00:00,1964-06-15 00:00:00,1964-06-16 00:00:00,1964-06-17 00:00:00,1964-06-18 00:00:00,1964-06-19 00:00:00,1964-06-20 00:00:00,1964-06-21 00:00:00,1964-06-22 00:00:00,1964-06-23 00:00:00,1964-06-24 00:00:00,1964-06-25 00:00:00,1964-06-26 00:00:00,1964-06-27 00:00:00,1964-06-28 00:00:00,1964-06-29 00:00:00,1964-06-30 00:00:00,1964-07-01 00:00:00,1964-07-02 00:00:00,1964-07-03 00:00:00,1964-07-04 00:00:00,1964-07-05 00:00:00,1964-07-06 00:00:00,1964-07-07 00:00:00,1964-07-08 00:00:00,1964-07-09 00:00:00,1964-07-10 00:00:00,1964-07-11 00:00:00,1964-07-12 00:00:00,1964-07-13 00:00:00,1964-07-14 00:00:00,1964-07-15 00:00:00,1964-07-16 00:00:00,1964-07-17 00:00:00,1964-07-18 00:00:00,1964-07-19 00:00:00,1964-07-20 00:00:00,1964-07-21 00:00:00,1964-07-22 00:00:00,1964-07-23 00:00:00,1964-07-24 00:00:00,1964-07-25 00:00:00,1964-07-26 00:00:00,1964-07-27 00:00:00,1964-07-28 00:00:00,1964-07-29 00:00:00,1964-07-30 00:00:00,1964-07-31 00:00:00,1964-08-01 00:00:00,1964-08-02 00:00:00,1964-08-03 00:00:00,1964-08-04 00:00:00,1964-08-05 00:00:00,1964-08-06 00:00:00,1964-08-07 00:00:00,1964-08-08 00:00:00,1964-08-09 00:00:00,1964-08-10 00:00:00,1964-08-11 00:00:00,1964-08-12 00:00:00,1964-08-13 00:00:00,1964-08-14 00:00:00,1964-08-15 00:00:00,1964-08-16 00:00:00,1964-08-17 00:00:00,1964-08-18 00:00:00,1964-08-19 00:00:00,1964-08-20 00:00:00,1964-08-21 00:00:00,1964-08-22 00:00:00,1964-08-23 00:00:00,1964-08-24 00:00:00,1964-08-25 00:00:00,1964-08-26 00:00:00,1964-08-27 00:00:00,1964-08-28 00:00:00,1964-08-29 00:00:00,1964-08-30 00:00:00,1964-08-31 00:00:00,1964-09-01 00:00:00,1964-09-02 00:00:00,1964-09-03 00:00:00,1964-09-04 00:00:00,1964-09-05 00:00:00,1964-09-06 00:00:00,1964-09-07 00:00:00,1964-09-08 00:00:00,1964-09-09 00:00:00,1964-09-10 00:00:00,1964-09-11 00:00:00,1964-09-12 00:00:00,1964-09-13 00:00:00,1964-09-14 00:00:00,1964-09-15 00:00:00,1964-09-16 00:00:00,1964-09-17 00:00:00,1964-09-18 00:00:00,1964-09-19 00:00:00,1964-09-20 00:00:00,1964-09-21 00:00:00,1964-09-22 00:00:00,1964-09-23 00:00:00,1964-09-24 00:00:00,1964-09-25 00:00:00,1964-09-26 00:00:00,1964-09-27 00:00:00,1964-09-28 00:00:00,1964-09-29 00:00:00,1964-09-30 00:00:00
+48.03,43.55,47.95,49.82,57.97,57.73,63.69,60.16,60.25,60.5,51.79,50.88,50.92,50.95,50.98,51.01,52.66,50.93,52.34,50.99,52.57,51.03,51.05,51.06,51.08,51.09,62.54,51.33,51.15,51.47,52.67,62.02,61.71,70.15,76.51,80.69,193.79,99.29,115.31,204.32,155.08,156.52,350.53,357.05,228.21,272.58,251.58,458.17,1327.92,620.73,4209.71,1202.52,821.25,846.24,415.09,349.58,911.3,411.02,325.06,306.86,269.72,255.65,219.93,152.19,186.04,249.94,160.85,162.65,159.94,156.57,154.46,152.1,146.29,132.78,127.54,118.44,110.12,118.77,112.51,121.35,141.08,103.97,95.0,92.72,92.5,202.54,107.17,163.45,133.99,190.09,263.0,265.81,163.35,216.55,160.38,130.57,234.55,144.72,141.82,108.81,118.38,119.58,141.82,126.54,128.14,135.69,7285.44,268.63,220.34,213.26,203.09,168.56,138.66,132.08,142.32,117.46,117.27,116.88,117.29,118.52,212.89,2415.35,547.09,1021.78,792.38,582.25,470.96,372.94,314.44,268.77,255.08,242.33,234.9,236.18,236.2,233.11,253.62,209.36,203.5,395.91,820.75,298.26,292.77,254.51,237.35,212.53,657.7,535.69,306.42,599.41,375.63,466.48,434.44,444.61,436.15,292.27,309.98,254.72,219.79,202.75,169.27,162.37,154.01,178.32,154.05,185.0,257.63,643.56,376.87,495.8,1314.12,1903.23,1123.99,1009.92,604.32,593.06,5981.5,3313.89,1051.3,741.13,705.17,607.25,441.52,378.07,538.71,2276.46,731.13,512.27,537.87,405.09,312.82,282.19,254.36,253.79,224.04,259.01,223.99,233.76,201.35,182.82,171.63,682.83,292.21,252.3,272.81,260.11,385.56,399.63,308.48,230.64,235.97,237.43,178.31,153.66,146.04,146.67,179.44,173.87,157.41,147.02,144.74,137.7,137.11,135.52,124.42,104.69,101.98,101.14,99.33,97.5,96.61,94.76,96.5,92.65,92.72,91.83,91.88,93.9,88.78,88.06,86.98,86.22,85.16,84.24,83.37,82.38,83.72,79.2,78.3,77.39,76.47,75.54,74.61,72.71,71.77,71.78,70.83,80.92,79.14,59.62,68.74,67.96,86.84,64.56,65.45,64.96,65.3,68.8,64.84,65.02,64.21,64.68,63.86,63.54,63.61,64.63,63.71,63.75,62.83,61.89,60.95,60.97,60.61,59.02,58.07,58.09,57.14,57.15,56.19,56.2,55.24,55.24,54.28,54.28,53.32,53.32,52.35,52.35,51.38,50.42,50.42,49.45,48.52,48.47,47.5,47.5,46.53,45.56,45.56,44.6,43.73,43.72,42.74,42.74,41.75,40.77,40.77,39.8,38.81,38.8,37.82,37.82,36.84,35.88,35.84,36.87,36.82,36.82,36.82,37.79,37.79,40.7,41.67,41.67,41.67,41.66,41.66,41.66,41.66,41.65,41.65,46.86,42.39,34.52,41.43,41.44,41.45,41.46,41.46,41.47,37.82,41.03,47.58,33.9,40.99,41.32,39.37,35.49,34.76,35.7,35.76,35.71,33.42,33.38,33.39,32.45
+48.03,43.76,55.33,54.31,57.97,57.96,64.06,60.2,61.54,59.89,51.79,50.88,50.92,51.18,50.98,51.01,52.26,50.93,50.96,51.41,67.63,67.05,52.46,51.06,51.82,51.62,51.1,51.58,52.12,51.46,55.04,63.57,61.71,71.87,77.61,80.92,212.54,99.29,115.31,169.32,163.95,155.21,350.54,322.41,243.26,325.9,287.37,381.03,1309.05,629.49,4209.86,1299.51,821.05,930.05,435.26,411.17,636.98,490.83,335.72,278.97,259.6,300.64,211.21,137.78,541.18,300.5,181.43,156.1,156.48,156.0,153.38,150.06,145.32,132.77,127.56,118.44,110.12,106.5,106.6,131.58,109.27,125.61,93.41,92.46,92.5,95.91,118.53,117.42,128.31,148.68,381.28,265.83,150.43,179.34,138.01,124.58,132.86,121.96,115.55,108.8,114.36,119.26,141.83,125.93,126.68,135.69,7286.29,268.65,220.34,213.22,232.39,161.88,138.69,127.65,134.62,118.23,169.76,122.34,142.83,118.51,212.85,2414.75,547.09,1021.86,792.31,641.97,513.31,408.79,314.39,268.77,255.1,237.79,234.98,236.21,263.49,274.78,253.62,234.55,203.5,396.03,820.81,298.28,305.5,282.87,250.65,217.59,786.11,738.21,322.9,599.26,375.53,466.4,489.61,529.36,389.58,292.13,280.97,254.77,219.73,206.22,178.85,173.19,160.57,178.39,154.02,209.26,306.37,637.67,376.92,495.84,1244.74,1902.98,978.28,930.89,624.74,782.26,6101.38,3313.32,984.58,1059.08,653.01,524.17,441.45,378.13,538.88,2381.83,731.37,512.32,491.53,386.95,307.22,274.75,251.19,234.54,224.07,259.07,218.5,218.31,201.34,182.82,175.19,682.7,292.16,252.21,272.77,260.11,385.6,353.56,264.19,223.83,193.17,178.4,161.88,153.67,146.05,146.67,179.44,173.87,157.4,147.02,144.74,137.69,137.11,135.52,124.42,104.69,101.98,101.14,99.33,97.5,96.61,94.76,96.5,93.96,92.72,91.83,92.64,93.9,88.77,88.06,86.98,86.22,85.16,84.24,83.31,82.38,83.72,79.2,78.3,77.39,76.47,78.26,75.88,73.18,71.77,71.78,70.83,81.21,79.14,59.62,68.74,67.96,86.84,63.66,65.45,64.96,65.3,65.57,65.04,65.02,64.21,64.32,63.46,63.54,63.61,64.63,63.71,63.75,63.1,61.89,60.95,61.15,61.23,59.51,58.07,58.09,57.14,57.15,56.2,56.2,55.24,55.24,54.28,54.28,53.32,53.32,52.35,52.35,51.38,50.42,50.42,49.45,48.48,49.99,47.73,47.53,46.53,45.56,45.56,44.6,43.73,43.78,43.05,42.77,41.78,41.21,40.77,39.83,38.88,38.8,37.82,37.89,36.96,35.88,35.84,36.81,36.82,36.82,36.82,37.83,37.79,40.72,41.67,41.67,41.74,41.66,41.66,41.66,41.66,41.65,41.65,48.82,42.39,34.52,41.43,41.44,41.45,41.46,41.46,41.47,37.85,41.03,47.58,33.9,41.45,42.13,39.07,35.27,34.35,34.38,34.43,34.45,33.42,33.6,33.39,32.89
+48.03,43.55,47.95,52.06,57.97,57.74,64.03,60.56,60.25,59.37,51.79,50.87,50.92,50.95,50.98,51.01,59.73,51.99,51.49,51.0,51.01,51.56,51.31,56.68,69.2,51.27,51.1,51.25,51.11,51.33,52.67,62.02,61.71,70.39,75.9,80.69,193.79,103.53,162.17,216.63,187.17,170.0,350.51,359.82,228.21,266.35,251.59,381.01,1248.76,620.93,4209.94,1202.68,821.35,846.33,414.89,351.08,789.11,486.87,325.1,267.26,274.94,312.87,211.17,231.17,199.64,249.89,152.47,156.11,156.52,222.63,182.15,170.6,145.29,144.06,127.53,118.42,110.12,106.5,106.61,106.69,106.79,103.97,93.41,92.46,92.51,92.54,97.35,117.43,128.3,157.35,379.52,287.84,156.73,345.95,169.61,125.0,148.45,128.69,133.21,116.56,132.74,123.34,141.8,125.91,126.67,135.67,7285.44,268.63,220.34,213.26,173.81,149.58,138.67,127.68,124.69,117.46,117.27,116.89,117.3,154.53,216.01,3182.56,572.67,1153.27,1664.0,700.06,531.1,373.05,320.07,268.69,284.11,237.67,234.93,236.13,236.13,233.05,253.52,209.28,203.46,395.83,820.57,298.16,292.7,254.43,245.55,259.52,657.48,535.86,306.35,710.2,393.51,488.74,434.4,444.64,356.62,292.17,280.97,254.74,219.67,202.72,169.26,162.46,150.51,178.32,154.02,184.92,257.56,637.5,376.69,495.64,1244.83,1903.75,978.46,930.89,604.6,569.29,5979.0,3314.27,984.78,741.66,653.08,526.45,441.74,395.12,657.49,2292.29,731.25,512.27,491.33,391.1,307.38,371.87,251.42,233.81,224.02,264.16,218.46,218.21,201.27,182.86,171.61,683.03,292.41,252.31,354.45,260.22,385.6,353.64,261.81,223.78,193.14,178.39,161.87,165.78,146.03,146.68,192.67,173.87,157.44,147.02,144.75,137.7,137.12,135.53,124.42,104.69,101.98,101.14,99.33,97.5,96.61,94.76,96.5,92.65,92.72,91.83,91.88,103.35,89.63,88.06,86.98,86.22,85.16,85.42,83.31,82.38,83.72,79.2,78.44,77.39,76.47,76.83,74.61,72.71,71.81,72.17,70.83,80.92,79.14,59.62,68.74,67.96,86.84,63.66,65.45,64.96,65.3,65.57,64.84,65.02,64.21,64.32,63.46,63.54,63.61,64.85,63.71,63.75,62.83,61.89,60.95,60.97,60.61,59.02,58.07,58.29,57.16,57.15,56.3,56.2,55.24,55.24,54.28,54.28,53.32,53.32,52.35,52.35,51.38,50.42,50.55,49.52,48.48,48.47,47.5,47.5,46.53,45.56,45.56,44.6,43.73,43.72,42.74,42.74,41.75,40.77,40.77,39.79,38.81,38.84,37.82,37.82,36.84,35.88,35.84,36.81,36.82,36.82,36.82,37.79,37.79,40.7,41.67,41.67,41.67,41.66,41.66,41.66,41.65,43.4,41.65,46.86,42.39,34.52,41.43,41.44,41.45,41.46,41.81,41.82,37.82,41.03,47.57,33.9,40.99,40.99,39.07,35.27,34.35,34.38,34.43,34.53,33.5,33.38,33.66,32.83
+48.03,71.2,47.95,49.82,57.97,57.73,63.69,60.16,60.33,59.37,51.79,50.88,50.92,50.95,50.98,51.01,52.26,50.93,50.96,50.99,51.01,51.03,51.05,51.06,51.16,57.0,51.1,51.18,51.11,51.71,52.67,62.02,62.34,77.5,78.39,84.81,234.29,108.62,115.3,170.69,153.85,164.03,350.53,363.57,249.07,266.36,251.61,487.24,1295.73,655.52,4364.89,1202.92,826.19,846.28,416.78,349.5,583.23,409.28,325.1,267.17,273.89,277.76,211.25,132.5,186.09,250.0,152.51,156.14,156.51,181.76,153.38,239.76,145.82,132.75,155.42,148.12,110.12,111.44,126.45,110.5,165.89,103.97,93.41,92.47,92.51,92.54,97.36,117.44,125.99,146.04,268.47,328.9,129.49,142.01,132.9,122.94,123.25,135.62,112.78,115.49,143.88,130.85,153.81,355.94,145.75,135.67,7285.44,296.73,261.68,213.22,185.63,155.57,145.1,127.67,142.82,130.91,124.48,123.1,117.65,118.51,212.91,2415.2,547.17,1021.91,792.38,679.27,503.74,372.84,324.6,281.98,255.04,237.74,234.91,236.14,372.12,235.69,264.91,209.33,205.93,395.87,820.63,298.16,292.7,254.41,237.31,212.61,657.98,535.86,306.58,647.46,386.63,480.18,434.66,444.82,358.05,348.9,281.07,254.85,219.79,240.18,193.54,247.63,153.23,178.37,154.1,185.05,257.75,637.96,377.01,495.96,1245.1,1903.23,978.55,931.07,604.82,569.56,5980.81,3383.82,984.98,1037.54,968.96,1546.65,441.59,378.16,538.88,2278.83,1057.85,630.99,491.15,387.3,324.3,280.75,251.33,233.84,224.05,259.12,220.58,224.53,201.32,205.13,171.62,682.67,292.09,252.18,272.7,260.06,385.42,353.39,261.63,223.8,193.17,178.4,161.87,153.67,146.05,146.7,179.46,179.58,157.4,147.03,145.26,137.7,139.28,135.62,124.42,104.69,101.99,101.14,99.33,97.5,96.61,94.76,96.5,92.65,92.72,91.83,91.88,93.9,88.93,88.4,87.16,86.22,85.16,84.24,83.31,82.38,83.72,79.2,78.3,77.39,76.47,75.54,74.8,72.71,71.77,71.78,70.83,80.92,79.14,59.62,68.74,67.96,86.84,63.66,65.45,64.96,65.3,65.57,64.84,65.02,64.21,64.32,63.46,63.54,63.61,64.63,63.71,63.75,62.83,61.89,60.95,60.97,60.61,59.02,58.23,58.17,57.14,57.98,56.31,56.2,55.24,55.24,54.28,54.29,53.32,53.32,52.35,52.35,51.39,50.42,50.42,49.45,48.48,48.47,47.5,47.5,46.53,45.56,45.56,44.75,43.73,43.72,42.74,42.74,41.75,40.77,40.77,39.79,38.81,38.8,37.82,38.0,36.84,35.88,35.84,36.81,36.82,36.82,36.82,37.79,37.79,40.7,41.67,41.67,41.67,41.66,41.66,41.66,41.65,41.68,46.1,50.02,42.39,34.52,41.43,41.44,41.45,41.46,41.46,41.47,37.82,41.03,47.74,33.9,40.99,40.99,39.07,35.27,34.35,34.38,34.43,34.45,33.42,33.38,33.39,32.45
+48.33,43.55,49.83,51.87,60.7,58.36,63.69,60.16,60.25,59.37,51.79,50.88,50.92,50.95,50.98,51.27,52.26,50.93,50.96,50.99,51.01,51.03,51.05,51.06,51.07,51.09,51.1,51.1,51.11,51.24,52.96,62.02,61.71,70.15,75.9,92.01,205.1,112.8,134.15,169.32,166.33,201.27,363.68,348.68,287.32,304.36,302.01,657.2,1256.6,2304.31,4255.98,1202.76,1130.34,1133.91,591.58,370.0,592.88,409.23,325.19,267.23,261.43,255.62,294.8,135.83,202.67,249.94,152.47,156.13,156.52,156.0,153.39,150.06,145.32,132.77,127.57,118.45,110.14,106.5,106.6,106.69,106.79,103.98,93.41,92.47,92.51,92.54,97.33,117.42,125.98,146.02,263.06,265.89,129.5,166.41,133.82,138.5,133.76,121.97,112.8,108.8,114.36,119.25,141.83,125.93,126.68,135.69,7285.44,268.61,220.36,213.28,173.83,149.6,138.71,127.71,124.72,117.49,117.29,116.89,117.3,118.53,212.94,2415.35,547.21,1022.01,792.53,582.36,471.01,373.04,314.52,274.33,255.08,237.77,234.91,250.72,236.2,233.14,253.62,275.81,204.74,396.03,820.87,298.28,292.84,254.53,237.39,212.66,658.1,535.98,306.58,599.7,375.82,466.72,434.66,444.86,356.75,292.19,280.99,254.74,219.67,202.83,185.63,186.1,150.51,178.35,154.11,184.95,268.83,667.23,421.43,532.22,1617.58,2211.3,978.64,931.35,604.82,569.61,6458.82,3717.29,1013.28,814.77,714.75,524.45,441.63,378.3,539.11,2386.35,745.14,521.41,490.82,387.21,307.36,303.97,261.76,233.86,224.06,259.13,218.51,218.15,201.26,191.87,171.61,682.61,318.06,252.3,272.75,260.07,451.56,353.47,261.7,223.77,193.13,187.94,161.86,175.78,146.05,148.13,179.45,173.87,157.41,147.02,144.75,137.7,139.58,135.53,124.42,104.7,109.07,101.14,99.33,97.5,96.61,94.76,96.5,98.09,96.33,92.11,91.88,93.9,88.78,88.06,86.98,86.22,85.16,84.24,83.31,82.47,83.72,79.2,78.3,78.0,76.47,75.54,74.61,88.98,72.05,71.78,70.89,96.81,79.14,59.62,68.74,67.96,89.07,64.91,65.45,64.96,65.3,65.57,64.84,65.02,74.32,64.38,63.46,63.54,63.61,64.63,63.71,63.75,62.83,61.89,60.95,60.97,60.61,59.02,58.07,58.09,57.14,57.15,56.19,56.2,55.24,55.24,54.28,54.28,53.32,53.32,52.35,52.35,51.39,50.42,50.42,49.45,48.48,48.47,47.5,47.5,46.54,45.56,45.57,44.6,43.73,43.72,43.36,42.74,41.75,40.77,40.77,39.79,38.81,38.8,38.0,38.05,36.84,35.89,35.89,36.95,36.87,36.82,36.82,37.79,37.81,40.7,41.67,41.67,41.67,41.72,41.66,41.66,41.65,41.65,41.65,47.92,42.39,34.52,41.43,41.54,41.54,41.46,41.46,41.47,37.82,41.03,47.58,33.9,40.99,40.99,39.07,35.27,34.35,35.0,34.43,34.45,33.42,33.38,33.39,32.45
+42.83,48.82,49.81,58.14,58.75,60.79,73.89,61.72,63.04,53.07,52.37,51.66,51.65,54.2,53.64,54.02,51.63,51.61,51.6,51.59,51.58,52.37,51.83,51.55,51.55,51.53,51.52,51.51,51.5,52.34,64.17,65.15,70.87,77.53,81.44,76.66,107.99,101.43,119.46,194.04,154.74,142.24,509.71,352.63,193.51,336.59,443.39,311.61,1543.42,241.07,6231.47,2252.13,700.64,659.39,441.75,513.77,466.27,444.86,301.22,284.02,283.14,229.97,140.24,202.62,168.12,234.23,190.06,182.53,178.41,172.72,167.09,161.61,145.68,147.15,123.61,121.67,110.52,109.13,109.09,109.03,106.05,95.22,94.2,94.16,94.13,99.01,119.53,128.27,148.64,155.39,167.83,210.08,129.48,141.99,132.9,122.94,123.25,121.97,112.78,109.45,114.35,122.29,141.82,125.92,126.67,135.68,7284.59,268.61,220.34,213.26,173.81,149.61,138.71,127.7,124.71,117.47,117.27,116.88,117.29,156.66,213.97,2661.15,648.72,1021.49,792.01,581.97,470.78,372.91,314.47,268.73,255.04,237.72,234.9,236.16,236.16,241.62,255.21,209.32,231.45,521.34,820.75,298.21,292.79,254.51,237.39,268.13,770.17,535.56,338.88,599.31,396.29,470.14,434.48,444.75,356.73,292.28,281.07,254.87,219.79,202.82,169.35,162.44,150.52,181.0,162.55,209.98,347.93,638.09,377.01,664.22,1482.53,2001.58,1098.32,930.71,616.0,1193.7,6598.7,3315.63,985.5,741.51,652.63,524.31,441.67,424.45,818.87,2377.29,732.05,512.64,491.03,387.33,307.4,274.83,251.13,233.82,231.1,259.25,218.52,218.13,201.25,182.83,216.7,682.74,292.2,258.62,283.81,276.51,385.62,353.55,261.67,223.75,193.24,178.41,161.86,153.66,146.05,150.3,179.46,173.87,157.41,147.02,144.75,137.7,137.11,135.52,124.42,104.69,101.98,101.14,99.33,97.5,96.61,95.31,96.5,92.65,92.72,91.83,92.49,93.9,88.81,88.06,87.02,86.22,85.16,84.24,83.31,83.03,83.72,79.2,78.3,77.39,76.47,75.54,74.61,72.71,71.77,71.78,71.64,86.54,79.14,59.62,68.74,70.68,86.84,63.66,65.45,64.96,65.3,65.57,64.84,65.02,64.21,64.32,63.46,63.54,63.61,64.63,63.71,63.75,62.83,61.89,60.95,61.1,60.61,59.02,58.07,58.09,57.14,57.15,56.19,56.2,55.24,55.24,54.28,54.28,53.32,53.32,52.35,52.35,51.38,50.42,50.42,49.45,48.48,48.47,47.5,47.5,46.53,45.56,45.56,44.6,43.73,43.72,42.74,42.74,41.75,40.77,40.77,39.79,38.81,38.8,37.82,37.82,36.85,35.88,35.84,36.81,36.82,36.82,36.82,37.79,37.79,40.7,41.67,41.67,41.67,41.66,41.66,41.66,41.65,41.65,43.3,48.4,42.39,34.52,41.43,41.44,41.45,41.46,41.46,41.56,37.97,45.69,49.26,34.06,41.23,41.26,39.32,35.47,34.53,34.53,34.57,34.67,33.68,33.64,33.64,32.67
+42.73,50.59,51.38,58.14,58.75,60.79,61.5,61.47,60.48,52.67,51.68,51.66,51.65,51.63,52.45,51.35,51.63,51.61,51.6,51.59,51.58,51.57,52.58,52.79,51.54,51.53,51.52,52.64,51.5,52.34,58.0,71.22,73.75,76.64,81.44,76.66,107.99,101.42,119.45,197.18,155.67,142.23,482.38,259.22,163.02,280.48,333.9,426.65,1950.82,257.04,7327.24,2252.57,700.96,681.06,483.88,614.4,525.65,435.96,332.79,434.71,280.96,269.99,162.31,193.6,194.65,228.99,187.43,172.27,176.16,304.49,184.64,168.9,156.95,131.97,122.07,122.46,120.74,134.37,109.06,122.03,118.18,95.21,106.4,123.01,137.9,105.59,137.78,135.78,148.63,155.49,189.0,211.88,167.39,150.18,135.13,132.9,129.77,118.85,140.15,132.29,123.41,126.95,132.37,141.34,189.2,688.41,674.61,583.72,372.31,224.36,174.29,164.85,138.41,133.68,123.79,131.33,121.61,125.26,122.43,99.75,909.02,895.66,1096.45,1885.13,855.44,597.0,438.84,357.06,294.6,278.48,252.98,247.85,247.58,246.34,242.3,228.39,216.36,220.66,203.45,318.65,569.87,402.22,313.13,274.91,237.18,200.15,392.85,594.5,487.5,561.9,449.78,539.04,535.2,407.9,323.8,304.78,272.33,232.31,212.67,176.56,168.62,155.89,153.84,151.11,168.63,151.18,302.96,799.85,818.19,444.88,1493.72,2272.54,1004.72,1100.84,741.12,700.53,5513.44,2886.77,1214.64,801.12,600.52,488.69,410.28,300.74,576.53,1385.48,967.38,679.18,455.01,345.57,301.91,271.79,283.51,238.74,255.84,238.0,245.43,214.82,193.94,188.9,148.89,597.84,361.41,290.9,251.59,336.79,446.64,307.05,273.95,249.79,196.8,172.87,162.88,153.92,165.75,177.56,213.29,166.42,154.52,151.42,143.47,142.38,140.32,128.52,107.91,104.9,103.87,101.85,99.85,98.91,96.82,95.26,94.85,94.81,93.79,93.75,92.14,90.81,89.75,90.27,87.74,86.76,85.75,84.88,83.74,82.25,80.85,79.82,78.81,77.8,76.91,75.8,73.82,72.82,72.8,71.8,70.99,66.47,71.23,77.0,69.96,67.28,69.28,69.17,75.64,68.05,67.99,66.97,66.92,65.91,65.87,64.86,64.84,64.81,65.76,64.76,64.74,63.75,62.75,61.76,61.74,60.63,59.77,58.78,58.77,57.78,58.19,56.78,56.77,55.78,55.77,54.78,54.77,53.79,53.78,52.82,52.9,51.8,50.81,50.8,49.82,48.84,48.83,47.87,47.84,46.85,45.87,45.86,44.88,43.9,44.13,43.03,42.91,41.93,40.95,40.94,39.96,38.98,38.97,37.99,38.0,37.01,36.01,36.02,36.99,37.06,36.99,36.98,37.97,37.96,40.9,41.86,41.86,41.85,41.85,41.86,41.86,42.21,43.09,42.16,40.37,43.11,44.78,43.36,41.82,41.81,41.93,42.41,41.79,37.8,40.65,38.85,40.58,41.64,41.59,39.6,35.71,34.76,34.76,34.79,35.02,33.74,33.78,34.39,33.38,33.14
+43.56,49.54,49.81,60.4,58.75,60.79,61.61,61.47,60.48,52.67,51.68,51.66,53.29,54.14,54.14,52.14,51.98,51.61,51.92,52.74,51.58,51.57,52.48,143.81,83.38,61.05,51.52,51.56,51.5,52.34,57.97,65.43,70.87,76.64,81.45,76.92,107.98,101.42,179.1,254.82,154.73,142.24,482.42,259.22,169.77,346.91,362.49,348.69,1543.65,241.02,6197.84,2326.94,733.41,692.8,441.81,516.15,547.15,394.19,465.52,284.08,322.61,326.9,140.26,219.0,168.14,183.27,178.28,173.6,200.2,167.58,223.95,263.24,195.76,149.2,125.18,113.16,109.17,109.12,110.06,110.95,113.14,101.52,95.26,102.67,124.48,99.0,119.53,137.72,203.78,271.51,168.67,230.46,258.3,156.14,138.39,132.89,129.76,118.85,113.84,118.91,123.43,126.98,132.39,132.26,140.91,688.56,610.91,373.13,274.59,206.82,169.93,209.27,147.85,221.5,123.81,122.71,130.36,123.0,129.57,99.73,493.16,750.92,833.21,1900.8,861.74,596.82,440.64,354.21,310.58,303.78,266.78,359.41,252.17,349.11,242.3,214.16,216.36,216.61,216.93,318.69,569.61,435.29,345.83,275.91,243.69,200.15,401.43,594.08,487.67,731.7,449.67,538.91,534.83,407.64,323.6,304.73,272.25,232.23,212.61,176.51,168.6,156.34,153.82,151.2,146.45,143.9,237.06,799.8,706.02,382.13,1492.97,1648.74,919.13,1039.63,690.46,588.52,5206.65,3294.75,1473.71,947.0,600.98,488.99,410.38,300.96,576.59,1385.79,967.63,660.04,455.24,376.82,323.73,290.23,313.83,254.88,230.34,237.95,319.25,268.78,239.8,241.77,153.38,553.68,392.09,290.86,251.41,336.64,521.25,306.99,252.39,212.83,192.65,172.85,162.86,153.86,153.69,169.14,190.76,168.54,154.52,156.28,150.11,167.27,140.33,128.52,107.91,104.9,103.87,101.85,99.85,98.82,96.82,95.26,94.85,94.8,93.79,93.75,92.14,90.81,89.75,88.78,87.73,86.76,85.75,84.74,83.74,81.13,80.83,79.82,78.81,77.8,76.8,75.8,73.82,72.82,72.8,71.8,70.99,66.47,71.23,75.2,69.96,69.65,71.39,69.82,68.12,68.05,68.0,69.59,66.92,65.91,65.87,64.86,64.84,64.81,65.76,64.76,64.74,64.88,63.68,62.04,62.58,60.63,59.77,58.78,58.77,57.78,57.77,56.78,56.81,55.78,55.77,54.83,54.85,53.79,53.78,52.79,52.78,51.8,50.81,50.8,49.82,48.84,48.83,47.85,47.84,46.86,45.87,45.86,44.88,43.9,43.89,42.91,42.91,41.93,40.95,40.94,39.96,38.98,38.97,37.99,37.99,37.0,36.01,36.02,36.99,37.04,36.99,36.98,37.96,37.96,40.89,41.86,41.86,42.08,41.85,41.85,41.85,41.89,42.97,41.84,40.26,40.65,41.99,41.83,41.82,41.81,41.8,41.8,41.79,37.8,40.67,37.61,40.58,41.64,41.59,39.6,35.71,34.76,34.76,34.79,34.79,33.73,33.68,33.68,32.71,32.89
+42.67,49.35,50.88,58.31,58.89,62.08,61.5,61.47,60.48,52.67,51.68,52.71,51.8,52.12,69.82,51.69,51.63,51.61,51.6,51.59,51.66,51.57,52.17,51.55,51.54,51.53,51.97,51.51,51.5,53.32,59.59,81.44,71.31,76.64,83.07,76.99,107.99,101.43,119.46,194.03,154.73,143.43,482.35,259.2,320.29,281.2,333.86,311.64,1543.48,241.02,6186.33,2252.57,700.89,659.46,441.86,528.79,544.98,386.32,345.3,308.45,263.25,226.0,140.21,170.43,168.1,184.73,268.12,172.29,168.04,162.93,157.84,151.82,137.98,137.61,124.0,114.23,115.41,109.14,112.28,128.63,106.05,95.22,114.72,168.85,99.57,131.61,119.51,139.72,162.17,159.86,210.18,180.62,167.38,150.17,135.11,132.9,135.44,118.86,113.85,118.92,123.43,126.98,132.39,135.84,140.88,688.45,610.81,373.03,274.56,206.8,174.29,161.82,144.24,137.8,150.21,133.99,139.81,271.67,122.4,99.72,493.22,676.44,833.09,1905.89,886.32,631.6,438.72,354.36,294.52,274.65,252.98,247.81,247.56,246.38,242.33,214.18,216.39,219.32,211.6,318.72,847.47,581.06,395.24,274.76,237.04,200.18,392.75,594.55,620.83,563.97,474.37,568.58,655.82,407.71,323.65,319.8,295.53,232.19,212.58,182.59,168.59,202.56,154.67,194.81,146.45,143.89,237.02,799.75,705.96,382.01,1493.83,1648.09,918.72,1039.03,689.75,583.62,5165.22,2850.12,1381.12,853.69,601.33,489.08,410.48,300.91,612.04,1385.79,967.38,635.21,483.35,345.57,304.51,279.79,251.0,238.84,230.38,237.84,234.62,214.8,193.94,180.92,145.4,544.28,361.31,294.6,251.54,336.97,446.5,307.08,252.44,212.75,192.65,172.86,162.87,153.89,153.74,162.34,185.14,174.46,158.03,154.17,143.48,142.38,140.32,128.52,107.91,104.9,103.87,102.22,99.85,98.82,96.82,95.26,94.85,94.8,93.79,94.03,94.06,99.95,89.75,88.78,87.74,86.76,85.75,84.74,83.74,81.13,80.83,79.82,78.81,79.76,77.01,75.8,73.82,72.82,72.8,71.8,70.99,66.47,71.31,70.98,69.96,67.28,69.29,69.17,68.11,68.05,71.56,66.97,66.92,65.91,66.46,64.86,64.84,64.81,65.76,65.0,64.74,63.75,62.75,61.76,61.74,60.63,59.77,58.78,58.77,57.78,57.82,56.78,56.77,55.78,55.77,54.78,54.78,53.79,53.78,52.79,52.78,51.8,50.81,50.8,49.82,48.84,48.83,47.85,47.84,46.86,45.87,45.86,44.88,43.9,43.89,42.93,42.91,41.93,41.14,40.94,39.99,38.98,39.05,37.99,37.99,37.0,36.01,36.02,36.99,36.99,36.99,36.98,37.96,37.96,40.89,41.86,41.86,41.85,41.85,41.85,41.84,41.84,41.87,41.83,40.26,40.65,42.33,43.95,41.82,41.81,41.8,41.8,41.79,38.18,41.17,37.77,40.58,41.66,42.28,39.83,38.52,34.76,34.76,34.79,34.79,33.73,33.68,33.68,32.93,32.73
+42.67,48.82,49.82,58.61,60.03,60.79,61.5,62.58,60.48,52.97,53.73,53.14,54.22,53.88,52.89,57.77,65.94,51.61,51.6,51.59,51.58,51.57,51.56,51.74,51.54,51.53,51.52,51.87,51.5,52.34,57.97,74.46,79.17,76.76,81.44,76.66,107.99,106.24,119.45,194.03,154.74,142.24,482.42,259.2,163.01,280.47,333.9,311.68,1543.76,241.05,6186.22,2252.42,700.89,729.79,441.65,513.83,466.32,386.18,301.22,284.02,263.3,225.95,140.23,170.47,168.14,183.27,177.65,172.29,168.03,162.91,157.82,151.81,137.98,131.99,122.09,126.16,117.64,111.45,127.67,109.03,118.56,113.87,99.18,96.28,151.15,107.47,119.54,129.62,148.64,155.38,167.81,171.3,172.06,152.92,151.61,144.09,174.5,220.33,120.29,126.65,125.56,126.98,132.38,132.25,140.91,735.6,610.81,373.03,337.06,312.85,169.86,152.81,137.87,132.79,123.81,129.61,130.36,121.51,129.57,99.75,493.32,676.56,833.21,1957.29,972.77,596.94,502.6,410.93,301.9,350.57,294.99,247.79,247.56,246.37,255.96,236.6,216.3,216.61,197.53,318.62,569.82,539.03,393.81,352.17,297.14,200.09,392.81,594.45,487.58,561.9,449.78,539.09,535.1,407.84,323.7,304.62,281.8,238.6,212.64,176.55,168.62,155.93,153.89,151.11,146.5,143.87,340.73,834.45,720.94,382.2,1492.97,2041.7,1250.67,1183.22,689.63,583.3,5316.51,2847.54,1215.02,800.95,600.41,491.08,410.31,300.8,588.95,1386.34,977.07,639.44,455.28,345.47,301.82,271.87,250.89,238.77,230.4,237.9,234.66,214.73,193.93,180.91,145.43,544.08,360.96,300.36,251.37,351.63,574.38,306.99,252.41,212.83,199.99,177.21,175.12,155.97,154.83,162.38,212.51,170.28,154.52,151.44,143.5,142.39,140.33,129.75,107.91,104.9,103.87,101.86,99.85,98.82,99.49,95.26,94.85,95.05,96.49,93.75,92.14,91.36,89.75,88.78,87.73,86.76,85.75,84.74,83.74,81.13,80.83,80.79,78.81,77.91,76.8,75.8,73.82,72.82,72.8,71.8,70.99,66.47,71.23,71.09,69.96,67.28,81.2,69.26,68.12,68.05,68.98,66.97,67.42,65.91,65.87,64.86,64.84,64.81,65.76,64.76,64.74,63.75,68.89,61.76,61.74,60.63,59.77,58.78,58.77,57.78,57.77,56.88,56.77,55.78,55.79,54.78,54.77,53.79,53.78,52.79,52.8,51.8,50.81,50.8,49.82,48.84,48.83,47.85,47.84,46.85,45.87,45.86,44.88,44.32,43.97,42.91,42.91,41.93,40.95,40.94,39.96,40.65,38.97,38.01,37.99,37.02,36.01,36.02,36.99,36.99,36.99,36.98,37.96,37.96,40.89,41.86,41.88,41.85,41.87,41.85,41.86,41.85,42.01,41.83,40.26,40.65,41.99,41.83,41.82,42.12,41.8,41.8,41.79,38.13,40.68,39.8,49.16,41.64,41.59,40.9,36.19,34.76,34.89,34.79,34.79,33.73,33.68,33.75,33.05,32.73
+43.4,49.83,50.71,59.27,60.02,60.79,61.5,61.47,60.48,52.67,51.68,51.66,51.65,51.63,51.62,51.35,51.63,51.61,51.6,51.59,51.58,51.57,51.56,51.65,51.58,51.53,51.52,51.51,51.5,52.34,57.97,65.15,70.87,76.64,81.66,76.66,120.42,175.33,154.32,217.44,154.73,152.32,521.72,294.56,195.13,372.3,506.44,444.89,1713.35,264.04,6571.52,3312.67,1126.12,676.05,587.9,533.08,466.43,391.04,318.59,284.08,263.33,226.02,201.39,195.8,168.1,183.27,177.69,172.32,168.04,162.9,157.84,151.81,137.97,131.98,145.77,137.05,109.17,137.26,109.09,109.04,106.06,95.23,114.72,96.28,97.87,99.0,119.53,128.26,148.64,155.38,167.81,171.28,167.4,152.32,135.1,132.9,129.77,118.85,130.43,118.9,123.41,126.98,132.39,165.73,142.12,807.67,692.08,373.13,297.49,206.75,169.87,152.82,137.84,134.13,123.77,122.68,121.59,121.51,122.43,143.02,524.67,676.48,882.05,1988.57,858.71,596.94,438.88,354.36,315.06,286.2,253.02,247.88,247.6,246.4,250.05,214.18,216.42,216.68,197.57,318.68,569.91,402.29,312.98,274.78,237.11,220.57,392.65,594.31,524.31,561.9,449.78,539.04,579.2,408.01,346.33,304.58,272.29,232.28,212.64,176.55,168.62,161.75,228.62,213.15,146.4,143.9,236.95,905.88,740.34,381.95,1492.76,1648.31,918.97,1039.63,690.13,583.95,5167.77,2848.87,1215.79,801.86,601.03,542.56,444.67,300.94,577.01,1386.03,967.55,634.45,455.01,345.28,301.55,271.69,250.85,254.89,238.57,296.8,254.11,214.81,193.96,180.99,145.42,544.41,410.69,351.67,294.08,393.32,446.37,352.53,259.36,212.74,192.66,172.87,162.89,153.88,171.88,162.37,185.14,215.6,154.5,152.93,143.48,142.38,140.33,128.52,107.91,104.9,103.87,101.9,101.05,98.91,97.32,95.26,94.85,94.8,93.79,93.75,92.14,90.92,89.75,90.01,87.73,86.76,86.93,84.74,83.74,81.13,82.13,79.82,78.81,77.8,76.8,75.8,73.82,72.82,72.8,71.8,70.99,68.85,76.2,71.27,70.9,67.28,69.29,69.56,68.11,68.59,70.49,82.18,66.92,65.91,65.87,64.86,64.84,64.81,65.76,64.76,64.74,63.75,62.75,61.76,61.74,60.7,59.96,58.78,58.77,57.78,57.77,56.78,56.77,55.78,55.77,54.78,54.77,53.79,53.78,52.79,52.9,51.83,50.81,50.8,49.82,48.84,48.83,47.85,47.84,46.85,45.9,45.86,44.88,43.9,43.89,42.91,42.91,41.93,40.95,40.94,39.96,38.98,41.1,37.99,37.99,37.0,36.01,36.02,37.03,37.32,36.99,37.02,37.96,37.96,40.97,41.86,41.86,41.86,41.85,41.85,41.84,41.84,41.84,41.83,40.26,40.65,41.99,41.83,41.82,41.81,41.8,41.8,41.79,37.8,41.37,37.61,48.31,41.88,41.59,39.6,35.71,34.76,34.76,34.79,34.79,33.73,33.68,33.68,32.71,32.76
+42.67,48.82,49.82,58.33,58.75,64.03,62.46,61.93,60.92,52.99,54.98,54.83,51.65,51.63,51.62,51.35,51.63,51.61,52.97,51.71,51.81,51.57,51.56,51.55,51.54,51.53,51.52,51.51,51.5,52.34,57.97,65.15,70.87,76.64,82.16,76.66,111.4,103.22,142.41,194.04,160.79,142.24,545.12,259.2,200.11,280.49,342.14,339.88,1858.54,271.19,6808.76,2326.94,700.72,659.39,441.75,513.83,466.32,386.18,301.33,284.08,306.26,248.51,177.65,192.15,199.23,188.31,187.43,172.27,168.01,162.88,157.8,151.8,140.24,131.97,122.05,113.17,109.18,109.14,109.09,109.03,110.78,95.21,94.2,94.16,94.14,99.01,119.54,128.27,148.64,155.38,167.83,171.3,167.43,150.19,135.13,133.91,129.77,118.87,113.85,118.92,128.51,128.4,134.42,132.26,140.87,708.21,610.77,373.03,274.49,221.86,169.89,152.83,148.38,132.76,148.04,147.18,143.23,155.1,122.4,99.73,688.76,768.98,833.27,1885.27,1110.84,1053.66,581.61,459.14,294.52,316.02,417.05,302.01,294.68,272.36,268.65,243.15,216.37,216.65,197.55,328.25,676.24,432.31,431.41,274.93,326.06,261.83,400.01,594.55,487.58,561.85,449.86,539.14,618.38,464.75,323.79,304.71,272.35,237.19,235.19,187.9,191.69,155.92,168.89,163.63,146.44,143.91,237.12,799.8,929.89,384.91,1492.97,1648.31,918.72,1039.73,820.85,583.46,5165.99,2848.53,1250.17,802.48,600.92,540.78,435.12,340.79,577.2,1427.65,1025.2,643.5,616.53,345.63,301.89,280.51,250.97,244.7,284.04,254.99,234.66,214.76,193.91,180.9,145.38,623.3,361.33,291.8,251.42,364.42,446.33,360.02,271.41,212.79,193.1,173.78,164.38,153.88,153.7,162.32,185.12,166.39,154.51,151.42,143.47,143.36,140.34,137.62,112.6,104.9,103.87,101.86,99.85,98.82,96.82,95.26,94.85,94.81,93.79,93.75,92.14,90.81,89.75,88.78,87.73,86.98,85.75,84.74,83.74,81.13,80.83,79.82,78.81,77.8,76.8,75.8,75.49,72.82,72.8,71.8,70.99,66.47,71.23,71.66,70.3,67.43,69.28,69.17,68.11,68.7,68.0,67.49,66.92,68.35,66.9,64.86,64.84,65.01,65.76,64.76,64.74,63.75,62.75,61.76,62.03,60.63,59.77,58.78,58.77,57.78,57.77,56.78,56.77,55.78,55.77,54.78,54.87,53.79,53.78,52.79,52.78,51.84,50.81,50.8,49.82,49.0,48.83,47.85,47.84,46.85,45.87,45.86,44.88,43.99,43.89,42.93,42.91,41.93,40.96,40.94,39.96,38.98,38.97,37.99,38.43,37.0,36.01,36.2,36.99,36.99,37.04,36.98,37.96,37.96,40.89,41.86,41.86,41.85,41.85,41.85,41.84,41.86,41.84,41.87,40.26,40.65,41.99,41.83,42.11,42.47,42.02,42.23,41.95,37.98,42.72,46.15,52.73,41.64,41.59,39.6,35.71,34.76,34.76,34.79,34.79,33.73,33.68,33.68,33.04,32.74
+43.03,51.07,52.13,60.83,58.75,60.79,61.5,61.47,60.48,52.67,54.15,54.25,58.29,54.14,53.81,53.41,58.09,51.61,51.95,51.59,51.58,51.57,51.56,51.55,51.54,51.74,51.52,51.51,51.5,52.34,57.97,65.15,70.87,76.64,81.44,76.9,110.16,119.2,139.4,194.03,154.74,142.24,482.44,278.4,163.01,280.49,345.89,316.02,2215.98,241.0,6838.27,2648.82,724.49,692.8,445.47,514.0,474.04,386.37,334.31,287.43,305.05,234.7,140.21,170.43,168.1,183.27,182.49,172.27,168.03,164.65,157.79,151.77,137.94,131.96,122.07,113.17,109.19,109.14,109.09,121.25,106.66,95.5,94.73,96.01,94.11,99.55,121.81,128.26,148.62,155.38,167.83,171.27,167.43,150.19,135.13,132.92,129.78,118.87,113.84,118.91,123.42,126.98,132.38,132.25,140.89,688.52,615.31,449.63,274.49,234.69,198.54,184.93,139.31,152.59,148.04,144.58,139.81,159.68,130.77,111.41,493.37,834.55,833.09,1885.27,855.52,600.99,438.76,354.3,294.49,274.65,252.94,247.81,247.56,246.38,244.42,223.86,216.34,402.81,204.05,356.15,690.5,402.12,357.17,274.82,237.09,200.1,392.78,600.26,487.46,561.94,449.94,539.23,535.15,407.9,323.75,304.75,272.42,232.35,212.72,176.59,177.62,155.88,153.84,151.12,147.37,151.67,237.15,841.4,789.5,382.13,1603.02,1691.51,919.65,1039.53,690.07,583.78,5290.54,2860.55,1216.7,801.69,600.98,489.03,410.38,300.85,576.59,1386.26,967.87,635.09,455.08,345.34,301.55,271.71,250.84,238.75,230.34,237.83,234.6,214.72,193.93,180.94,145.39,544.13,361.11,290.73,268.14,386.05,446.33,318.61,298.3,212.79,192.69,172.88,162.88,153.88,153.71,162.33,185.13,166.4,154.48,151.41,143.47,142.38,140.32,128.52,107.91,105.87,103.87,102.41,110.96,103.5,98.44,95.26,94.88,94.81,93.85,93.75,92.14,92.16,89.75,91.14,88.04,86.76,85.75,84.74,83.74,81.13,80.83,79.82,78.81,77.8,76.8,75.8,74.67,73.05,72.8,71.8,71.03,69.95,71.23,70.98,69.96,70.71,69.29,69.17,68.11,68.05,67.99,66.97,66.92,69.49,65.87,64.86,64.84,64.81,65.76,64.76,64.74,63.75,62.75,61.76,61.74,60.63,59.77,58.78,58.77,57.78,57.77,56.78,56.77,55.78,55.77,54.78,54.77,53.79,53.78,52.79,52.81,51.8,50.84,50.95,49.82,48.84,48.83,47.85,47.84,46.85,45.97,45.86,44.88,43.9,43.93,42.91,42.91,41.93,40.95,40.94,39.96,38.98,38.97,37.99,37.99,37.0,36.03,36.02,37.0,37.05,37.04,36.98,37.96,37.96,40.89,41.86,41.86,41.85,41.86,41.85,41.84,41.84,41.84,41.83,40.26,40.65,41.99,41.83,41.82,41.81,41.8,41.8,41.79,37.8,40.65,37.61,40.58,41.64,41.59,39.6,35.71,34.76,34.76,34.79,34.79,33.73,33.69,33.68,32.71,32.79
+42.67,48.88,49.91,58.57,58.75,60.79,61.5,61.47,60.48,55.8,51.71,51.66,51.65,51.63,51.62,51.35,51.63,51.61,51.6,51.59,51.58,51.81,51.56,51.55,51.54,51.65,52.73,51.51,51.5,52.34,57.97,65.15,70.87,76.64,81.72,76.95,108.69,106.48,129.69,194.02,185.98,152.32,733.82,313.93,186.21,299.17,882.0,410.47,1543.65,323.87,6265.28,2252.27,700.81,659.54,461.56,571.07,466.38,386.27,301.36,284.02,264.33,225.95,171.43,175.37,170.62,183.22,196.31,180.86,168.04,162.88,158.38,151.8,143.05,150.77,122.85,113.17,109.17,109.13,109.09,109.03,106.05,95.22,94.2,94.16,94.13,99.01,121.81,128.61,148.61,155.37,167.81,171.28,167.42,188.25,148.4,134.68,129.76,118.86,113.85,122.46,125.2,127.33,139.96,132.24,140.89,688.41,615.31,410.68,274.54,206.78,229.85,240.49,137.87,132.78,123.81,161.93,121.62,192.6,153.28,99.73,493.42,676.69,833.4,1885.27,883.21,606.11,438.76,354.3,294.44,313.75,252.94,247.79,313.83,290.68,255.21,296.71,216.34,216.62,197.52,331.85,571.74,402.12,313.08,274.84,237.11,200.09,392.71,594.31,487.5,561.85,449.78,539.0,534.92,407.74,421.06,306.71,305.33,248.21,212.69,176.54,168.61,155.88,153.85,151.15,146.44,143.85,236.97,799.59,705.8,381.77,1492.45,1647.77,918.47,1038.93,689.63,583.51,5165.6,3272.32,1483.19,801.78,600.8,488.77,444.67,301.0,576.35,1385.56,1077.94,721.5,455.28,345.74,301.78,271.79,336.52,284.14,257.61,237.88,245.99,221.98,193.98,180.95,145.42,544.36,361.23,290.84,251.43,336.7,446.41,307.09,252.47,218.82,192.68,172.95,165.36,153.88,153.69,162.31,185.17,166.42,154.5,151.42,143.48,142.39,140.52,133.47,107.97,104.91,103.87,101.86,100.41,99.11,96.82,95.26,94.85,94.81,93.79,94.34,92.14,91.03,89.75,89.15,87.73,86.76,85.75,84.74,83.74,81.13,80.83,79.82,81.13,77.8,76.99,75.8,73.86,72.84,72.8,71.8,70.99,66.47,71.24,70.98,69.96,67.28,69.29,69.17,68.11,68.05,68.0,66.97,66.92,66.02,65.87,64.86,64.84,64.81,65.85,65.34,64.74,63.75,62.75,61.76,61.74,60.63,59.96,58.78,58.77,57.78,57.77,56.78,56.77,55.78,55.77,54.81,54.77,53.79,53.78,52.79,52.78,51.8,50.81,50.8,49.82,48.84,48.83,47.85,47.87,48.1,45.92,45.86,44.88,43.9,43.89,42.96,43.33,41.93,40.95,40.94,39.96,38.98,39.47,37.99,37.99,37.0,36.01,36.02,36.99,36.99,36.99,36.98,37.96,37.96,40.89,41.86,41.86,41.85,41.85,41.85,41.84,41.84,41.84,41.83,40.26,40.65,42.23,41.83,42.32,41.89,41.8,41.8,41.84,37.8,40.65,37.71,41.0,41.64,41.59,39.6,35.71,34.76,34.76,34.79,34.79,33.73,33.68,33.68,32.71,32.73
+42.67,48.82,49.81,58.14,59.17,64.28,62.03,61.47,60.48,52.67,51.68,51.66,51.65,53.58,52.68,68.51,51.66,51.61,51.73,51.59,51.58,51.57,51.56,51.55,51.54,51.53,51.52,51.51,51.5,52.34,57.97,65.15,70.87,76.64,125.42,78.42,110.48,101.43,119.45,194.02,154.73,142.24,482.38,349.65,175.13,439.69,351.62,311.65,1543.65,241.02,6186.33,2252.87,700.89,659.46,463.38,537.41,466.54,386.32,301.33,295.37,263.31,226.02,140.26,170.47,173.79,184.73,186.0,256.39,172.98,162.9,157.83,151.81,154.2,132.83,127.19,113.17,131.91,109.14,109.09,109.02,107.58,170.6,104.74,103.61,103.49,99.0,119.52,128.25,148.62,155.38,167.81,171.27,167.42,150.19,135.12,132.91,129.76,118.85,113.84,118.91,123.41,126.96,132.39,132.26,140.91,729.08,619.72,373.06,282.68,207.58,169.9,177.42,139.79,132.78,141.8,122.73,121.62,147.58,131.59,101.47,517.36,749.13,833.33,1890.63,855.44,596.94,438.92,354.43,294.59,274.63,252.94,304.17,320.65,246.37,474.56,214.16,235.64,218.65,197.53,318.62,600.77,475.2,313.16,305.54,237.14,212.46,392.78,609.69,487.5,561.94,449.86,539.14,541.04,407.74,323.68,304.6,272.23,253.68,212.61,176.54,168.63,155.89,153.85,151.13,146.46,143.9,237.1,799.91,706.19,381.92,1493.08,1648.63,918.97,1039.33,689.82,670.53,5166.57,2848.04,1215.15,801.12,600.8,488.86,410.31,301.05,765.54,1386.18,967.71,634.28,455.05,345.47,301.86,271.89,250.93,259.11,230.48,237.93,234.7,217.94,193.96,180.93,145.46,544.57,367.91,301.08,265.48,336.82,446.3,307.04,252.46,212.82,208.8,172.87,162.91,182.61,153.71,173.95,185.12,166.39,159.72,152.63,143.49,142.38,140.33,128.52,107.91,104.9,103.87,101.86,99.85,98.82,96.82,95.26,95.29,94.81,95.6,94.03,92.14,90.81,89.75,88.78,88.76,86.76,88.39,84.84,86.85,81.13,80.83,79.82,78.81,77.8,76.8,75.8,73.82,72.82,72.8,71.8,70.99,66.47,71.23,70.98,69.96,67.28,69.28,69.17,68.11,68.05,67.99,66.97,66.92,65.91,65.87,64.93,64.84,64.81,65.76,64.76,64.74,63.75,62.75,61.76,61.89,60.63,59.77,58.78,58.77,57.78,57.77,56.78,56.77,55.82,55.8,54.78,54.78,53.79,53.78,52.79,52.81,52.14,50.81,50.8,49.82,48.84,48.83,47.85,47.84,46.97,45.87,45.86,44.88,43.9,43.9,42.91,42.91,41.93,40.95,40.94,39.96,38.98,38.97,37.99,37.99,37.0,36.01,36.02,36.99,36.99,36.99,36.98,37.96,37.96,40.89,41.87,41.86,41.85,41.85,41.85,41.84,41.84,41.84,41.83,40.26,40.65,41.99,41.83,47.91,41.81,41.8,41.8,41.79,37.8,40.76,37.61,61.71,41.64,41.59,41.42,35.85,35.66,34.76,34.79,34.79,33.73,33.68,34.57,32.85,32.78
+42.76,50.1,49.97,58.64,58.93,62.94,62.66,66.12,60.48,54.15,51.68,51.87,51.65,51.63,52.0,52.73,51.75,65.24,53.82,52.42,51.6,53.06,52.76,51.55,51.7,51.58,51.53,51.51,51.5,52.45,57.97,68.89,70.87,78.32,81.44,76.66,107.99,101.43,122.27,225.25,154.73,147.1,506.76,259.19,163.01,325.78,333.84,311.66,1543.42,247.69,6253.99,2496.88,801.28,722.28,467.05,520.33,515.42,441.28,321.15,330.13,313.67,238.44,140.17,170.4,168.1,183.27,179.06,172.27,171.11,169.38,165.08,185.04,166.26,131.97,130.96,113.15,138.67,118.23,110.06,109.02,106.03,95.21,94.18,94.16,109.12,112.5,130.03,151.22,148.63,159.02,167.77,171.25,167.42,150.18,137.92,132.91,136.68,125.4,127.44,139.85,163.69,133.24,132.35,132.22,159.01,694.34,622.68,402.08,274.59,206.73,169.86,152.79,137.85,132.76,129.65,122.69,121.61,142.09,122.4,186.65,493.27,708.8,833.21,1931.49,855.28,596.88,592.97,471.77,331.49,277.54,268.58,274.09,247.48,259.95,242.38,214.21,216.34,236.47,197.5,318.53,569.74,402.12,313.06,274.82,245.35,200.09,392.75,594.41,487.54,573.41,449.93,539.22,676.37,407.87,323.75,304.69,272.34,232.26,212.64,176.55,170.04,161.75,192.1,163.63,161.3,144.91,289.95,855.43,767.71,437.02,1768.9,2212.22,918.72,1038.93,689.57,583.4,5164.83,2847.22,1225.15,892.9,600.69,488.95,410.28,300.76,576.71,1385.25,966.99,634.85,455.01,345.31,301.57,271.71,250.78,238.71,230.3,237.81,234.65,214.8,193.96,180.95,145.4,544.2,361.19,290.89,251.41,336.74,446.82,307.16,256.51,224.23,192.68,172.88,162.88,153.89,153.71,162.37,204.45,166.41,154.51,151.44,143.48,142.4,140.62,128.52,107.91,106.55,103.87,101.86,99.85,98.82,96.82,95.26,94.85,94.8,93.79,94.4,92.76,90.81,89.75,88.78,87.73,86.76,85.75,85.24,83.74,81.13,80.83,79.82,78.81,77.8,76.8,75.87,73.97,72.82,72.8,71.8,70.99,66.47,71.23,70.98,69.96,67.28,69.28,69.17,68.11,68.05,73.33,66.97,67.69,67.14,67.4,64.93,64.84,64.81,65.76,64.76,64.74,63.75,62.75,61.76,61.74,60.63,59.77,58.78,58.77,57.85,57.83,56.78,56.77,55.78,55.79,54.78,54.77,53.79,53.78,52.79,52.78,51.81,50.81,50.8,49.82,48.84,48.83,47.85,47.84,46.85,45.87,45.88,44.88,43.9,43.89,42.91,42.95,41.95,40.95,40.94,39.96,38.98,38.97,37.99,37.99,37.0,36.01,36.02,36.99,36.99,36.99,36.98,37.96,37.96,40.89,41.86,41.86,41.85,42.82,41.95,41.84,42.03,41.87,41.83,40.34,41.26,41.99,41.83,42.55,41.81,41.8,41.8,41.82,37.88,41.42,37.61,40.58,41.64,41.59,39.6,35.72,34.76,38.21,35.03,35.75,33.75,33.78,33.68,33.21,32.75
+42.67,48.82,49.81,58.14,58.75,60.79,61.5,61.47,60.48,52.67,51.68,53.51,51.81,51.85,51.8,51.35,51.86,51.61,51.6,51.59,51.58,51.57,51.56,51.55,51.54,51.53,51.52,51.51,51.5,52.34,57.97,65.15,70.87,76.64,81.44,76.66,107.99,112.27,119.46,194.03,154.74,142.24,482.42,268.86,163.01,582.06,379.15,337.01,1543.53,310.48,6190.41,2252.42,700.81,659.39,441.91,635.74,580.73,457.64,313.55,283.95,263.25,297.43,170.76,170.42,168.1,184.73,177.65,172.27,168.0,162.88,157.83,151.81,137.96,131.97,122.08,113.18,109.19,109.14,109.09,109.04,106.04,95.22,94.19,94.15,94.12,120.37,119.51,128.24,148.62,155.39,167.79,175.14,167.39,150.2,135.11,132.89,133.58,118.86,156.18,126.22,123.4,126.95,132.36,132.25,140.88,688.33,610.84,429.81,296.41,251.26,169.87,158.37,137.88,184.25,127.52,126.69,154.35,131.69,158.83,132.39,539.55,676.36,867.25,1884.86,855.2,596.77,438.84,354.4,294.52,274.63,252.98,247.81,247.53,286.85,242.28,232.42,216.34,216.61,197.53,318.59,658.23,402.12,313.06,274.87,237.11,200.09,392.75,594.31,487.46,561.8,449.74,539.0,534.88,407.71,334.81,305.75,281.8,245.93,266.89,182.59,168.6,155.88,153.84,151.11,146.46,160.01,272.93,800.17,743.33,407.12,1500.22,1649.66,919.82,1489.47,690.33,584.17,5165.99,2848.37,1340.83,880.62,601.09,622.76,410.58,300.94,762.76,1416.75,968.55,634.85,455.47,347.86,311.26,272.08,269.97,238.89,230.45,237.88,234.81,219.71,193.96,180.93,145.4,544.38,361.11,290.81,251.36,336.61,446.22,306.98,252.42,212.74,192.63,173.51,162.88,153.87,153.7,162.33,185.16,168.11,203.12,178.06,143.48,142.4,140.34,128.52,107.91,104.91,103.87,101.86,101.36,98.82,96.82,95.26,94.85,94.8,93.79,93.75,92.14,91.17,89.75,88.78,87.73,90.16,85.75,84.74,83.74,81.21,80.83,79.82,78.81,77.8,76.8,75.8,73.82,72.82,72.8,71.8,70.99,66.47,71.89,71.93,72.97,67.28,69.28,69.17,77.21,69.01,68.0,66.97,66.92,65.91,65.87,64.86,64.84,64.81,65.76,64.76,64.74,64.03,62.75,61.76,61.74,60.64,59.77,58.78,58.84,57.78,57.77,56.78,56.77,55.78,55.77,54.78,54.77,53.79,53.78,52.79,52.78,51.8,50.81,50.8,49.82,48.84,48.83,47.85,47.84,46.85,45.87,45.86,44.88,43.9,43.89,42.91,42.91,41.94,40.97,40.94,39.96,38.98,38.97,37.99,38.02,38.56,36.01,36.02,36.99,37.08,36.99,36.98,37.96,37.96,40.89,41.86,41.86,41.85,41.85,41.85,41.84,42.01,41.84,41.83,40.26,40.65,41.99,41.83,41.82,41.81,42.02,41.81,42.44,37.8,40.89,37.61,53.76,41.64,41.59,39.6,35.71,34.76,34.76,34.79,38.66,33.73,33.68,34.2,38.46,33.0
+43.02,48.82,50.03,58.49,58.75,60.79,61.5,61.47,60.47,52.67,51.71,51.66,51.65,52.07,51.62,51.35,51.63,52.29,51.97,51.67,51.58,51.57,51.68,51.55,51.54,52.34,51.75,52.35,51.67,59.28,58.22,69.34,73.46,76.64,81.44,76.76,134.46,115.88,144.31,242.13,173.16,142.24,492.3,264.29,163.01,280.44,333.85,311.63,1543.53,240.99,6186.22,2252.72,700.81,659.39,450.77,513.77,515.42,389.47,302.56,478.26,479.83,421.51,158.6,185.15,185.9,209.08,192.55,175.54,264.49,162.87,159.36,151.81,137.96,132.48,122.08,113.18,109.19,109.14,111.04,109.05,136.15,98.26,94.19,94.16,94.12,99.01,119.53,128.27,148.64,155.39,167.83,233.35,195.2,150.16,135.09,132.9,129.75,118.84,113.82,118.9,128.14,136.82,132.38,132.22,140.87,688.37,610.81,373.03,274.52,212.21,172.41,157.81,137.87,138.28,134.57,122.73,121.63,121.54,122.68,99.74,493.53,676.69,833.33,1885.41,855.6,597.0,439.01,354.36,294.52,274.67,265.0,249.46,260.08,252.26,571.42,214.17,216.36,216.63,197.55,318.62,569.7,402.06,312.98,277.83,237.11,200.06,392.68,594.17,487.34,561.71,449.67,538.82,534.83,407.74,323.65,304.62,272.34,232.31,212.68,176.59,168.66,155.91,156.21,178.66,146.95,143.94,249.42,799.85,818.18,381.92,1493.08,1648.74,919.22,1081.76,690.13,628.04,5181.03,3003.57,1215.15,801.2,600.63,488.9,410.28,300.69,577.38,1386.1,977.07,634.51,455.08,345.52,301.78,271.85,250.88,238.74,230.34,244.21,251.14,214.76,193.95,180.93,145.37,544.01,361.02,290.79,251.43,336.79,454.95,307.11,252.41,212.78,192.7,172.88,162.89,153.88,153.71,162.35,185.14,166.38,154.48,151.41,143.46,142.37,140.32,128.52,108.24,104.91,103.87,101.86,99.85,98.82,96.82,95.26,95.47,94.8,93.79,93.75,92.14,90.81,89.75,88.78,87.73,86.76,85.75,84.74,83.75,81.13,80.83,79.82,78.81,77.8,76.8,75.8,73.82,72.82,72.8,71.8,70.99,66.47,71.23,70.98,69.96,67.28,69.28,69.17,68.11,68.05,67.99,66.97,66.92,65.91,65.87,64.86,64.84,64.81,65.76,64.76,64.74,63.75,62.75,61.76,61.74,60.63,59.77,58.78,58.77,57.78,57.77,56.78,56.77,55.78,55.87,54.78,54.77,53.87,53.78,52.79,52.78,51.8,50.81,50.8,49.82,48.84,48.83,47.85,47.84,46.85,45.87,45.86,44.88,43.9,43.89,42.91,42.91,41.93,40.95,40.94,39.96,38.98,38.97,37.99,37.99,37.0,36.01,36.02,36.99,36.99,36.99,36.98,37.96,37.96,40.89,41.86,41.94,41.87,41.85,41.85,41.84,41.85,41.84,41.83,40.26,40.65,41.99,41.83,42.11,41.81,41.84,41.91,41.79,37.97,40.65,37.61,40.58,41.64,41.59,39.6,35.71,34.76,34.76,34.79,34.79,33.73,33.77,33.72,32.71,32.8
+43.27,48.82,50.09,58.77,60.16,65.37,61.53,61.5,61.3,52.89,51.68,51.66,51.65,51.63,51.62,51.35,51.63,51.61,51.6,51.59,62.52,53.5,51.56,51.55,51.9,51.53,51.52,51.51,51.5,52.34,58.28,74.05,71.58,81.34,81.64,76.66,109.68,101.42,120.51,194.02,154.73,142.23,662.87,344.76,194.59,353.7,363.5,327.66,1546.94,241.0,6325.87,2418.39,703.97,727.28,501.29,514.01,466.38,386.27,301.33,284.11,263.33,226.02,140.24,170.45,168.12,197.25,205.69,192.9,167.98,165.81,194.63,191.41,137.94,131.96,122.05,113.15,109.17,109.14,109.09,109.04,106.05,108.04,104.09,99.36,94.12,100.64,158.49,132.08,148.63,155.38,184.43,184.61,175.46,189.68,135.12,132.9,129.76,120.52,113.84,119.27,183.47,128.04,132.38,132.25,161.59,688.45,659.01,395.03,274.56,213.78,169.89,152.81,137.88,135.49,123.83,183.2,144.74,142.09,126.85,99.72,493.32,676.6,833.33,1885.41,855.52,782.77,522.17,371.64,363.88,274.63,284.75,303.08,285.8,286.85,255.96,227.73,229.64,262.28,203.45,356.15,854.6,736.84,367.61,281.71,260.2,200.06,392.92,594.31,487.46,561.9,449.82,539.09,658.23,407.64,323.51,304.51,272.23,232.21,212.68,176.5,168.55,177.01,174.96,160.7,171.39,143.9,237.0,799.38,705.8,407.12,1493.72,1649.41,1087.51,1055.44,826.64,583.46,5165.41,2850.12,1390.21,801.86,601.15,489.25,494.25,337.68,948.64,1494.04,968.46,634.68,455.24,345.86,301.91,271.97,256.45,238.92,235.17,237.93,236.37,214.81,193.98,180.97,145.4,544.28,361.25,290.78,251.34,431.64,446.61,307.01,252.45,212.75,192.67,172.87,162.89,155.15,159.09,175.36,239.48,167.49,157.13,151.46,146.26,145.52,152.76,128.52,108.7,104.91,103.87,101.86,99.85,98.82,96.82,95.26,94.85,94.8,93.79,93.75,92.52,91.56,89.75,88.78,87.73,86.76,85.75,84.74,83.74,81.13,80.83,79.82,79.72,77.85,76.88,75.8,74.63,73.91,72.8,71.8,71.06,66.47,71.23,70.98,69.96,67.88,69.29,69.17,68.11,68.05,68.0,66.97,66.92,65.91,65.87,65.61,64.84,64.81,65.76,64.76,64.74,63.75,62.75,61.76,61.74,60.63,59.77,58.78,58.77,57.78,57.77,56.78,56.77,55.78,55.77,54.83,54.77,53.79,53.78,52.79,52.78,52.21,50.96,50.8,49.83,48.84,48.86,47.85,47.84,46.85,45.87,45.86,44.88,43.9,43.89,42.91,42.91,41.93,40.95,40.94,39.96,38.98,38.97,37.99,37.99,37.0,36.02,36.02,37.0,36.99,36.99,36.98,37.96,37.96,40.89,42.55,41.86,41.85,41.85,41.88,41.84,41.84,41.84,41.83,40.26,40.65,42.39,41.83,41.82,41.81,41.8,41.8,41.79,37.8,40.65,37.61,40.58,41.64,41.59,39.6,35.71,34.76,34.76,34.88,34.83,33.73,33.68,33.68,32.71,32.77
+42.76,48.82,49.82,58.14,58.75,60.79,61.5,61.47,60.47,52.67,51.68,51.66,51.65,51.63,51.62,51.35,52.23,51.61,51.6,51.59,51.58,51.57,51.56,51.55,51.54,51.53,51.52,51.51,51.5,52.34,57.97,65.15,70.87,76.88,81.44,76.66,107.99,101.43,119.45,194.03,154.74,142.24,482.39,265.58,163.01,352.72,400.29,311.64,1902.14,416.12,6715.66,2252.42,1818.72,1644.51,476.75,573.4,466.43,386.31,301.29,284.08,263.33,226.04,140.24,187.21,175.07,183.27,177.69,205.21,240.98,167.58,157.76,151.77,211.09,145.65,124.78,113.16,109.17,109.14,109.1,109.04,106.05,108.74,94.2,116.15,119.36,104.08,119.51,164.71,192.13,286.49,458.11,323.86,167.38,150.2,144.77,146.61,129.76,118.86,113.85,118.93,127.39,141.92,186.85,151.68,140.89,688.49,610.81,373.1,283.71,260.03,197.04,152.82,137.85,142.63,263.34,168.19,126.65,136.04,135.37,118.89,688.76,696.84,1006.9,2382.32,1209.59,596.94,482.06,398.75,361.14,287.19,252.98,247.86,247.6,246.42,242.36,214.2,216.39,219.01,197.55,318.68,569.95,402.22,313.16,274.84,237.09,200.05,522.6,648.53,494.48,579.16,449.63,538.86,535.31,546.2,324.93,304.56,272.27,232.26,212.63,176.52,168.6,155.84,153.8,158.34,146.45,160.01,584.92,1061.7,728.4,381.98,2159.42,2631.32,958.42,1236.1,770.42,601.37,5349.05,3155.72,1216.05,801.12,990.61,547.95,412.06,308.94,633.43,1502.47,968.38,634.51,455.2,345.49,301.76,271.82,286.53,243.1,234.22,261.41,235.35,214.82,194.01,180.97,158.04,586.85,361.6,290.86,251.42,336.68,446.24,307.07,274.6,212.77,192.7,175.19,164.87,158.77,153.73,162.32,185.13,176.2,156.95,151.46,143.48,142.38,140.32,128.53,108.93,105.43,106.64,101.86,99.85,98.82,99.05,95.26,94.85,94.81,93.79,93.75,92.14,90.81,89.75,88.78,87.73,86.76,85.75,84.74,83.74,81.13,80.83,79.82,78.81,79.65,76.8,75.8,73.82,72.82,72.8,71.8,70.99,66.47,75.55,73.0,72.63,67.28,69.28,69.17,68.11,69.8,68.0,67.24,66.92,66.45,65.87,64.86,64.84,64.81,65.76,65.14,65.31,63.97,62.81,61.76,61.74,60.64,59.78,58.78,58.77,57.78,57.77,56.78,56.77,55.78,55.77,54.99,54.77,53.79,53.78,52.79,52.78,51.8,50.81,50.81,49.82,48.84,48.83,47.85,47.84,46.85,45.87,45.86,44.88,43.9,44.03,42.91,42.92,41.96,40.95,40.94,39.96,38.98,38.97,37.99,37.99,37.0,36.01,36.02,36.99,36.99,36.99,36.98,37.96,37.96,40.89,41.86,41.86,41.85,41.85,41.85,41.84,41.84,41.84,41.83,41.53,40.65,41.99,41.83,41.82,41.81,41.81,41.8,41.79,37.8,40.65,37.61,40.58,41.64,41.59,39.6,35.71,34.76,34.76,34.79,34.79,33.77,34.18,33.72,32.75,32.8
+42.67,48.82,49.81,60.53,59.03,61.16,61.72,61.5,60.48,52.95,52.47,53.78,55.66,54.24,54.18,53.67,51.63,51.61,51.6,51.59,51.58,51.57,61.98,58.07,74.77,52.97,51.52,51.51,51.67,52.49,64.74,65.15,70.87,76.64,83.48,78.61,121.78,105.53,146.85,197.58,154.74,155.44,517.18,259.2,180.3,281.2,354.54,328.58,1881.24,250.21,6186.33,2252.42,700.81,659.48,481.98,602.42,466.32,386.09,301.19,284.05,263.34,225.9,140.19,170.4,168.07,183.22,177.62,172.31,260.22,287.39,278.99,167.11,144.0,207.95,179.54,131.87,116.52,132.49,125.54,120.87,108.21,95.22,94.2,94.7,98.71,99.0,119.53,152.67,215.86,195.62,167.83,171.3,167.43,150.19,135.13,132.91,129.78,118.87,113.85,118.92,123.43,154.82,132.38,132.25,140.91,688.56,610.91,373.13,274.59,206.82,186.94,152.86,137.87,145.67,126.27,122.72,121.63,121.53,122.43,99.74,514.93,726.13,833.21,2678.79,908.35,596.94,597.58,354.36,357.07,355.92,288.78,314.19,286.77,274.1,252.97,236.6,236.41,216.66,197.57,318.72,569.87,402.18,313.08,274.87,237.16,200.16,392.85,594.5,487.54,561.9,466.07,558.62,564.77,453.24,323.65,363.61,272.31,247.45,231.6,178.07,285.41,236.79,161.52,164.13,146.51,227.03,281.91,886.4,947.72,423.26,1511.25,1649.3,1055.94,1350.53,690.01,831.63,5349.06,2849.54,1841.25,842.01,632.27,489.25,410.58,300.96,816.7,1485.65,968.21,683.49,455.35,345.52,301.72,271.74,250.84,238.69,230.32,237.8,234.58,214.7,193.96,181.0,145.41,544.31,361.6,290.94,268.14,352.52,594.12,343.51,259.35,212.82,205.62,172.91,165.11,160.83,155.76,172.13,191.03,166.44,154.52,151.43,143.48,142.38,140.32,128.52,107.91,104.9,103.87,101.85,99.85,98.83,96.82,95.26,94.85,95.0,94.11,95.8,92.52,90.81,89.75,88.8,87.73,86.76,85.75,84.74,83.74,81.13,80.83,79.82,78.81,77.8,76.8,75.8,73.82,73.27,72.8,71.86,70.99,66.47,75.83,70.98,69.96,67.28,69.28,69.17,68.15,68.05,68.0,66.97,66.92,65.91,65.87,64.86,64.84,64.81,65.76,64.76,64.74,63.75,62.75,61.76,61.74,60.63,59.77,58.78,58.86,58.44,57.77,56.78,56.77,55.78,55.77,54.78,54.77,53.79,53.78,52.79,52.78,51.8,50.81,50.8,49.82,48.84,48.83,47.85,47.84,46.86,45.87,45.87,44.88,43.9,43.89,42.91,42.91,42.24,40.95,40.94,39.96,38.98,38.97,37.99,37.99,37.06,36.01,36.02,36.99,36.99,36.99,36.98,37.97,38.32,40.89,41.86,41.86,41.85,41.85,41.85,41.84,43.49,41.84,41.83,40.26,40.65,41.99,41.83,41.98,41.81,41.8,41.8,41.79,37.8,40.65,37.61,40.58,41.64,41.59,39.99,35.72,34.78,35.0,35.01,35.8,33.73,33.68,33.68,32.71,32.73
+42.67,48.82,49.81,58.14,58.75,62.06,63.48,61.72,60.48,56.33,51.71,51.66,51.65,51.63,51.62,53.26,51.64,51.61,51.6,51.59,51.58,52.15,52.68,52.31,51.62,51.53,51.52,51.51,51.5,52.34,57.97,65.15,70.87,76.64,81.44,76.66,107.99,101.43,120.51,194.03,154.74,142.24,482.41,259.2,260.66,445.8,363.5,316.9,1543.59,240.97,6186.0,2251.98,700.55,659.18,441.97,767.54,503.24,410.35,334.31,284.05,263.3,226.02,140.24,179.18,178.36,255.25,182.49,172.33,168.04,162.93,157.82,151.8,137.96,153.98,199.91,113.53,109.17,261.62,114.78,114.3,127.46,104.68,98.88,95.48,94.11,106.84,191.4,128.25,148.64,155.38,167.79,172.06,167.42,150.18,135.12,155.13,132.72,118.85,114.54,118.91,123.42,126.97,132.39,132.25,140.91,688.56,610.91,373.1,274.56,206.8,169.9,181.46,170.65,138.28,141.3,122.69,121.62,121.53,122.43,99.74,493.42,978.6,899.55,1926.35,1097.79,1304.34,551.01,364.91,380.9,274.63,252.92,247.85,247.58,246.34,242.3,214.16,216.36,216.58,218.99,318.53,569.74,402.12,313.01,274.87,290.69,201.49,429.16,594.5,487.46,561.8,449.82,538.95,534.92,407.77,323.73,304.66,291.75,332.22,222.75,184.68,168.6,185.21,153.84,186.46,479.34,148.23,237.12,799.91,706.13,381.86,1494.05,1716.94,974.77,1039.73,690.07,583.62,5566.61,3150.22,1468.99,801.28,601.59,505.25,484.66,300.8,593.51,1386.18,967.87,634.74,455.28,345.47,302.02,271.87,250.88,238.74,230.33,237.81,234.58,214.72,193.91,180.91,145.39,578.72,362.64,296.74,251.49,336.79,446.43,307.07,259.35,212.76,192.67,172.87,162.88,153.91,155.39,162.33,185.16,166.42,154.5,159.27,143.49,142.39,140.33,128.52,107.91,104.9,103.87,101.86,99.85,98.82,96.82,95.26,95.53,95.4,93.79,93.75,92.14,90.81,89.75,88.78,87.86,87.64,85.75,85.51,83.74,81.13,80.83,79.82,78.81,77.8,76.8,75.8,73.82,72.82,72.8,71.8,70.99,66.47,71.24,70.98,71.65,67.28,69.29,69.17,68.12,68.49,69.21,73.62,66.92,65.99,65.87,72.03,64.84,64.98,65.8,64.76,64.74,63.75,62.75,61.76,61.74,60.67,59.87,58.78,58.77,57.79,81.82,57.23,56.91,55.78,55.77,54.78,54.91,54.59,53.78,52.79,52.78,51.8,50.81,50.81,49.82,48.84,48.83,47.85,47.84,46.85,45.87,45.86,44.88,43.9,43.89,42.91,42.91,41.93,40.95,40.99,40.06,39.14,38.98,37.99,37.99,37.0,36.01,36.02,36.99,36.99,36.99,36.98,37.96,37.96,40.89,41.86,41.86,41.87,41.86,41.85,41.84,41.84,41.84,41.83,40.26,40.65,41.99,41.83,41.82,41.81,41.8,41.8,41.79,37.8,40.65,37.61,40.58,41.64,41.59,39.6,35.71,34.76,34.76,34.99,35.2,33.89,33.84,33.84,32.71,32.73
+42.67,49.46,49.82,59.35,60.98,62.48,61.5,61.47,60.95,81.64,52.55,51.92,51.65,54.44,60.77,52.21,55.75,51.64,53.27,52.62,52.16,52.15,51.7,51.8,53.22,51.62,51.8,51.51,51.89,52.34,57.97,65.15,70.87,76.64,81.44,76.66,107.99,101.43,119.46,194.04,154.74,144.03,482.36,259.19,163.01,280.46,333.87,330.43,1588.62,241.89,6185.88,2252.25,700.96,720.17,472.89,522.9,543.44,700.11,427.59,341.38,360.11,226.02,142.83,170.43,190.94,186.15,205.69,237.54,209.74,166.4,179.93,163.05,137.96,131.98,130.53,270.93,109.86,114.56,109.27,109.04,106.05,99.42,100.06,99.65,102.25,99.0,119.53,128.25,172.65,165.11,370.74,204.78,168.64,150.16,155.48,134.68,134.02,125.0,116.27,121.38,145.14,134.81,132.38,132.25,140.9,959.94,619.72,455.88,334.58,239.16,255.61,156.69,160.72,132.78,123.8,122.72,121.62,121.53,127.61,99.73,493.37,676.56,833.21,1885.13,855.44,1128.67,460.79,364.91,294.54,274.61,252.9,276.88,247.55,246.38,242.34,214.18,216.4,216.66,197.55,318.65,569.83,402.19,313.12,274.91,237.16,200.12,392.81,594.5,487.54,768.11,560.72,672.09,587.65,437.44,343.98,304.64,280.92,256.91,269.62,178.07,179.64,157.15,153.89,203.06,150.42,143.87,323.93,839.08,749.37,382.04,1493.08,1648.09,918.55,1227.89,918.21,644.22,5164.65,2944.87,1214.52,802.03,600.47,488.69,410.35,300.78,576.59,1385.56,967.38,634.62,459.98,345.36,301.55,271.69,262.07,259.11,230.28,237.77,234.55,214.72,193.94,180.95,145.41,556.26,361.41,290.89,251.47,336.82,446.46,314.76,252.59,240.79,192.72,172.91,162.88,154.14,153.72,165.22,195.69,166.43,154.5,174.27,144.6,142.39,140.34,128.53,107.91,104.9,103.87,101.9,100.3,99.56,96.82,95.26,94.85,97.22,93.79,94.79,92.86,90.81,89.75,88.8,88.41,86.76,85.75,84.74,83.74,81.5,88.66,79.82,78.81,77.8,76.8,75.8,73.82,72.82,72.8,71.8,70.99,66.47,71.23,70.98,69.96,67.28,69.29,69.17,68.11,68.05,67.99,66.97,67.42,65.91,66.96,69.34,65.23,64.81,65.76,64.84,64.74,63.75,62.75,61.76,61.74,60.63,60.88,58.78,58.77,57.78,57.77,56.78,56.77,55.87,55.77,54.78,54.77,53.79,53.78,52.83,52.81,51.82,50.81,50.8,49.82,48.84,48.83,47.85,47.84,46.9,45.87,45.86,44.88,43.9,45.18,42.91,42.96,41.93,40.95,40.94,39.96,38.98,38.97,37.99,37.99,37.0,36.01,36.02,37.12,36.99,36.99,36.98,37.96,37.96,40.89,41.86,41.86,41.85,41.85,41.85,41.84,41.84,41.84,41.84,40.27,40.65,41.99,41.83,41.82,41.81,41.8,41.8,41.79,37.97,40.73,37.61,40.58,42.32,41.59,39.89,36.67,34.88,34.76,34.79,34.9,33.75,33.68,33.68,32.71,32.73
+42.67,48.82,49.81,59.37,68.41,61.65,61.5,61.8,60.87,53.41,55.98,77.25,80.25,98.09,82.89,51.49,94.7,89.89,84.35,82.78,51.71,52.39,51.56,51.55,51.96,51.53,51.52,51.51,51.5,52.34,57.97,65.15,70.87,76.64,81.44,76.66,107.98,133.88,119.45,194.02,161.79,142.24,678.9,266.23,178.39,280.47,391.2,348.69,1543.79,240.99,6186.22,2272.53,843.42,797.39,450.77,834.62,466.38,386.18,301.26,284.02,263.25,225.97,140.21,170.43,168.1,433.05,198.61,192.9,187.65,206.5,160.57,173.82,140.7,131.96,167.47,122.47,317.52,123.34,109.1,207.44,120.87,97.7,94.2,94.16,94.13,101.47,120.18,137.72,148.62,155.37,167.79,171.28,178.68,158.94,138.86,149.72,218.72,118.85,113.85,118.92,127.43,126.98,132.39,132.26,140.91,688.56,610.84,373.03,274.52,206.76,169.87,159.51,142.73,151.49,164.3,122.7,123.91,154.54,125.34,99.73,532.07,676.44,833.03,1884.86,855.44,596.88,438.76,379.93,309.48,284.24,252.92,247.79,247.53,246.32,242.25,274.01,216.33,217.33,197.52,370.42,597.08,409.23,313.13,274.87,237.14,200.13,392.85,594.45,487.58,561.76,449.56,538.77,585.53,407.67,443.44,307.69,272.29,232.26,212.67,176.55,177.62,203.23,153.87,168.21,152.67,143.89,289.95,855.42,743.34,382.1,1611.95,1670.5,919.13,1039.53,689.94,583.62,5165.41,2847.71,1214.77,801.03,1000.95,574.07,472.26,310.72,577.38,1385.71,967.14,634.22,498.76,345.28,302.87,271.89,250.89,238.77,230.41,237.94,234.7,214.78,193.94,180.93,145.4,544.18,361.17,290.86,251.42,336.71,446.39,307.03,252.43,212.77,192.66,172.9,162.89,153.89,153.71,162.33,195.39,167.9,154.54,151.44,166.43,150.11,140.33,128.52,107.91,104.9,103.87,101.85,102.77,101.53,96.82,95.26,94.85,94.81,94.88,95.46,92.14,90.81,89.75,88.78,87.73,86.76,85.75,84.74,84.11,84.12,80.83,79.82,78.81,77.8,76.8,75.8,73.82,73.61,72.8,71.8,71.06,66.47,71.23,71.27,69.96,67.28,69.28,69.17,68.11,68.27,68.35,66.97,67.74,65.91,66.46,65.05,64.84,64.81,65.76,64.76,64.76,63.75,62.75,61.76,61.74,60.63,59.77,58.78,58.77,57.78,57.77,56.78,56.77,55.78,55.77,54.78,54.77,53.79,54.28,52.79,52.78,51.8,50.81,50.8,49.82,48.84,48.83,47.86,47.84,46.85,45.87,45.86,44.88,43.9,44.01,42.91,42.91,41.93,40.95,40.94,39.96,38.98,38.97,37.99,37.99,37.0,36.01,36.02,36.99,36.99,36.99,36.98,37.96,37.96,40.89,41.86,41.86,41.85,41.91,41.85,41.84,41.84,41.84,41.83,40.26,40.65,41.99,41.83,41.82,41.81,41.8,41.8,41.79,37.8,40.65,37.61,40.58,41.64,42.15,40.02,36.31,34.89,34.98,34.87,41.54,33.73,33.68,33.68,33.22,32.73
+42.67,48.82,49.81,58.31,58.75,60.79,61.5,61.47,60.48,52.67,51.87,51.66,51.65,52.4,52.78,51.43,52.05,51.61,51.66,51.59,51.58,51.57,51.56,51.55,51.54,51.53,51.52,51.53,51.5,52.34,57.97,65.15,70.87,76.64,81.44,76.66,107.98,101.43,119.45,194.02,154.73,142.24,482.38,259.21,163.02,280.48,333.91,311.68,1543.59,241.03,6186.45,2252.72,700.89,659.54,471.36,786.22,1009.21,455.8,365.51,284.05,263.25,226.0,140.23,170.45,168.14,183.29,177.67,172.29,175.52,211.39,160.02,151.81,137.97,131.98,122.08,113.16,116.89,109.48,133.49,112.6,109.48,95.21,110.23,98.22,94.1,115.01,142.24,128.24,148.61,155.36,167.77,171.25,167.42,159.51,137.45,166.86,130.2,141.51,115.57,119.27,125.56,126.95,132.36,132.24,160.55,909.58,613.84,372.97,274.47,206.75,169.89,152.82,137.85,132.76,123.83,122.72,121.6,121.49,122.39,101.76,664.83,743.77,1122.54,2149.65,864.77,597.0,508.38,455.61,350.43,284.24,253.06,247.86,247.6,246.4,242.34,214.18,216.39,216.63,197.55,318.65,569.82,402.18,313.13,274.89,237.16,203.47,466.2,1003.26,540.86,639.67,477.73,572.62,535.01,407.77,323.68,304.6,272.25,232.21,212.59,176.51,168.6,155.88,153.84,151.1,146.45,167.87,237.06,799.96,723.35,398.62,1492.45,1647.98,994.67,1040.14,812.23,658.42,5329.48,2849.71,1468.96,801.69,609.57,489.3,500.81,301.12,577.66,1422.19,1104.94,783.69,459.98,396.9,585.97,372.32,250.93,254.29,231.43,237.92,234.68,214.77,193.98,181.02,168.05,570.7,361.54,340.75,260.95,357.93,446.52,307.16,252.44,219.26,204.46,172.85,168.15,159.68,156.33,173.26,185.16,166.42,154.55,151.46,145.74,147.25,140.34,134.69,108.13,105.24,103.87,101.86,99.85,99.08,96.94,95.26,97.33,94.81,93.79,93.75,92.14,90.81,89.75,89.21,87.73,86.76,85.75,84.74,83.74,81.13,80.83,79.82,78.81,77.8,76.8,75.8,73.82,72.82,72.8,71.8,70.99,66.47,71.23,70.98,69.96,67.28,69.28,69.17,68.12,68.05,68.0,66.97,68.33,65.91,65.87,64.86,64.84,66.97,65.76,64.76,64.74,63.75,62.81,61.76,61.74,60.63,59.77,58.78,58.77,57.78,57.77,56.78,56.77,55.78,55.79,59.91,54.77,53.79,53.78,52.88,52.78,51.8,50.81,50.8,49.82,48.84,48.83,47.85,47.84,46.86,45.87,45.86,44.88,43.9,43.89,42.91,42.91,41.93,40.95,40.94,39.96,38.98,38.97,37.99,37.99,37.0,36.01,36.02,37.0,36.99,36.99,36.98,37.96,37.96,40.89,41.86,41.86,41.85,41.85,41.85,41.92,41.84,41.84,41.83,40.26,40.65,41.99,44.2,42.41,41.86,42.01,41.8,41.79,37.82,41.02,38.1,40.58,41.7,41.59,39.6,35.72,34.76,34.76,34.79,34.79,33.73,33.68,33.68,32.71,32.73
+46.71,48.82,50.05,63.0,59.63,60.8,61.5,61.5,60.48,52.67,51.68,51.66,51.65,51.63,51.62,51.35,51.63,52.29,56.65,51.74,51.58,51.61,51.56,51.75,55.41,51.53,51.52,51.51,51.5,52.34,57.97,65.15,71.49,76.64,81.44,76.94,111.4,101.44,119.45,195.99,154.73,142.23,482.35,259.2,182.24,293.0,400.29,355.75,1546.94,260.52,6406.31,2659.95,1256.86,972.78,445.47,513.77,466.43,386.27,301.37,283.95,263.17,232.93,140.2,173.51,168.09,183.24,177.69,172.27,168.03,162.87,157.8,151.8,137.96,138.06,122.05,115.29,110.86,168.27,137.79,132.64,125.33,95.21,94.2,94.69,98.99,109.76,124.53,128.25,148.62,155.38,167.81,171.29,168.64,184.05,145.8,132.91,145.21,124.2,123.38,127.39,123.42,126.98,144.99,155.78,220.6,843.12,610.77,552.25,276.59,206.76,185.55,152.83,138.45,192.39,200.89,146.13,124.68,132.11,129.17,110.02,542.06,806.0,937.86,2155.15,864.78,765.29,457.35,389.92,389.79,309.26,305.79,247.81,247.55,246.32,242.3,214.16,216.36,216.63,197.55,318.65,569.87,402.22,338.5,299.07,262.95,200.1,392.81,594.45,487.71,672.07,472.69,539.0,535.1,448.42,351.11,304.64,272.33,232.23,212.59,176.55,168.64,155.91,159.84,151.13,146.47,143.9,237.1,799.91,706.19,382.01,1493.4,1648.63,919.05,1039.53,690.68,646.55,5626.77,3084.6,1526.41,917.96,605.56,489.12,419.51,453.39,577.2,1386.34,967.87,726.09,462.82,345.52,301.76,271.84,252.26,238.81,230.37,237.89,234.62,214.85,193.98,180.96,145.4,544.18,361.1,290.75,251.33,336.57,446.14,306.93,252.36,212.72,192.66,172.87,162.88,153.88,158.28,162.37,185.14,166.39,163.98,165.67,143.48,142.39,140.33,132.32,107.91,104.91,105.1,101.86,100.51,99.08,96.82,95.67,95.26,94.81,93.79,93.75,92.14,90.81,90.46,89.25,91.21,89.5,85.75,84.74,83.77,82.36,80.83,80.42,78.85,77.8,77.63,75.8,73.82,72.82,72.8,71.8,70.99,66.47,71.23,70.98,69.96,67.28,69.28,70.01,68.26,68.05,68.0,66.97,66.92,65.91,65.87,64.86,64.84,64.81,65.79,64.76,64.74,63.75,62.75,61.76,61.74,60.63,59.77,58.78,58.87,57.78,57.77,58.42,56.77,55.78,55.77,54.78,54.77,53.79,53.78,52.79,52.78,51.8,50.81,50.8,49.82,48.84,48.83,47.85,47.84,46.85,45.87,45.89,44.88,43.91,43.89,42.93,42.97,41.93,40.95,40.94,39.96,38.98,38.97,37.99,37.99,37.01,36.01,36.02,36.99,36.99,36.99,36.98,37.96,37.96,40.89,41.86,41.86,41.85,41.85,41.85,41.84,41.84,41.84,42.72,40.26,40.65,42.14,41.83,41.82,41.82,41.8,41.8,41.79,40.54,42.33,37.61,44.41,41.64,41.59,39.6,35.94,36.82,35.05,34.86,34.79,34.47,33.68,33.68,32.71,33.47
+42.67,48.82,49.81,58.14,58.75,60.79,63.33,61.83,60.52,52.67,51.68,51.66,51.65,51.63,51.62,51.35,51.63,51.61,51.6,51.59,51.58,51.57,51.56,51.55,53.02,51.53,51.52,51.51,51.5,52.34,58.03,65.33,71.37,76.64,82.74,78.1,107.99,110.2,140.25,195.99,171.11,145.54,482.44,259.44,163.02,281.92,333.86,311.66,1543.71,241.05,6186.56,2252.87,700.95,692.96,441.9,513.96,466.43,444.86,326.34,380.79,271.43,225.93,140.17,170.4,168.06,183.27,232.44,206.82,176.17,162.91,160.01,151.8,137.96,139.43,124.78,113.15,109.17,109.12,114.43,109.03,106.04,95.22,105.4,94.14,103.49,106.52,122.48,131.36,148.64,155.38,167.83,171.3,173.56,151.26,135.12,132.91,129.78,118.87,113.85,118.92,123.43,126.98,132.39,132.26,140.91,688.56,610.91,373.13,274.59,206.8,169.91,164.78,158.37,139.23,128.79,133.1,156.05,129.21,122.43,103.55,539.55,676.6,833.27,1884.59,855.2,596.71,438.88,354.43,294.44,278.48,352.41,257.49,247.62,246.43,242.37,214.18,216.37,216.66,197.57,318.68,569.91,402.28,313.19,274.91,237.14,200.12,392.71,594.36,487.42,561.8,449.98,539.29,611.65,426.82,476.18,327.23,272.34,232.26,212.64,176.54,168.62,159.62,153.83,151.12,149.1,153.19,279.64,857.77,706.24,382.04,1493.72,1648.96,1163.54,1320.28,743.73,614.55,5714.28,3233.23,1262.84,802.29,600.92,500.46,410.51,300.78,576.41,1385.33,967.79,692.26,559.44,524.66,301.82,271.94,268.62,318.67,234.22,240.82,234.79,214.76,193.93,180.93,145.38,544.08,361.17,290.84,251.37,336.73,446.43,307.07,252.49,218.39,192.69,174.06,162.88,153.92,160.13,162.34,185.15,166.45,154.5,151.42,144.85,142.4,140.33,128.53,107.92,135.22,104.92,101.86,99.85,98.82,96.82,95.26,94.85,94.8,95.39,93.75,92.14,90.81,89.75,88.78,91.69,86.76,85.75,84.74,83.74,81.13,80.83,79.82,78.81,77.8,77.22,75.8,74.86,72.82,72.8,71.8,70.99,66.47,71.23,70.98,69.96,67.28,70.32,69.17,68.9,68.24,71.2,67.22,66.92,66.01,65.87,64.86,64.84,64.81,65.76,64.76,64.74,63.82,62.76,61.76,61.74,60.63,59.77,58.78,58.77,57.78,57.77,56.78,56.77,55.78,55.77,54.9,54.77,53.79,53.78,52.79,52.78,51.8,50.81,50.8,49.82,49.69,48.83,47.85,47.84,46.85,45.87,45.86,44.88,43.93,43.89,42.91,42.91,41.97,40.95,40.95,39.96,38.98,38.97,37.99,37.99,37.0,36.01,36.02,36.99,36.99,36.99,36.98,38.07,37.96,40.89,41.86,41.86,41.85,41.85,41.85,41.84,43.75,41.84,41.83,40.4,40.65,41.99,41.83,41.82,41.81,41.8,41.8,41.79,37.84,40.68,37.61,40.58,41.64,41.59,39.6,35.71,34.76,34.76,34.79,34.79,33.73,33.68,33.68,32.71,32.73
+42.68,48.83,49.84,59.02,59.65,60.79,61.5,61.47,60.47,52.67,51.68,51.66,51.65,51.63,51.62,51.35,51.63,52.48,52.29,52.88,52.65,69.14,51.86,51.55,51.87,51.53,51.9,51.77,51.5,52.53,59.3,69.23,70.87,76.64,82.33,76.97,107.99,101.43,121.92,194.03,154.73,142.23,482.35,301.61,163.01,280.44,334.81,311.66,1598.39,315.57,6217.75,2706.66,799.16,659.46,478.21,513.89,481.65,386.18,301.26,284.05,263.28,226.0,217.21,170.43,168.1,219.25,204.89,178.17,168.01,169.99,157.83,154.37,142.57,151.83,125.97,149.0,116.52,139.96,276.9,125.25,109.16,97.41,94.21,94.17,94.12,207.92,125.24,131.01,148.64,155.36,179.05,214.59,167.42,150.18,149.46,148.15,158.57,118.85,124.17,125.83,123.41,169.34,146.9,138.75,147.19,742.24,677.76,373.03,274.54,216.17,190.47,152.81,148.38,188.64,191.41,127.52,121.62,121.53,122.44,99.73,514.93,676.56,833.27,2074.58,855.44,596.88,438.88,354.46,294.57,274.72,253.06,247.9,247.63,246.42,242.37,214.2,216.4,216.63,197.54,318.74,569.91,402.25,313.19,274.95,237.2,200.16,392.95,594.64,487.71,562.09,449.9,539.18,535.1,407.9,323.83,319.79,318.88,238.61,212.64,176.56,168.64,155.88,159.02,151.13,146.45,143.9,237.1,799.8,705.91,414.37,1494.2,1768.58,919.05,1244.37,921.41,917.1,5245.27,3030.45,1216.31,821.99,617.7,826.21,454.54,310.72,577.2,1386.59,968.29,634.79,575.93,440.29,301.76,343.99,250.94,238.87,230.47,241.94,259.64,223.83,199.89,182.53,152.6,573.35,483.01,362.12,256.54,384.0,446.33,334.86,252.51,212.77,192.66,172.87,162.88,153.87,153.7,162.35,185.14,166.41,165.29,152.48,143.49,142.38,140.33,128.52,114.86,104.91,103.87,101.86,99.85,98.82,96.82,95.26,105.51,94.8,93.79,94.67,92.14,90.81,89.75,88.78,87.73,86.76,85.75,84.74,83.74,81.13,81.1,79.82,78.81,77.91,76.8,75.8,73.82,72.82,73.02,71.8,70.99,66.47,71.23,70.98,69.96,67.28,69.28,69.17,68.11,68.05,68.55,66.97,66.92,65.91,65.87,64.86,64.84,64.81,65.76,64.76,64.74,63.75,62.94,61.82,61.74,60.63,59.77,58.78,58.77,57.78,57.77,56.78,56.77,55.78,55.77,54.78,54.77,53.79,53.78,52.79,52.78,51.8,50.81,50.8,49.82,48.84,48.83,47.85,47.84,46.85,45.87,45.87,44.88,43.9,43.89,42.91,42.91,41.93,40.95,40.94,39.96,38.98,38.97,37.99,37.99,37.01,36.02,36.02,36.99,36.99,37.23,37.02,37.97,37.98,40.94,41.9,41.91,41.89,41.95,41.85,41.84,41.84,41.84,41.83,40.26,40.65,41.99,41.83,41.82,41.81,41.8,44.94,41.81,37.8,44.67,46.47,40.9,41.64,41.59,39.6,35.71,34.76,34.76,34.85,34.79,33.73,33.68,33.68,32.71,32.73
+42.67,48.82,49.81,58.14,99.36,61.62,68.11,63.2,60.48,53.48,51.68,53.03,51.65,54.2,53.07,51.39,51.63,51.61,51.6,51.78,51.58,51.57,52.57,51.55,51.54,51.53,52.43,51.71,51.5,52.34,57.97,65.15,70.87,76.64,81.44,76.66,107.99,101.43,119.46,194.03,155.98,150.65,502.37,293.03,166.76,333.84,333.92,311.61,1543.42,262.28,6238.96,2626.69,939.35,659.54,507.22,779.76,597.05,392.61,301.22,284.02,263.25,226.0,140.23,170.45,168.1,200.33,248.71,172.29,168.04,162.93,157.84,151.82,137.97,131.98,122.08,135.6,115.05,121.33,152.69,109.01,106.03,95.2,94.2,94.16,94.12,125.34,119.51,128.24,148.61,159.86,167.77,171.28,244.04,157.81,135.12,133.61,135.78,119.61,113.85,118.92,123.43,126.98,132.39,132.26,140.91,688.56,610.91,373.13,274.59,206.82,169.93,152.84,137.88,132.8,123.81,122.7,121.62,121.53,122.43,99.74,493.42,676.69,833.4,1885.55,865.24,597.0,438.97,354.4,419.65,274.63,262.36,255.85,247.55,283.1,242.3,224.5,237.96,242.72,197.57,318.68,569.87,402.22,313.13,274.91,237.14,200.12,392.88,613.49,692.79,701.34,459.56,550.8,629.83,407.87,323.77,304.71,272.34,232.28,212.64,176.55,168.64,155.9,153.86,151.16,146.49,143.93,240.27,800.01,740.33,411.45,1661.66,1649.08,1333.67,1062.92,1054.18,695.44,5593.33,2860.55,1288.48,886.74,642.95,498.87,410.38,308.94,609.7,1505.28,968.04,634.45,454.97,345.82,301.93,287.93,250.93,247.99,230.41,237.87,234.64,214.76,193.93,180.9,145.37,544.1,361.13,290.85,251.41,336.62,446.11,306.95,252.37,212.7,192.61,172.82,162.93,153.86,153.7,169.97,185.19,166.41,154.5,151.43,143.48,142.38,140.32,129.99,112.21,104.91,106.92,102.19,99.85,98.97,97.04,95.26,94.85,94.81,93.79,93.75,92.14,90.81,95.39,88.89,87.73,86.76,85.75,84.96,83.74,81.13,80.95,80.81,78.81,77.8,76.85,75.8,73.82,73.11,72.95,71.8,71.2,66.47,73.02,70.98,70.71,69.14,80.9,69.35,68.86,68.05,68.0,66.97,67.18,65.91,65.87,64.86,64.84,64.81,65.76,64.76,64.74,63.75,62.75,61.76,61.74,60.63,59.77,58.78,58.77,57.78,57.77,56.78,56.95,56.18,55.97,54.83,55.35,53.83,53.78,52.8,52.78,51.8,50.81,50.8,49.84,48.84,48.85,47.85,47.84,46.85,45.87,45.86,44.88,43.9,43.89,42.91,43.24,41.93,40.95,40.94,39.96,38.98,38.97,37.99,37.99,37.0,36.01,36.02,36.99,36.99,36.99,36.98,44.06,38.19,40.89,41.87,41.86,41.85,41.85,41.85,42.79,41.84,41.84,41.83,40.26,40.65,44.6,41.83,41.82,41.81,41.8,41.8,41.79,37.8,40.65,37.61,40.58,41.64,41.59,39.6,35.71,35.92,34.87,34.94,34.79,33.73,33.68,33.68,32.71,32.73
+42.67,48.82,49.81,58.31,60.45,70.17,61.91,61.47,61.45,52.78,52.07,51.68,51.65,51.63,51.62,51.35,51.63,52.52,52.75,54.36,51.58,51.57,51.56,51.55,51.54,51.53,51.73,63.01,51.5,52.34,57.97,65.15,70.87,76.64,81.44,76.66,107.99,101.43,119.46,195.99,154.72,142.23,482.36,259.19,163.01,280.44,333.85,311.68,1543.48,244.36,6566.25,2252.72,700.98,659.54,441.75,513.89,466.43,386.23,333.27,470.39,391.15,226.0,140.21,241.05,245.24,909.66,197.83,172.31,180.1,180.82,157.78,151.77,140.7,131.95,122.05,113.16,117.26,109.13,109.08,129.5,106.04,96.86,94.2,94.16,94.11,98.98,119.51,128.24,148.61,155.35,167.77,171.25,200.36,162.99,233.64,162.61,136.68,127.86,115.92,143.19,127.39,130.58,132.36,132.25,165.33,794.74,640.65,409.24,274.49,206.75,174.3,175.44,181.43,144.14,143.32,200.06,144.23,130.03,170.92,101.76,791.29,701.95,922.4,2078.88,950.6,650.86,635.84,430.1,294.52,326.59,275.06,285.53,286.77,605.3,249.33,214.15,216.34,216.61,197.52,318.59,569.7,402.06,313.01,274.82,237.09,204.82,404.28,600.26,491.08,561.94,482.82,545.0,535.06,407.84,366.03,352.44,272.4,257.72,212.64,176.59,168.68,156.34,153.9,151.13,151.31,143.98,296.99,913.26,976.78,397.22,1493.5,1708.46,918.63,1048.0,1184.21,816.63,5500.2,3172.25,1216.88,802.49,625.98,489.39,433.78,301.05,576.77,1385.71,967.38,634.39,455.05,345.41,301.68,271.82,250.9,238.75,245.24,237.88,234.66,214.74,209.15,180.9,145.36,573.37,361.11,290.78,251.37,336.71,446.39,307.05,252.43,212.75,192.66,172.85,162.87,166.81,157.68,170.82,185.14,166.39,154.49,151.42,226.59,157.56,140.33,128.52,107.91,104.9,103.87,101.85,99.85,101.78,97.74,95.26,94.85,94.81,93.79,94.36,92.14,92.94,89.75,88.78,88.12,86.76,86.52,85.32,83.74,81.13,80.83,80.28,78.81,77.8,76.8,75.8,73.82,72.82,72.8,71.8,70.99,66.47,71.23,70.98,69.96,67.28,69.28,69.17,68.11,68.05,67.99,66.97,66.92,65.91,65.87,64.86,64.84,68.0,67.1,67.03,65.02,64.44,62.84,61.76,61.74,60.63,59.77,58.78,58.77,57.78,57.91,56.78,56.78,55.78,55.77,54.78,54.77,53.79,53.78,52.79,53.26,51.8,50.81,50.8,49.82,48.84,48.83,47.85,47.84,46.86,45.87,45.86,44.88,43.9,43.89,42.91,42.91,41.93,40.95,40.94,39.96,38.98,38.97,37.99,37.99,37.0,36.01,36.03,37.03,37.0,36.99,36.98,37.96,37.96,40.89,41.86,41.86,41.85,41.85,41.85,41.85,41.96,42.01,41.83,40.26,40.65,41.99,41.83,41.82,41.81,41.8,41.8,41.88,37.82,40.65,38.56,40.92,41.64,41.59,39.6,35.71,35.09,34.95,34.79,34.79,33.73,33.68,33.71,32.71,32.73
+42.67,48.82,49.81,58.14,58.75,62.06,62.53,61.47,60.48,52.67,51.71,51.66,51.65,51.68,51.62,51.35,51.63,51.61,51.82,51.59,51.58,51.57,51.56,51.55,51.54,51.53,51.52,52.69,51.9,52.47,58.22,77.78,71.16,76.64,82.85,76.73,107.99,101.43,128.54,194.03,157.86,142.23,482.36,259.2,163.01,280.46,333.86,311.64,1543.42,240.99,6186.22,2267.66,700.72,659.46,441.86,513.95,466.49,386.32,301.29,284.08,263.33,226.0,140.24,170.47,168.14,183.27,177.69,172.29,168.03,162.9,157.83,151.81,205.26,139.89,150.36,172.4,159.33,116.74,121.88,147.61,109.8,125.52,136.74,98.79,94.11,98.99,119.52,128.25,148.64,155.38,167.81,171.28,167.39,150.17,135.11,157.38,162.64,122.63,115.23,121.02,124.84,126.98,132.36,140.04,140.88,698.24,610.81,373.13,282.68,206.75,169.89,152.82,212.48,132.76,123.82,122.7,121.62,121.52,122.41,99.73,493.32,676.56,833.27,1885.27,855.52,597.06,438.97,378.53,294.42,274.61,252.96,247.81,247.53,246.37,249.33,221.36,216.33,222.71,197.49,362.44,580.7,402.3,327.86,344.46,317.62,200.13,426.17,746.64,548.37,625.04,457.95,548.86,546.85,548.24,323.78,312.64,272.18,232.16,366.37,176.52,168.6,155.84,153.81,151.07,146.42,172.0,311.46,879.19,711.34,381.92,1493.08,1691.5,926.28,1078.0,689.88,583.46,5166.58,2847.22,1214.27,800.71,600.3,488.65,410.09,314.34,577.38,1530.7,1126.28,812.38,470.01,345.6,301.7,271.92,272.71,263.49,230.49,237.92,234.68,214.85,194.02,180.94,145.4,544.38,363.69,317.95,270.83,352.52,635.94,374.73,259.93,242.97,192.68,172.88,162.88,153.87,153.7,162.31,185.12,166.38,154.49,151.43,143.47,142.38,140.33,131.69,107.97,104.9,103.87,101.86,99.85,98.82,96.82,95.26,94.85,94.8,93.78,93.75,92.14,90.81,89.75,88.78,87.73,86.76,85.75,84.74,83.74,82.23,84.81,79.82,78.81,79.65,77.31,75.8,73.82,73.31,72.8,71.8,70.99,66.47,71.23,70.98,69.96,67.28,69.28,69.17,68.11,68.05,67.99,66.97,66.92,65.91,67.59,64.86,65.28,64.81,65.76,64.76,64.74,64.12,62.75,61.76,61.74,60.64,59.88,58.78,58.77,57.78,57.77,56.78,56.77,55.78,55.77,54.78,54.77,53.79,53.78,52.82,52.78,51.89,50.81,50.8,49.82,48.84,48.83,47.85,47.84,46.85,45.87,45.86,44.88,43.9,43.9,43.05,42.91,41.93,40.95,40.94,39.96,38.98,38.97,37.99,38.14,37.0,36.01,36.02,36.99,36.99,36.99,36.98,37.96,37.96,40.89,41.86,41.86,41.85,41.85,41.87,41.84,41.84,41.84,41.83,40.26,40.65,41.99,41.83,41.82,41.81,41.9,41.92,41.81,38.1,40.69,37.61,40.58,42.18,41.61,39.6,35.71,34.76,34.76,34.79,34.79,33.73,33.68,33.68,32.71,32.73
+42.67,48.82,49.82,58.14,58.75,60.79,61.5,61.47,60.48,52.67,51.68,51.66,51.65,51.63,51.66,51.35,52.14,51.79,51.6,51.59,51.58,51.57,51.56,52.13,52.13,52.42,52.28,74.86,52.34,52.34,57.97,68.02,70.96,76.64,81.44,76.66,107.99,101.43,119.46,202.52,159.15,142.24,518.69,304.01,174.22,280.42,333.9,321.32,1543.36,241.02,6364.05,2252.42,700.81,668.81,497.37,650.36,466.38,386.18,301.26,316.17,263.25,226.83,140.21,170.42,168.12,183.25,177.67,172.31,168.06,162.92,161.18,171.21,143.05,131.97,122.07,113.78,109.18,109.14,109.09,109.04,113.12,113.11,97.18,94.15,94.12,113.56,174.16,131.72,163.58,221.49,172.94,191.98,167.42,150.18,135.12,132.91,130.61,118.85,113.85,118.92,123.41,126.96,132.37,132.25,154.07,688.49,649.78,373.14,277.59,206.76,188.34,173.49,137.84,137.8,229.12,156.0,134.71,121.51,123.51,99.72,502.96,676.48,833.21,2052.06,855.2,597.06,438.8,354.3,297.69,276.61,253.88,247.81,352.85,317.81,253.71,444.07,590.49,233.45,198.73,321.63,569.78,401.93,312.91,274.76,237.04,200.03,392.55,594.6,610.24,694.48,562.74,674.5,544.91,407.94,323.7,304.62,272.29,232.22,212.58,176.49,168.57,155.83,153.79,151.09,146.51,143.85,237.02,799.59,705.64,381.71,1493.08,1647.67,918.31,1219.7,689.82,583.95,5277.57,2892.0,1215.4,801.44,600.75,488.9,410.25,300.72,635.85,1386.83,968.04,634.74,455.2,345.44,301.72,271.84,250.92,238.71,230.34,302.66,296.08,224.77,202.98,191.64,149.37,621.85,361.39,314.77,281.36,336.95,473.16,306.99,252.49,212.81,192.67,172.85,162.85,153.85,153.68,162.3,185.11,166.38,154.48,151.42,143.48,143.69,140.33,128.52,107.91,104.9,103.87,101.85,99.85,98.82,96.82,95.26,94.85,94.95,93.79,93.75,92.14,90.81,89.75,88.78,87.73,86.76,85.75,84.74,83.74,81.13,81.65,79.82,78.81,77.8,77.09,76.05,74.09,72.82,72.8,71.8,70.99,66.47,71.23,70.98,69.96,67.28,69.29,69.17,69.18,68.05,68.64,66.97,66.92,65.91,68.21,64.86,65.15,64.81,65.76,65.72,64.74,64.11,62.75,61.76,61.74,60.63,59.77,58.78,58.77,57.78,57.77,56.78,56.77,55.78,55.77,54.78,54.77,53.79,53.78,52.79,52.78,51.8,50.81,50.8,49.82,48.86,48.83,47.85,47.84,46.85,45.87,45.86,44.88,43.9,43.89,42.91,42.91,41.93,40.95,40.94,39.96,38.98,38.97,37.99,37.99,37.0,36.01,36.02,36.99,36.99,36.99,36.98,37.96,37.96,40.89,41.86,41.86,41.85,41.85,41.85,41.84,41.84,41.84,41.83,40.26,40.65,41.99,41.83,41.82,41.81,41.8,41.8,41.87,38.03,40.65,37.61,40.58,41.64,41.59,39.6,36.19,35.0,34.92,34.86,34.79,33.73,33.68,33.68,32.8,58.25
+42.67,48.82,49.81,58.14,59.17,60.8,61.5,61.47,60.48,52.67,52.45,51.66,51.65,51.63,51.62,52.14,52.12,52.23,51.6,51.59,51.58,51.57,51.56,51.55,51.54,51.53,51.52,51.51,51.52,53.19,57.97,70.15,70.87,77.37,81.74,77.08,107.99,101.43,129.31,197.18,154.74,191.08,839.68,268.2,172.41,280.46,333.87,314.28,1665.09,318.66,6186.33,2252.57,700.89,659.46,441.86,513.89,466.32,386.18,301.22,284.02,263.28,226.0,140.23,170.45,168.12,183.25,177.67,172.29,168.03,162.9,157.83,151.81,137.96,131.98,122.08,113.18,158.71,135.32,120.71,154.94,140.11,128.27,94.18,94.14,94.12,99.0,119.53,128.25,148.62,155.37,167.77,171.3,258.3,190.4,209.92,132.9,155.75,125.0,122.2,124.31,125.92,226.13,132.8,132.24,140.88,688.49,610.84,373.06,274.54,232.93,170.54,152.83,140.76,132.77,123.8,122.71,121.62,121.54,122.43,99.74,493.53,676.69,833.27,1885.27,855.69,597.11,438.97,354.46,294.59,274.74,253.06,247.88,247.62,246.4,242.35,214.2,216.39,216.65,197.53,318.65,569.87,402.12,313.08,277.82,246.19,200.05,392.68,594.22,487.34,588.85,449.67,538.91,589.79,407.71,323.65,304.75,272.22,232.18,244.22,176.57,168.58,160.47,154.67,151.08,146.4,143.84,237.02,811.61,706.41,400.02,1812.06,1687.32,1597.73,1290.44,889.81,583.56,5165.99,2847.87,1215.15,801.44,600.92,489.08,410.38,300.78,576.95,1385.95,1111.02,635.03,455.16,345.47,301.63,271.75,250.8,238.68,230.28,237.78,234.74,214.72,193.96,180.99,168.05,640.8,361.35,291.1,281.35,336.79,446.41,307.05,252.42,212.76,192.67,190.28,180.07,153.88,153.71,162.34,188.84,166.44,157.3,151.45,143.5,142.38,140.33,128.52,107.91,104.9,103.87,101.86,99.85,98.82,96.82,95.26,94.85,94.8,93.79,93.75,92.14,90.81,89.75,88.78,87.73,86.76,85.75,84.74,83.74,81.13,80.83,79.82,79.33,78.47,76.82,75.8,73.82,72.84,72.8,71.8,71.05,66.47,71.24,70.98,70.3,67.56,75.78,71.45,68.12,69.01,68.0,66.97,66.92,65.91,65.98,65.71,64.84,64.81,65.76,64.76,64.74,63.75,62.75,61.76,61.74,60.63,59.77,58.78,58.77,57.78,58.04,56.78,56.77,55.78,55.77,54.78,54.77,53.79,53.78,52.79,52.78,51.8,50.85,50.8,49.82,48.84,48.83,47.85,47.84,46.85,45.87,45.86,44.88,43.9,43.89,47.52,42.95,41.93,40.95,40.94,39.96,38.98,38.97,37.99,37.99,37.0,36.01,36.02,36.99,36.99,36.99,36.98,37.96,37.96,40.89,41.86,41.86,41.85,41.85,41.85,41.84,41.84,41.84,41.83,40.26,40.65,41.99,41.83,41.82,41.91,41.9,42.04,41.79,37.8,40.65,37.61,40.58,41.64,41.59,39.6,35.71,35.65,34.76,34.79,36.43,33.89,33.77,33.86,32.71,32.77
+42.67,49.68,52.05,58.14,58.75,62.66,61.5,61.47,60.48,52.67,51.68,51.66,51.65,51.65,52.1,51.35,51.63,51.61,51.6,51.61,51.69,51.59,52.29,52.93,53.57,51.58,55.52,51.51,51.5,52.34,57.97,65.15,74.5,77.09,81.44,76.66,107.98,101.43,119.46,219.54,258.6,157.95,548.33,260.48,180.3,324.02,403.77,322.21,2134.37,240.99,6238.96,2418.4,703.98,659.18,476.33,566.46,466.32,455.79,328.98,317.16,275.61,225.93,265.22,271.43,250.29,183.27,252.71,177.51,168.01,162.88,157.8,171.33,142.57,131.96,122.05,113.16,109.17,109.13,113.05,109.02,106.03,95.22,94.2,94.16,94.12,99.0,119.53,128.26,148.64,155.38,167.81,171.28,167.43,150.19,135.11,132.91,130.2,118.85,113.83,118.9,126.65,141.05,134.42,132.25,140.88,688.45,610.77,373.0,274.49,206.76,184.86,158.37,137.87,132.8,123.83,122.72,121.62,121.52,122.42,99.74,493.42,676.56,833.21,1885.13,855.44,663.2,489.42,354.27,294.47,274.65,253.0,281.63,308.32,283.1,259.03,214.79,256.16,219.99,212.25,318.75,569.87,402.22,313.11,274.87,237.12,200.09,392.71,594.27,487.38,561.71,449.59,538.82,562.75,407.71,323.73,304.56,298.41,232.19,212.58,176.59,168.61,155.85,153.84,153.36,160.8,152.68,248.39,799.69,705.8,381.83,1492.55,1647.77,981.39,1175.22,850.19,690.37,5480.32,3261.11,1216.87,801.69,603.57,608.05,410.83,336.64,628.62,1386.03,967.63,634.68,455.2,345.41,301.65,271.77,250.81,238.7,230.44,237.95,243.23,241.26,198.02,181.0,145.38,544.13,361.13,290.79,251.41,336.9,446.26,306.96,258.78,212.84,196.81,172.94,164.87,156.39,153.71,162.33,185.14,166.4,154.5,151.42,143.48,143.36,155.01,128.52,107.91,104.9,103.87,101.85,99.85,98.82,96.82,95.26,94.85,94.8,93.79,93.75,92.14,91.51,89.75,89.62,89.32,86.76,85.75,84.88,83.74,81.48,80.83,79.82,78.81,77.8,76.8,76.07,73.84,73.05,72.8,71.8,70.99,66.47,71.23,70.98,69.96,67.28,69.3,70.77,68.11,68.05,68.32,67.47,67.53,65.91,65.87,64.86,64.84,64.81,65.76,64.76,64.85,63.84,62.77,61.76,61.74,60.63,59.77,59.06,58.82,57.78,57.77,56.78,56.77,55.78,55.77,54.78,54.77,53.79,53.78,52.79,52.78,51.8,50.81,50.8,49.82,48.84,48.83,47.85,47.84,46.85,45.87,45.86,44.88,43.9,43.89,42.91,42.91,42.17,40.95,41.07,39.96,39.06,38.97,37.99,37.99,37.0,36.01,36.02,36.99,36.99,36.99,36.98,37.96,37.96,40.89,41.86,42.08,41.85,41.85,41.93,41.84,41.88,41.84,41.83,40.26,40.65,41.99,41.83,41.82,41.81,41.8,41.8,41.79,37.8,40.65,37.61,40.58,41.64,41.59,39.6,37.83,34.95,34.76,34.79,34.79,33.73,33.68,33.75,32.71,32.73
+43.33,48.82,50.41,60.31,61.9,61.18,61.5,61.47,60.61,52.67,53.37,51.66,55.42,54.0,51.62,51.35,51.63,51.61,51.6,51.71,51.68,51.57,51.92,51.55,51.54,51.53,51.52,51.51,51.5,52.34,57.97,65.15,70.87,76.64,81.44,76.66,109.75,101.43,119.46,197.58,188.25,142.54,482.39,281.95,164.67,280.47,333.86,311.65,1543.65,241.03,6186.56,2252.87,701.07,659.61,441.91,513.95,466.49,386.32,301.33,284.11,263.28,227.36,146.54,170.4,173.79,183.25,177.63,258.47,186.24,164.65,231.23,175.72,236.54,153.44,125.36,130.51,112.57,111.12,121.49,215.26,185.03,100.01,109.52,114.44,125.3,110.78,119.53,130.34,153.97,180.13,261.75,216.41,167.43,150.2,135.13,132.92,129.76,132.16,117.34,119.62,123.44,176.17,406.11,137.9,155.03,688.45,610.7,372.94,338.3,209.88,169.89,152.79,137.85,132.8,123.78,145.1,121.62,149.67,156.57,99.72,493.22,676.48,833.21,1885.0,855.44,596.94,438.92,354.43,294.55,274.7,252.98,247.83,247.56,246.37,242.31,214.17,216.36,216.64,198.15,324.52,569.65,402.06,313.03,274.91,238.8,200.12,392.88,594.6,641.81,635.45,449.82,539.09,535.1,407.8,323.73,304.69,272.34,232.23,212.6,176.53,168.61,155.85,153.82,151.09,146.42,143.85,236.97,799.54,705.75,381.8,1492.76,1648.2,918.88,1093.2,689.88,583.67,5166.38,2848.53,1215.66,801.78,600.92,488.86,435.13,336.65,576.89,1625.86,1008.03,791.6,455.2,380.25,301.63,278.36,256.45,247.99,230.41,238.05,259.64,214.8,193.96,180.93,145.38,544.06,361.02,290.73,268.81,336.62,447.97,333.17,252.43,212.69,192.63,173.78,162.9,154.34,153.74,162.33,185.14,166.4,154.5,151.44,150.11,143.25,140.32,128.53,107.91,104.9,106.81,101.86,99.85,98.82,98.5,95.98,94.85,94.8,93.79,93.75,92.14,90.81,91.04,88.97,87.73,86.76,85.75,84.74,83.74,81.23,80.83,79.82,78.81,77.8,76.8,75.8,73.84,72.86,73.05,72.68,70.99,70.08,71.23,70.98,69.96,67.28,69.28,69.17,68.11,68.05,67.99,66.97,66.92,65.91,65.87,64.86,64.84,64.98,69.57,64.82,64.74,63.75,62.75,61.76,61.74,60.63,59.77,58.78,58.77,57.78,57.77,56.98,56.77,55.78,55.77,54.78,55.0,53.79,53.78,52.79,52.78,51.8,50.81,50.8,49.82,48.84,48.83,47.85,47.84,46.85,45.87,45.86,44.88,43.9,43.89,42.91,42.91,41.93,40.95,40.94,39.96,38.98,38.97,37.99,37.99,37.0,36.01,36.02,36.99,36.99,36.99,36.98,37.96,37.96,40.89,41.86,41.86,41.85,41.85,41.85,41.84,41.84,41.84,41.83,40.26,40.65,42.52,41.87,41.83,41.95,42.44,41.87,42.0,38.37,40.89,37.62,40.58,41.64,41.59,39.6,38.59,34.93,34.76,36.33,35.27,33.73,33.68,33.68,32.74,32.81
+42.67,48.93,49.82,58.14,58.75,60.79,61.5,61.47,60.48,52.67,51.68,51.66,51.65,51.63,51.62,51.35,51.63,51.61,52.1,51.65,51.78,52.14,52.45,51.55,52.6,51.83,52.32,51.51,52.22,52.54,57.97,65.15,70.87,76.64,84.41,78.02,107.99,101.43,119.46,210.89,154.74,142.23,515.68,259.18,172.42,282.64,333.84,311.68,2246.66,240.94,6186.0,2292.2,700.46,659.25,441.7,513.71,466.43,386.14,301.19,283.99,263.22,225.97,140.2,195.8,215.55,192.72,177.63,189.25,197.91,194.91,157.8,151.77,137.92,139.43,122.06,113.17,111.19,109.12,123.08,109.36,106.04,97.41,94.2,94.16,94.13,99.01,142.7,276.6,153.39,177.96,167.75,180.62,236.68,153.94,166.72,166.24,182.62,126.21,113.83,118.92,126.65,153.29,165.59,157.37,140.86,688.49,637.63,397.84,274.54,206.78,169.9,152.83,138.36,132.8,127.94,150.39,133.38,121.52,130.77,99.72,493.32,680.02,833.15,1885.41,1308.93,771.08,450.58,354.3,294.47,313.75,254.71,253.42,247.55,246.35,242.31,214.18,216.39,216.62,197.53,318.62,569.7,430.82,313.11,274.93,242.86,264.75,436.69,594.17,487.26,584.96,454.75,545.01,542.97,544.17,332.57,304.64,272.27,232.21,236.65,176.5,168.56,155.85,153.82,151.18,146.47,143.85,237.21,800.28,713.73,381.92,1981.06,1742.64,1059.43,1055.45,689.82,583.3,5166.18,2847.87,1215.27,801.2,600.47,558.95,440.54,311.62,672.84,1649.37,1039.67,696.66,462.82,430.59,406.04,316.99,281.28,238.79,230.36,237.89,234.83,214.9,193.96,180.95,145.41,544.28,361.17,290.83,251.38,336.65,446.66,307.29,252.59,212.72,192.63,172.82,162.84,153.87,153.7,162.31,189.93,167.9,154.5,164.61,143.48,142.38,140.32,128.52,107.91,104.91,113.28,103.1,99.85,98.82,96.82,95.26,94.85,95.71,93.79,93.75,92.82,90.81,90.48,88.78,87.73,86.76,85.75,84.74,83.74,82.34,80.83,83.36,78.81,77.8,76.8,75.8,73.82,72.82,72.8,71.8,70.99,66.47,71.23,70.98,69.96,67.28,69.28,69.17,68.11,68.05,67.99,66.97,67.06,65.91,65.87,64.86,64.84,64.81,65.76,64.76,64.74,63.75,62.75,61.76,61.74,60.63,59.77,58.78,58.77,57.78,57.77,56.78,56.77,55.78,55.77,55.03,54.89,53.79,53.78,52.79,52.78,51.86,50.81,50.8,49.82,48.84,48.83,47.85,47.84,46.85,45.87,45.86,44.88,43.9,43.89,42.94,42.94,42.23,40.95,40.95,39.96,38.98,38.97,37.99,37.99,37.01,36.03,36.02,36.99,36.99,36.99,36.98,37.96,37.96,40.89,41.86,41.86,41.85,41.85,41.85,41.86,42.32,42.35,41.83,40.26,42.44,41.99,43.69,45.78,42.01,41.83,41.8,41.79,38.11,40.79,37.61,40.58,41.64,41.86,40.34,35.71,34.76,34.76,34.79,34.79,33.75,33.68,33.68,32.71,32.73
+42.67,49.28,49.81,59.89,58.75,60.79,61.5,61.47,60.47,52.67,51.68,51.66,51.65,51.63,51.62,51.35,51.63,51.61,51.6,51.59,51.58,51.57,51.56,51.55,51.54,51.55,51.78,52.16,51.5,52.34,57.97,65.15,70.87,76.64,81.44,76.66,107.99,101.43,119.45,194.03,154.73,142.23,553.19,259.18,165.09,312.08,367.59,311.65,1543.59,241.02,6186.22,2282.34,700.72,659.18,441.7,513.71,497.26,386.14,301.22,284.02,263.25,226.0,140.77,179.18,168.1,183.29,177.69,172.29,168.03,162.87,157.82,151.8,137.97,131.97,122.08,113.18,109.19,109.14,109.09,109.04,130.55,118.63,126.08,100.54,115.37,99.0,119.53,128.26,148.64,155.38,194.6,179.04,172.31,152.32,135.11,132.91,129.78,118.86,113.84,141.26,127.76,217.48,132.36,139.17,141.72,714.34,612.38,373.06,321.31,245.59,177.51,187.06,615.98,208.41,123.78,206.67,130.78,165.69,170.92,104.16,565.07,712.24,833.27,2573.73,855.28,660.71,530.24,355.78,294.49,274.7,304.68,250.24,279.2,274.98,242.3,237.31,259.71,250.08,212.91,320.19,569.91,419.16,333.73,292.79,249.59,265.74,526.06,691.17,489.4,561.85,449.63,538.86,535.31,512.81,323.75,306.71,356.47,261.88,223.41,201.98,168.62,155.86,153.81,151.08,146.42,173.81,266.35,881.58,980.46,716.64,1515.54,1648.63,919.13,1039.63,689.88,583.51,5165.41,2902.55,1394.74,1072.43,601.51,489.08,428.5,300.74,576.41,1385.4,967.3,634.28,455.01,345.28,301.72,271.85,250.86,238.73,230.34,237.87,234.65,214.85,193.98,189.24,218.68,548.54,361.52,368.0,251.42,353.41,823.61,341.75,324.94,212.76,192.66,188.15,162.87,153.87,153.69,162.31,185.11,166.37,154.48,151.41,143.47,142.38,140.32,128.52,115.88,105.77,103.87,101.86,104.29,100.22,97.94,95.26,94.85,94.8,93.79,93.75,92.14,91.74,89.75,88.78,88.81,86.76,85.75,84.74,83.74,81.13,80.88,80.3,78.9,77.8,76.8,75.8,73.82,72.82,72.8,71.8,70.99,66.47,71.23,70.98,70.11,67.28,69.28,69.17,68.11,68.05,68.0,66.97,66.92,65.91,65.87,64.86,64.84,64.81,66.46,66.33,64.74,63.75,62.75,61.76,61.74,60.63,59.77,58.78,59.04,57.78,57.77,56.78,56.77,55.78,55.77,54.78,54.77,53.79,53.78,53.09,52.78,51.8,50.81,50.8,49.82,48.84,48.83,47.85,47.84,46.85,45.87,45.86,44.88,43.9,43.89,43.81,42.91,41.93,40.95,40.94,39.96,38.98,38.97,37.99,37.99,37.0,36.01,36.02,36.99,36.99,36.99,37.56,37.96,37.96,40.89,41.86,41.86,41.85,41.85,41.85,41.84,41.84,41.84,41.83,40.26,42.67,47.22,41.89,41.82,41.86,41.8,41.8,41.79,37.82,40.93,37.64,40.58,41.64,41.59,39.6,35.71,34.76,34.76,35.44,34.79,33.73,34.04,33.77,32.71,32.73
+45.16,49.26,49.82,58.26,58.79,60.79,61.5,61.47,60.87,52.67,51.68,51.66,51.65,52.42,51.69,51.47,53.4,51.61,51.6,51.59,51.66,51.57,51.56,51.55,51.54,51.53,51.52,51.51,51.8,52.34,58.17,65.15,70.87,76.64,82.46,76.66,129.87,104.13,119.82,195.6,187.33,186.05,554.81,259.21,163.02,280.45,333.86,322.21,1582.13,315.57,6406.31,2252.87,700.98,698.08,574.46,616.9,466.49,492.21,314.8,592.91,280.96,230.31,147.63,209.78,216.34,204.26,177.67,172.27,168.03,162.9,157.83,151.8,154.2,131.96,122.07,113.17,111.87,149.9,125.96,123.63,106.36,98.55,103.13,97.93,94.13,99.01,119.54,128.27,148.64,155.39,167.81,171.3,167.39,150.19,135.11,132.9,138.96,201.13,113.82,118.89,157.45,160.7,169.79,132.23,140.88,688.37,610.77,373.03,274.54,206.76,169.9,152.83,137.85,175.2,140.3,122.7,121.62,121.54,122.43,99.74,493.43,676.6,833.27,1885.41,855.44,596.94,438.94,354.46,294.54,275.26,253.03,255.03,247.56,265.61,486.88,224.5,216.37,216.66,197.55,331.85,743.2,453.93,313.13,274.95,237.2,200.68,410.03,594.22,524.32,573.42,449.71,538.91,535.06,412.24,343.98,305.74,272.31,232.31,219.51,176.52,168.6,155.88,153.85,151.16,146.49,143.9,237.02,799.69,705.96,381.86,1492.87,1666.33,1112.49,1139.6,689.57,583.24,5164.64,2847.71,1215.79,801.78,601.03,489.16,410.55,300.94,577.13,1386.34,967.87,634.74,455.24,345.47,301.68,271.77,250.84,238.72,237.1,237.89,234.67,214.77,193.94,180.96,145.39,544.06,361.0,290.72,251.3,336.73,483.3,307.03,252.41,212.71,192.63,172.86,162.87,153.87,153.73,162.36,185.16,166.41,154.5,154.17,143.48,142.39,140.33,128.52,107.91,104.91,103.87,101.86,100.14,100.62,149.47,95.26,96.29,95.3,93.79,93.75,92.14,92.4,90.11,88.78,87.73,86.76,85.75,85.16,83.74,81.13,80.83,79.82,78.81,77.8,76.8,75.8,73.82,73.18,72.8,71.8,70.99,66.47,71.23,70.98,69.96,67.28,69.29,69.17,68.11,68.05,68.0,66.97,66.92,65.91,65.87,64.86,64.84,64.81,65.76,64.76,64.85,64.28,63.53,61.76,61.74,60.63,59.77,58.78,58.77,57.78,57.77,56.78,56.77,55.78,55.77,54.78,54.77,53.79,53.78,52.79,52.78,51.8,50.81,50.8,49.82,48.84,48.83,47.85,47.84,46.85,45.87,45.86,44.88,43.9,43.89,42.91,42.91,41.93,40.95,41.31,40.04,39.32,38.97,37.99,37.99,37.0,36.01,36.02,37.03,37.33,36.99,36.98,37.96,37.96,40.89,41.89,41.86,41.95,41.85,41.85,41.84,41.84,41.84,41.83,40.26,40.65,41.99,41.83,41.82,41.81,41.8,41.8,41.79,37.8,40.65,37.61,40.58,42.28,42.61,39.6,35.71,34.76,34.77,34.79,34.79,33.76,33.76,33.68,32.71,33.1
+42.67,48.9,49.81,58.14,58.75,62.69,63.44,61.78,60.48,52.69,52.45,52.01,51.83,51.7,54.74,51.35,51.63,51.61,51.6,51.61,51.58,51.57,51.56,51.55,51.54,51.53,51.52,51.51,51.5,52.34,57.97,65.15,70.87,76.64,82.34,76.87,174.0,105.53,137.3,205.52,164.19,151.99,482.38,259.2,163.01,307.15,339.37,311.64,1695.97,257.04,6287.93,2470.49,791.77,659.46,441.81,513.77,466.43,428.97,414.98,306.02,273.51,296.22,155.59,170.47,168.12,183.27,177.67,172.64,169.27,162.87,281.3,194.35,139.33,131.98,122.92,113.17,109.19,125.0,187.79,109.03,106.04,95.22,94.18,100.24,106.06,105.59,126.31,147.03,148.62,155.36,172.94,220.09,167.43,150.2,135.13,132.92,129.77,118.87,113.85,118.92,123.42,126.98,132.39,132.25,140.9,688.52,610.84,373.03,276.59,218.59,174.3,152.82,137.84,143.13,127.52,122.71,121.61,121.52,122.43,99.74,493.42,676.6,833.27,1885.27,855.52,597.06,597.58,364.91,294.52,274.67,252.96,247.83,275.54,274.98,272.88,256.52,268.91,216.61,200.47,365.62,636.7,402.25,312.96,274.76,237.04,200.06,649.46,1553.24,494.48,561.66,449.56,538.77,534.83,426.82,323.6,329.41,289.9,232.31,212.59,176.5,168.6,155.84,153.8,151.07,146.41,143.94,237.06,799.54,705.8,386.26,1532.77,1648.41,919.39,1039.53,690.01,583.51,5165.6,2847.54,1214.4,801.2,600.86,488.99,410.31,300.74,576.53,1385.71,967.63,634.45,455.05,345.44,301.68,271.72,250.8,238.73,230.39,237.9,234.64,214.78,193.98,180.95,145.39,544.31,361.31,290.9,251.47,336.78,446.35,313.25,326.68,214.56,192.69,172.87,162.87,153.87,153.69,162.31,200.08,186.78,213.65,159.09,149.21,142.4,141.75,131.42,107.91,112.7,103.87,101.86,99.85,100.58,96.82,95.26,96.68,95.59,94.2,93.75,92.14,90.81,89.75,88.78,87.73,86.76,85.75,84.74,83.74,81.13,80.83,79.82,78.81,77.8,76.95,75.8,73.82,72.82,73.64,71.8,70.99,67.74,71.23,71.72,72.52,67.28,86.0,69.18,70.9,69.22,68.76,66.97,70.1,67.36,66.75,64.86,64.84,65.12,65.89,65.16,64.74,63.92,62.75,61.76,61.74,60.63,59.77,58.78,58.77,57.78,57.77,56.78,56.77,55.78,55.77,54.78,54.77,53.79,53.78,52.79,52.78,51.8,50.81,50.8,49.82,48.84,48.83,47.85,47.84,46.85,45.87,45.86,44.88,44.26,43.89,43.01,42.91,41.93,40.95,40.94,39.96,38.98,38.97,37.99,37.99,37.0,36.01,36.02,36.99,36.99,36.99,36.98,37.96,37.96,40.89,48.51,41.86,41.92,41.85,41.85,41.94,41.84,41.84,41.83,40.26,40.65,41.99,41.83,41.82,41.81,41.8,41.86,41.79,37.82,40.65,37.61,40.58,41.64,41.59,39.6,35.71,34.76,34.76,34.79,34.79,33.73,33.68,33.68,32.71,32.73
+42.67,48.82,49.82,58.14,58.75,60.8,61.5,63.67,60.52,53.03,53.85,51.66,51.86,51.72,51.62,51.35,52.51,51.61,51.6,51.59,51.58,51.58,53.2,70.73,52.06,51.88,51.62,86.77,51.5,52.97,76.83,65.15,71.14,76.64,81.51,76.66,107.99,101.43,119.45,196.39,154.73,142.24,505.29,278.4,180.3,289.23,333.87,311.69,1543.66,241.04,6186.56,2252.87,701.07,659.61,441.96,537.64,525.79,386.27,482.99,294.22,265.33,226.0,140.24,170.45,168.15,186.15,177.67,172.3,189.78,176.88,196.12,163.62,161.5,131.94,122.04,113.15,109.17,109.14,126.39,117.86,110.12,95.23,94.2,96.28,99.86,105.9,163.06,132.8,152.58,155.35,186.24,175.14,188.79,199.28,159.5,142.12,163.84,125.4,121.43,118.89,123.4,126.95,132.36,132.22,142.12,737.8,734.68,443.46,274.49,487.31,194.82,152.84,137.87,132.78,123.81,122.7,121.62,121.53,122.43,99.75,493.42,676.6,833.27,1885.41,855.69,597.0,438.92,354.4,294.49,289.19,253.0,247.81,247.53,246.34,242.27,214.12,216.32,216.56,197.47,318.53,569.65,402.09,312.96,296.96,254.81,200.13,392.75,594.17,487.3,561.71,449.94,539.23,534.97,407.67,323.53,380.68,272.23,245.93,233.03,177.1,168.63,169.5,163.67,151.12,146.47,143.86,237.04,799.69,705.91,381.83,1492.87,1648.41,918.8,1039.43,690.53,583.84,5166.38,2849.89,1215.15,800.95,600.41,488.65,410.12,300.8,901.06,1679.02,1080.91,647.6,602.68,516.11,302.0,276.94,253.44,238.87,230.49,238.05,244.87,233.2,208.72,256.52,145.4,590.95,396.66,290.8,251.34,336.68,446.5,385.04,267.68,226.1,204.85,172.86,162.87,153.94,158.08,162.33,185.15,166.41,154.5,151.42,143.47,142.38,140.32,128.52,107.9,104.9,103.87,101.85,99.85,98.82,96.82,95.26,94.85,94.8,93.79,93.75,92.14,90.81,89.75,88.97,87.74,86.76,85.75,84.74,83.74,81.13,80.83,79.82,78.82,78.3,76.8,75.8,73.82,72.82,72.9,71.8,71.03,66.47,75.2,70.98,69.96,67.28,69.28,69.17,68.11,68.05,67.99,66.97,66.92,65.91,65.87,64.86,64.84,64.82,65.76,64.76,64.74,63.75,62.75,61.76,61.74,60.63,59.77,58.78,58.77,57.78,58.08,56.78,56.77,56.08,55.77,54.78,54.77,53.79,53.78,52.79,52.78,51.8,50.81,50.8,49.82,48.84,48.83,47.85,47.84,46.85,45.9,45.86,44.88,43.9,43.89,42.91,42.91,41.93,40.95,40.94,39.96,38.98,38.97,37.99,37.99,37.0,36.01,36.02,36.99,36.99,37.01,37.01,37.96,37.96,40.89,41.86,41.86,41.85,41.85,41.85,41.84,41.86,41.84,41.84,40.35,40.65,42.93,42.0,41.82,41.82,43.59,42.02,42.01,37.8,40.69,37.61,40.58,41.78,41.59,39.6,35.71,34.76,34.76,34.79,34.86,34.02,34.49,33.69,32.93,32.73
+42.67,54.18,50.11,58.14,58.75,60.8,61.5,61.47,60.47,52.67,51.68,51.66,51.65,51.63,51.62,51.35,51.63,51.61,51.63,52.23,51.78,52.34,51.81,51.81,51.54,51.53,51.52,51.51,51.5,52.45,57.97,92.14,72.01,76.64,81.44,77.26,107.99,101.43,122.99,194.04,154.74,145.24,482.39,259.21,163.01,280.46,333.9,327.66,1755.77,260.52,6194.12,2252.72,700.93,661.94,441.7,513.77,466.43,387.92,301.19,283.99,263.22,226.02,140.19,204.18,191.67,183.29,177.65,184.29,200.97,162.91,226.65,308.83,174.47,169.89,122.07,114.58,109.19,210.73,287.96,109.99,106.05,95.22,101.57,94.43,125.37,138.41,149.47,251.84,156.34,155.39,262.94,179.83,167.38,172.15,146.31,132.91,129.75,118.83,155.03,121.74,124.84,126.97,132.38,132.25,154.55,688.49,610.81,563.21,294.25,206.8,169.86,152.86,137.83,132.76,123.79,128.77,168.78,135.15,132.0,116.17,493.37,676.6,833.27,1890.63,855.28,596.82,438.84,373.0,386.8,281.34,256.32,247.86,247.63,246.42,242.34,214.18,217.02,217.33,197.58,386.8,613.83,524.11,336.11,364.12,253.05,207.55,395.76,594.5,487.54,583.02,454.74,545.01,695.79,488.94,332.57,345.27,295.53,235.79,229.5,207.12,192.17,155.86,153.81,151.06,146.4,143.84,237.02,799.69,705.91,407.12,1492.97,1648.41,1193.4,1074.2,689.88,583.46,5167.77,2849.54,1215.4,801.44,600.69,488.82,410.18,300.67,593.52,1482.88,967.14,634.11,455.2,345.44,301.68,271.77,250.95,246.88,271.48,272.33,657.0,214.87,198.02,181.0,158.91,547.26,454.55,305.54,258.41,336.95,446.64,307.01,252.48,212.74,192.63,172.84,162.86,153.86,153.69,162.31,185.12,166.39,154.49,151.45,143.47,142.38,144.79,128.53,107.91,104.9,103.87,101.86,99.85,98.83,97.74,95.41,99.05,94.8,93.79,93.75,92.14,90.81,89.75,88.78,87.73,86.76,85.75,84.74,83.74,81.13,80.97,83.37,78.84,77.8,76.84,75.8,73.82,72.82,72.8,72.04,70.99,66.94,71.23,70.98,69.96,67.28,69.28,69.17,68.11,68.05,67.99,66.97,66.92,65.91,66.12,64.86,65.03,64.81,65.76,64.76,64.74,66.88,65.62,62.6,61.74,60.63,59.77,58.78,58.77,57.78,57.77,56.78,56.77,55.78,55.77,54.78,54.77,53.79,53.78,52.79,52.78,51.8,50.81,50.8,49.82,48.84,48.83,47.85,47.84,46.85,45.87,45.86,44.88,43.9,43.91,42.93,42.93,41.93,40.95,40.94,39.96,38.98,39.03,37.99,38.01,37.0,36.02,36.02,36.99,36.99,36.99,36.98,37.96,37.96,40.89,41.86,41.88,41.88,41.85,41.85,41.84,41.84,41.84,41.83,40.27,40.65,41.99,41.83,41.82,41.81,41.8,41.8,41.79,37.8,42.27,37.61,41.05,41.64,43.19,39.6,36.06,36.8,34.76,34.94,34.79,33.73,33.85,33.69,33.49,32.74
+42.82,49.13,49.81,58.18,58.75,60.8,61.83,63.37,66.81,54.99,51.71,51.91,51.65,51.63,54.11,53.46,51.63,58.38,51.6,51.59,51.58,51.57,51.56,51.55,51.84,51.53,51.52,51.51,51.5,53.23,57.97,65.61,71.58,76.73,81.44,79.03,120.19,119.49,126.28,194.03,154.74,142.23,736.02,278.4,172.41,280.47,382.38,311.69,1621.43,266.7,6201.57,2755.88,975.34,742.45,467.05,1035.56,466.32,559.98,301.12,284.12,263.17,293.82,166.14,170.43,168.1,210.85,228.78,192.9,172.98,181.49,157.78,153.35,143.52,131.98,187.5,121.67,112.22,114.56,114.43,109.02,106.04,95.21,94.2,94.15,94.39,147.66,133.58,136.55,149.03,156.18,167.79,220.08,177.38,150.18,136.51,146.1,129.76,132.6,113.83,134.44,123.42,126.97,132.39,132.25,144.19,688.52,610.84,373.06,274.49,206.78,169.87,152.81,137.88,166.11,123.83,122.71,121.63,121.54,122.43,113.92,570.28,676.7,833.27,1885.27,930.88,596.88,438.8,354.3,313.93,299.5,339.25,247.88,352.85,246.4,290.07,244.66,241.11,263.18,217.61,372.03,608.21,409.23,313.06,274.82,237.07,202.15,410.04,617.32,487.42,561.62,637.78,679.33,589.79,407.74,470.82,304.64,272.31,232.25,212.59,176.48,168.57,155.83,153.82,151.11,146.43,150.19,237.08,799.75,705.91,382.01,1492.97,1648.52,918.88,1039.13,690.46,594.92,5225.97,3155.71,1314.46,801.78,712.02,526.83,417.0,318.03,576.59,1452.37,999.53,635.03,455.28,345.47,301.68,291.78,250.84,250.81,240.07,253.13,273.56,214.81,198.02,181.01,145.4,544.31,361.31,314.78,369.7,387.07,446.33,306.94,252.55,306.85,212.1,172.85,162.86,153.86,153.69,162.32,185.13,166.38,154.53,153.7,143.47,142.38,147.68,129.28,107.91,104.9,103.87,101.85,99.85,98.82,96.82,95.56,94.85,95.57,93.79,93.75,92.14,90.81,89.75,88.78,87.8,86.76,92.09,84.74,83.74,81.13,80.83,80.28,78.98,77.8,76.8,75.8,73.82,72.82,72.8,71.8,70.99,66.47,71.23,70.98,69.96,67.28,69.28,69.17,68.11,68.05,68.0,66.97,66.92,65.91,65.87,64.86,64.84,64.81,65.76,65.71,64.74,64.22,62.75,61.78,65.36,60.63,60.71,58.89,58.77,57.78,57.79,56.78,56.81,55.78,55.77,54.78,54.77,53.79,53.78,52.79,53.73,51.82,50.89,50.81,49.82,48.85,48.83,47.85,47.84,46.87,45.87,45.86,44.88,43.9,43.89,42.91,42.91,41.93,40.95,40.94,39.96,38.98,38.97,37.99,37.99,37.0,36.07,36.1,37.85,36.99,36.99,36.98,37.96,37.96,40.89,41.86,41.86,41.85,41.85,41.85,41.87,41.84,41.84,41.83,40.26,42.47,41.99,41.83,41.82,41.81,41.8,41.8,41.79,37.8,40.82,37.61,40.58,41.64,43.38,39.6,35.71,34.76,34.76,34.79,34.79,34.31,33.68,34.77,32.91,32.73
+42.89,54.05,49.82,58.14,58.75,62.72,61.5,61.47,60.48,52.67,51.68,51.66,51.65,51.63,51.62,51.35,51.63,51.7,51.6,126.29,52.2,51.64,52.17,51.85,51.54,51.67,51.55,51.51,51.5,52.34,57.97,65.15,70.87,76.64,81.44,76.66,120.42,109.19,152.89,194.04,154.74,142.24,581.61,259.2,163.01,280.46,333.86,311.64,1543.59,241.02,6186.22,2252.42,748.46,685.58,491.55,548.39,592.35,417.02,301.26,643.01,360.11,241.97,140.19,174.75,184.5,208.27,177.67,172.27,168.06,162.9,157.82,151.8,137.96,131.97,122.08,113.18,109.19,109.14,109.09,111.6,106.04,95.55,94.2,94.16,94.13,121.58,122.14,135.02,200.94,489.41,167.79,171.28,248.76,156.14,138.39,205.98,156.31,118.85,115.92,122.1,131.61,126.97,134.01,132.24,140.89,688.49,610.88,373.06,302.98,216.17,174.29,152.84,210.78,159.44,165.56,138.16,131.21,148.62,124.24,99.73,493.37,685.03,833.15,1885.27,911.53,876.01,473.06,430.1,358.42,308.15,286.75,263.4,247.53,246.3,271.17,214.15,216.33,216.59,197.53,318.56,569.74,402.12,313.03,275.91,247.88,204.14,421.72,594.5,487.71,562.04,511.03,612.57,546.85,407.84,377.82,318.76,272.27,285.41,258.1,211.82,183.27,196.68,167.25,175.8,165.42,164.44,237.29,799.49,789.51,459.42,1493.18,2664.31,1182.17,1108.53,689.82,759.16,5316.49,2848.2,1372.1,1176.34,685.7,488.95,410.25,300.72,576.29,1385.79,1042.59,737.75,647.39,395.68,376.67,323.42,264.0,238.91,230.38,237.93,240.0,262.65,194.04,180.96,153.91,544.62,405.96,290.94,251.47,336.73,504.5,329.84,252.54,212.79,210.02,172.93,166.1,153.94,153.71,185.42,185.15,166.43,154.51,151.43,143.47,142.38,140.32,128.52,107.91,104.91,112.66,101.86,99.85,98.82,96.82,95.26,94.85,94.8,93.79,93.75,92.14,90.81,89.75,88.78,87.73,86.76,85.75,84.74,83.74,81.21,80.83,79.82,78.81,77.8,77.44,75.8,73.82,72.82,72.8,71.8,71.16,66.47,71.24,71.06,69.96,67.28,69.29,69.17,68.11,68.05,67.99,66.97,66.92,65.91,65.87,64.86,64.84,64.81,65.76,64.76,64.74,64.21,63.32,68.25,62.04,60.63,59.77,58.78,58.77,57.8,59.02,57.77,56.77,55.78,55.79,55.02,54.77,53.79,53.78,52.79,52.78,51.8,50.81,50.8,49.86,48.84,48.83,47.85,47.84,46.85,45.88,45.86,44.88,43.91,43.95,44.52,42.91,41.93,40.95,40.94,39.96,38.98,38.97,38.06,37.99,37.0,36.03,36.02,36.99,36.99,36.99,36.98,37.96,37.96,40.89,41.86,41.86,41.85,41.85,41.85,41.84,41.84,41.84,42.74,40.26,42.77,41.99,42.69,41.82,41.81,41.8,41.8,42.05,37.8,40.7,37.61,56.77,41.67,44.2,39.83,35.71,34.76,34.76,34.79,34.79,34.72,33.68,33.68,32.75,32.98
+42.67,48.82,50.9,58.14,58.75,60.97,61.53,61.5,60.48,52.73,51.8,51.91,51.83,51.84,51.81,58.62,53.43,52.97,51.99,51.97,52.57,58.2,52.21,56.53,64.97,52.39,52.02,51.97,51.97,52.82,59.39,88.11,130.0,78.13,83.04,77.95,183.4,125.89,279.86,277.55,227.2,168.02,643.39,326.12,202.39,350.77,424.24,426.65,1854.77,328.08,6574.16,2877.84,1027.24,1081.43,789.97,834.62,714.73,601.73,526.14,474.31,418.08,432.44,141.79,170.47,213.85,188.31,179.06,174.24,168.03,162.9,157.83,154.94,140.95,140.82,143.05,147.9,125.68,117.11,109.09,109.03,166.61,165.13,130.28,104.25,113.09,136.91,145.05,164.15,180.44,213.74,219.37,217.32,167.42,150.19,135.12,132.91,129.77,118.86,113.84,118.91,123.42,126.98,136.08,132.26,140.9,688.57,779.08,373.13,288.93,225.2,186.94,153.94,137.83,132.74,136.91,127.1,121.62,141.13,127.23,100.6,493.32,676.4,850.21,1884.45,855.05,596.65,438.68,446.91,294.57,342.75,355.13,364.97,247.53,246.34,242.25,488.23,232.61,216.62,197.52,318.59,589.75,497.19,439.37,274.82,243.69,235.71,455.16,658.5,524.32,579.16,449.71,538.95,604.99,445.24,323.7,304.62,272.27,232.34,212.6,176.51,168.59,155.86,153.81,151.13,146.4,143.9,237.06,799.64,713.74,839.1,2022.21,1647.67,1167.27,1038.93,689.88,583.67,5166.18,2848.37,1215.4,801.36,600.69,488.9,410.22,300.72,576.35,1385.4,967.06,634.22,455.08,345.39,301.68,271.8,250.86,238.74,230.35,237.88,234.7,214.83,193.98,180.96,146.8,544.31,361.25,290.81,251.36,336.64,446.18,306.94,284.61,212.8,204.46,172.9,162.94,157.67,153.71,162.33,185.18,166.66,154.51,151.42,143.47,142.61,140.33,128.53,107.91,104.91,104.0,101.86,99.85,98.97,96.82,95.26,94.85,96.12,94.04,93.75,92.14,90.81,90.03,88.78,87.75,86.76,85.75,84.74,83.74,81.13,80.83,82.82,78.9,77.8,76.8,75.8,73.95,72.82,72.8,71.8,70.99,66.47,71.23,70.98,69.96,67.28,81.51,71.39,68.11,68.05,67.99,66.97,66.92,65.91,65.87,64.86,64.84,64.81,65.86,64.76,65.18,63.75,62.91,61.76,61.74,60.63,59.79,58.78,58.77,57.78,57.77,56.78,56.77,55.78,55.77,54.78,54.77,53.79,53.78,52.79,52.78,51.8,50.81,50.8,49.82,48.84,48.83,47.85,47.84,46.85,45.87,45.87,44.88,43.9,43.89,42.91,42.94,42.01,40.95,40.94,39.96,38.98,38.97,37.99,37.99,37.0,36.01,36.02,38.88,36.99,36.99,37.06,37.96,37.96,40.89,43.39,41.86,41.85,41.85,41.85,41.84,41.84,41.84,41.83,40.26,40.65,41.99,42.03,41.87,41.81,41.8,41.8,41.79,37.8,40.65,37.61,40.58,41.64,41.59,39.6,35.71,34.76,34.76,34.79,34.92,33.81,33.68,33.68,32.71,32.73
+43.28,49.89,49.82,58.14,58.75,60.99,65.56,61.47,60.47,52.67,51.68,51.66,51.65,51.63,51.62,51.35,51.63,51.61,51.6,51.59,51.97,52.41,52.37,51.55,51.54,51.53,51.52,51.6,52.15,53.01,59.39,65.15,71.41,76.64,81.44,76.66,107.98,101.43,119.46,194.03,154.73,142.24,523.24,259.2,163.01,280.46,400.29,337.96,1543.59,240.96,6186.22,2252.13,700.72,664.28,454.34,621.94,525.79,386.23,301.29,314.64,580.04,226.02,140.23,170.42,168.09,183.25,177.67,172.29,168.03,162.9,157.83,189.25,137.97,173.76,125.97,113.16,109.18,109.15,109.09,109.05,131.45,97.42,94.73,106.88,94.65,98.99,167.86,147.94,169.51,155.37,167.79,171.27,181.97,279.9,164.27,163.21,129.78,118.86,113.85,118.92,123.43,126.98,132.39,132.26,140.9,688.45,651.31,373.13,276.59,206.76,190.47,202.04,163.74,147.74,126.68,122.7,122.01,148.62,125.71,107.66,618.92,693.45,833.27,1885.27,880.11,794.64,462.51,354.4,310.58,282.3,252.96,290.52,247.55,246.35,242.34,214.2,216.39,216.63,197.54,318.68,569.87,402.15,313.06,274.84,237.09,200.06,392.65,594.22,487.34,561.57,491.46,589.09,622.94,468.12,323.65,304.64,297.45,232.32,212.61,176.5,168.57,155.84,153.88,151.08,146.44,143.88,237.06,799.75,705.96,381.89,1492.97,1648.41,918.97,1039.23,689.63,583.3,5164.46,2847.06,1214.4,800.79,600.36,488.65,410.28,326.63,577.57,1386.1,967.55,634.39,455.2,345.57,301.82,271.89,258.91,238.8,230.36,237.81,234.56,214.69,193.88,180.89,145.37,544.23,384.22,290.79,251.38,336.64,446.16,307.22,298.3,212.81,202.2,175.76,168.15,153.88,153.74,162.32,185.12,244.62,154.52,151.42,143.47,142.38,140.32,128.52,107.91,105.0,103.87,101.86,99.85,98.85,101.68,102.78,94.85,94.83,93.79,94.67,92.22,90.81,89.75,88.78,87.73,86.76,85.75,84.74,83.74,81.13,81.19,81.36,78.81,77.8,76.8,75.8,73.82,72.82,72.8,71.8,70.99,66.47,71.23,70.98,73.4,67.28,69.28,69.17,68.11,68.05,67.99,66.97,66.92,65.91,65.87,64.86,64.84,64.81,66.08,65.39,64.84,63.75,62.75,61.76,61.74,60.63,59.77,58.78,58.77,57.78,57.77,56.78,56.77,55.78,55.77,54.78,54.77,53.79,53.78,52.79,52.78,51.81,50.81,50.95,49.82,48.84,48.83,47.85,47.84,46.85,45.87,45.86,44.88,43.9,43.89,42.91,42.91,41.93,40.95,40.94,39.96,38.98,38.97,37.99,37.99,37.36,36.02,36.02,36.99,36.99,36.99,36.98,37.96,37.96,40.89,41.86,41.86,42.02,41.85,41.85,41.84,41.84,41.84,41.83,40.26,40.79,41.99,42.82,41.82,41.81,41.8,41.8,41.79,37.8,40.65,37.61,40.58,41.64,41.59,39.6,35.71,34.76,34.76,34.79,34.79,33.73,33.68,33.68,32.71,32.73
+42.67,48.82,49.81,58.14,59.92,60.79,61.83,62.08,61.74,52.67,51.9,51.66,51.94,52.71,53.44,51.39,52.29,51.61,52.71,54.18,51.58,51.57,51.56,51.55,51.54,51.53,51.97,51.51,51.5,52.34,57.97,68.02,70.87,76.64,81.44,76.66,107.99,101.43,119.47,194.03,159.47,142.24,490.88,259.21,163.02,280.46,333.85,311.6,1665.09,241.02,6348.74,2397.81,700.98,659.18,441.75,514.08,466.32,386.14,327.65,283.95,263.22,225.95,160.44,170.43,168.14,183.27,177.65,172.27,168.03,162.91,157.82,151.81,137.97,131.98,122.08,113.19,127.41,167.6,259.59,111.93,106.05,95.22,113.95,94.15,107.4,99.0,119.53,129.28,187.05,155.37,175.54,171.3,170.75,150.18,135.13,132.91,130.61,118.87,113.82,133.57,124.13,133.63,220.63,313.73,195.5,767.62,704.99,385.33,274.54,206.76,255.61,172.85,139.79,160.03,125.44,131.77,121.62,164.46,124.97,111.01,493.42,676.61,833.34,1884.45,855.05,596.65,438.68,354.21,294.37,338.92,253.88,247.83,247.56,246.38,242.3,214.17,216.33,216.59,197.49,318.68,619.48,402.12,313.06,279.76,254.81,200.13,392.88,596.52,487.58,561.95,449.78,539.09,535.1,407.87,323.7,353.65,272.33,233.72,229.5,176.54,168.69,157.15,153.87,215.29,146.43,143.86,236.95,799.43,705.64,381.83,1537.11,2041.72,942.26,1171.22,690.07,583.73,5166.18,2848.53,1215.79,801.61,600.8,488.77,429.82,300.67,633.43,1386.18,968.04,672.73,523.02,350.91,302.86,271.85,250.89,238.76,230.37,237.87,234.64,214.76,193.93,181.34,158.91,548.54,361.17,310.11,264.83,336.67,446.26,306.96,252.38,212.71,198.56,231.76,162.87,153.87,153.7,162.32,205.85,166.45,154.52,171.97,193.89,142.51,140.33,128.53,107.91,104.91,103.87,101.86,99.85,98.82,96.82,95.26,94.85,94.8,93.79,93.75,92.14,90.81,89.75,88.78,87.73,86.76,87.24,85.16,84.59,81.13,80.83,79.82,78.81,77.8,76.8,75.8,73.82,72.88,72.86,71.8,70.99,66.47,71.23,70.98,69.96,67.28,73.08,69.17,68.12,68.76,67.99,66.97,66.92,65.91,65.87,64.86,64.84,64.81,65.76,64.76,64.74,63.75,62.75,61.76,61.77,60.9,59.8,58.78,58.77,57.78,57.77,56.78,56.77,55.78,55.78,54.78,54.77,53.79,53.78,52.79,52.78,51.8,50.81,50.8,49.82,48.84,48.83,47.85,47.84,46.85,45.87,46.05,44.88,43.9,43.89,42.91,42.91,42.03,40.95,40.94,40.03,38.98,38.97,37.99,37.99,37.01,36.14,36.02,37.07,36.99,36.99,36.98,37.99,37.97,40.89,41.86,42.16,41.85,41.85,41.85,41.84,41.84,41.84,41.83,40.26,40.65,41.99,41.83,41.82,41.83,41.8,41.8,41.79,37.8,40.65,37.61,40.58,41.66,41.59,39.6,35.71,34.76,34.84,34.79,34.79,33.73,33.68,33.68,32.71,32.73
+42.67,48.92,49.81,58.14,58.75,60.79,61.5,61.47,60.47,52.67,51.68,51.66,51.65,51.63,51.62,51.35,51.63,51.63,51.6,52.44,52.23,51.58,51.56,51.55,51.54,51.53,51.52,51.51,51.5,52.34,57.97,67.08,70.9,76.93,81.47,76.66,108.86,101.42,119.45,194.04,154.74,142.84,488.05,259.2,163.01,294.52,339.36,311.68,1543.59,241.03,6186.45,2252.72,700.81,659.46,561.29,514.08,474.79,420.4,301.36,289.67,263.28,232.93,174.85,190.72,215.55,189.77,181.8,225.54,211.38,162.88,157.82,151.8,137.95,131.96,122.47,113.15,123.58,109.14,109.1,121.25,106.04,95.22,94.2,94.15,94.13,99.0,122.81,128.26,148.64,155.39,167.81,171.27,177.38,150.18,135.1,134.68,178.5,118.84,113.82,119.62,123.4,126.99,142.66,137.49,140.9,688.49,610.84,373.13,345.86,235.58,185.55,166.6,146.8,149.33,125.04,122.7,121.62,121.54,122.43,103.24,493.44,677.43,850.2,1890.64,855.6,596.88,438.8,354.36,294.49,274.7,252.98,247.83,338.68,326.98,262.16,239.47,221.13,216.62,197.54,318.65,632.84,435.29,329.02,274.96,237.15,200.15,392.85,594.55,487.61,561.99,449.97,539.28,535.24,435.89,324.07,304.71,273.25,232.31,212.72,176.55,168.62,155.88,153.85,152.49,146.46,143.89,237.02,799.43,705.75,381.92,1492.87,1647.77,918.39,1055.46,689.57,677.9,5165.02,2955.5,1225.15,836.25,719.42,511.76,410.28,300.74,576.41,1385.33,1025.22,634.45,459.99,345.71,403.47,271.9,250.89,238.73,230.34,237.84,288.21,221.98,193.98,181.0,147.26,544.28,361.31,290.84,251.58,336.74,497.74,306.99,269.53,212.73,192.64,172.83,162.84,153.84,157.88,162.38,192.74,166.4,154.51,151.43,143.48,142.39,140.33,128.52,109.35,110.75,106.21,101.86,99.85,98.82,96.82,95.26,94.85,94.8,93.79,93.75,92.14,90.81,89.75,88.78,87.73,86.76,85.75,84.74,83.74,81.13,80.83,79.82,78.81,78.11,76.8,75.8,73.82,72.82,72.8,71.8,70.99,66.47,71.23,70.98,69.96,67.28,69.28,69.17,68.11,68.05,68.79,68.32,66.92,65.91,65.87,64.86,64.84,65.21,65.76,64.76,64.74,64.79,62.75,61.76,61.74,60.63,59.77,58.78,58.77,57.78,57.77,56.78,56.77,55.78,55.77,55.07,54.77,53.79,53.78,52.79,52.78,51.8,50.81,50.8,49.88,48.87,48.83,47.85,47.84,46.86,45.87,45.86,44.88,43.9,43.89,42.91,42.91,41.93,40.95,40.94,39.96,39.13,38.97,37.99,37.99,37.0,36.02,36.1,36.99,36.99,36.99,36.98,38.04,38.06,40.89,41.86,41.86,41.85,41.85,41.85,41.84,41.84,41.84,41.83,40.31,40.65,41.99,41.83,41.82,41.98,42.31,41.8,41.79,37.8,40.65,38.17,40.58,41.64,41.59,39.6,35.71,34.76,34.76,34.9,34.81,33.73,33.68,33.68,32.71,33.09
+42.75,67.95,50.43,58.14,58.75,62.81,61.5,61.47,60.52,52.67,51.68,51.66,51.65,51.63,51.62,51.35,51.63,51.61,53.27,51.63,51.58,51.86,52.01,51.55,51.54,51.53,51.52,51.51,51.53,52.34,57.97,65.15,70.87,76.64,81.44,76.66,107.99,101.43,119.46,194.03,154.73,148.69,482.38,269.52,163.0,280.41,371.74,311.65,1873.65,243.53,6609.81,2423.56,921.7,985.11,592.45,513.77,466.43,386.09,308.61,283.99,263.22,225.93,143.35,214.75,282.39,235.65,177.63,257.43,269.93,162.88,157.83,215.01,137.94,131.97,122.07,113.16,123.17,109.47,109.09,109.05,106.04,95.21,94.19,94.17,94.12,99.0,119.53,128.25,148.64,155.38,217.3,217.32,220.16,150.73,135.13,132.92,129.77,118.86,113.85,118.91,123.41,126.98,144.52,132.24,140.89,688.49,610.84,385.33,582.74,225.2,169.87,164.18,137.87,132.76,123.81,122.72,121.62,121.53,122.44,99.74,493.37,676.56,833.27,1885.27,855.52,597.06,438.88,357.06,294.47,274.7,272.25,247.83,247.62,246.38,294.91,225.78,221.82,729.96,221.79,417.71,638.63,679.52,354.61,274.91,237.09,200.12,402.85,594.41,487.58,573.41,546.86,655.5,535.15,426.81,416.45,304.66,272.33,245.18,258.1,203.25,178.62,175.97,154.28,151.17,146.49,143.91,237.1,800.01,706.19,381.95,1492.97,1648.31,919.13,1127.87,823.73,685.36,5994.84,2848.53,1214.64,927.54,726.89,511.76,410.58,314.34,591.23,1385.71,967.63,634.68,455.28,345.47,301.7,271.82,250.92,238.81,230.36,237.85,234.61,234.24,193.99,180.94,145.4,544.15,361.11,290.75,251.36,336.76,452.62,306.94,252.47,212.74,192.66,172.88,172.79,153.92,153.69,162.31,185.11,166.38,184.22,156.79,154.89,155.79,140.33,128.52,107.91,104.91,103.87,101.85,99.85,98.82,96.82,95.63,95.74,94.81,93.79,93.75,92.14,90.81,89.75,88.78,87.73,86.76,85.75,84.74,83.74,81.13,80.83,79.82,78.81,77.8,76.8,75.8,73.82,72.82,72.8,71.8,70.99,66.47,71.24,70.98,69.96,68.31,69.28,69.17,68.11,68.05,67.99,66.97,67.14,65.91,65.87,64.86,64.84,64.81,65.76,64.76,64.74,64.48,62.75,61.86,61.91,60.63,59.77,58.78,58.77,57.78,57.77,56.78,56.77,55.78,55.77,54.78,54.77,53.79,53.78,52.8,52.78,51.8,50.81,50.84,49.82,48.86,48.83,47.86,47.84,46.86,45.87,45.87,44.88,43.9,43.89,42.91,42.91,41.93,40.95,40.94,40.79,41.87,38.97,37.99,37.99,37.0,36.01,36.02,36.99,37.02,36.99,36.98,37.99,37.96,41.06,41.86,41.93,41.91,41.85,41.85,41.84,41.84,41.84,41.83,40.26,40.65,41.99,41.83,41.82,41.81,41.8,41.8,41.79,37.97,40.65,37.61,40.58,41.85,41.62,39.6,35.71,34.76,35.43,35.41,34.79,33.73,33.68,33.68,32.71,32.76
+42.67,48.82,49.81,58.14,58.75,60.79,61.5,61.47,63.38,52.67,51.68,51.66,51.65,51.63,51.62,51.35,51.8,51.61,51.6,51.59,51.58,51.57,51.56,51.55,51.54,51.53,51.52,51.51,62.93,52.34,57.97,65.15,70.87,76.64,81.44,76.7,107.99,101.43,138.56,194.04,154.75,158.68,482.39,274.24,163.01,280.46,333.89,311.69,1734.44,304.45,6464.39,2252.57,727.46,659.25,465.21,528.79,466.38,386.32,301.31,302.41,363.08,250.53,455.97,198.79,168.77,189.04,289.96,218.51,252.94,200.98,179.27,151.81,137.98,131.97,122.07,113.17,109.18,109.14,109.09,109.04,106.05,95.22,94.2,94.16,94.13,99.55,120.18,128.6,150.19,164.21,167.83,171.25,230.44,164.77,160.08,138.32,138.5,121.86,121.81,125.45,123.4,131.33,142.21,132.22,141.72,688.45,610.84,377.16,368.22,245.59,180.14,174.14,139.31,132.76,123.81,122.71,121.63,121.53,122.41,99.74,493.32,676.44,833.09,1885.13,855.2,596.82,438.8,360.96,299.78,364.15,277.91,278.76,354.18,370.64,283.51,231.74,324.42,216.59,197.48,318.46,569.65,402.12,313.01,275.91,245.35,240.81,432.16,676.74,489.4,573.42,735.26,880.38,591.94,492.52,323.58,328.31,272.23,344.67,212.58,176.51,177.62,155.87,153.82,151.09,146.44,143.85,237.02,799.75,705.96,457.78,1502.7,1755.57,998.0,1039.93,746.35,630.33,5165.79,2847.87,1214.89,801.36,601.15,620.63,410.79,300.76,576.41,1385.71,967.55,634.45,455.01,345.36,301.65,271.75,250.81,238.69,230.27,237.75,234.54,214.68,193.89,180.91,145.39,544.15,361.11,290.8,251.35,336.55,446.09,306.84,252.31,212.67,192.61,172.96,162.85,153.86,153.69,162.32,185.18,166.43,154.5,151.45,148.91,142.38,140.32,128.52,107.91,105.05,104.78,102.81,101.64,98.83,96.82,95.41,96.09,94.8,93.79,93.75,92.22,91.64,90.39,89.42,88.12,86.76,86.07,85.03,83.74,81.13,80.83,79.82,78.81,77.8,76.8,75.8,73.82,72.82,72.8,71.8,70.99,66.7,71.24,70.98,69.96,67.28,72.51,69.17,68.11,77.47,68.0,67.04,67.37,65.91,65.87,64.86,64.84,64.81,65.76,64.76,70.65,63.76,62.75,61.76,61.74,60.63,59.8,58.78,58.77,57.78,57.77,56.78,56.77,55.82,55.77,54.78,54.81,53.79,53.78,52.79,52.94,51.8,50.81,50.8,49.82,48.84,48.84,47.85,47.84,46.85,45.88,45.86,44.88,43.9,43.95,42.91,42.96,41.93,40.95,40.94,40.02,38.98,38.97,38.19,37.99,37.0,36.01,36.31,36.99,37.01,37.56,36.99,37.96,37.96,40.89,41.86,41.86,41.85,41.85,41.85,41.84,41.84,41.84,41.83,40.26,40.65,41.99,41.83,41.82,41.81,41.8,41.8,41.79,37.8,40.65,37.61,40.58,41.64,41.59,39.6,35.71,34.76,34.76,34.79,34.82,33.74,34.13,33.99,32.71,32.73
+42.67,49.05,50.18,58.14,58.99,60.79,63.07,61.47,60.48,52.67,51.68,51.66,51.65,51.63,51.66,51.38,51.63,51.61,51.6,51.59,52.61,51.57,51.56,51.55,51.54,60.08,51.85,51.51,51.5,52.77,62.72,65.8,70.87,76.64,82.01,76.66,107.98,103.45,138.14,210.43,163.16,146.79,482.36,259.2,163.03,280.45,333.87,312.55,1562.84,240.99,6186.56,2367.22,700.81,847.92,491.55,513.95,466.38,386.27,303.75,353.69,271.43,236.49,196.51,206.55,226.15,215.02,177.69,172.27,168.03,189.09,157.85,151.81,137.97,132.04,124.39,113.17,109.18,113.16,111.7,109.03,106.03,95.2,94.2,94.16,94.12,99.0,119.53,128.26,148.64,155.38,167.81,171.29,167.4,150.18,141.28,172.54,146.72,127.44,113.82,118.9,128.89,128.04,149.84,132.23,148.07,688.52,731.34,412.13,298.58,226.89,169.83,152.78,160.13,132.77,123.79,122.7,121.64,121.54,122.43,99.73,493.32,729.63,1348.33,2882.81,855.44,693.86,520.17,534.74,294.47,274.67,252.96,247.79,247.53,246.34,242.28,214.15,216.36,216.63,197.53,318.62,569.74,424.95,337.3,274.78,237.02,200.07,414.39,594.36,567.64,561.8,462.81,556.66,534.74,440.54,377.82,305.74,272.33,232.25,212.6,176.51,172.33,171.44,206.96,151.16,156.4,143.93,270.73,860.14,706.02,381.98,1494.05,1874.86,1152.48,1074.2,720.49,616.77,5166.77,3090.04,1399.29,905.33,600.69,622.77,410.84,300.82,621.48,1385.71,967.46,660.03,511.51,345.86,301.78,277.64,250.89,238.74,245.24,358.14,235.35,214.81,193.98,180.99,152.09,544.36,377.61,290.92,251.37,336.74,446.41,306.99,252.38,212.77,220.95,195.13,162.94,154.94,153.7,162.32,185.12,166.38,154.49,151.41,143.47,142.38,140.32,128.52,107.91,104.9,104.56,102.53,99.85,98.83,97.02,95.26,94.85,94.8,93.79,93.75,92.14,90.81,92.47,92.32,87.73,86.76,85.75,84.74,83.75,81.13,80.83,79.82,78.81,77.8,76.8,75.8,73.82,72.82,72.8,71.93,70.99,66.47,74.59,70.98,69.96,67.28,71.72,69.17,68.11,68.05,68.0,66.97,66.92,65.91,65.87,64.86,64.84,64.81,65.76,64.76,64.74,63.75,62.79,61.76,61.83,60.63,59.77,58.78,58.77,57.78,57.77,56.78,56.77,55.78,55.77,54.78,54.77,53.79,53.78,52.79,52.78,51.8,50.81,50.8,49.82,48.84,48.83,47.85,47.84,46.85,45.87,45.9,44.88,43.9,44.07,43.15,42.91,41.93,40.95,40.94,39.96,38.98,38.97,37.99,37.99,37.0,36.01,36.02,36.99,36.99,38.93,36.98,37.96,37.96,40.89,41.86,41.86,41.85,41.85,41.85,41.84,41.84,41.84,41.83,40.26,40.65,41.99,41.83,41.82,41.81,42.05,41.8,41.86,37.8,40.65,37.61,40.58,41.64,41.59,39.6,35.71,34.76,34.76,34.79,34.79,33.73,33.68,33.68,32.71,32.83
diff --git a/tests/test_determinist.py b/tests/test_determinist.py
index fea8727c36bbe9f202a152de186f35171658e731..4669b526c0088d83f1d40bc2bb8dd7314591b502 100644
--- a/tests/test_determinist.py
+++ b/tests/test_determinist.py
@@ -13,29 +13,29 @@ class TestMetrics(unittest.TestCase):
 
     expected = {
         'RMSE':
-            [[777.03427238],
-             [776.87847854],
-             [777.80021654],
-             [778.15108180],
-             [778.61486998]],
+            [[[777.03427238]],
+             [[776.87847854]],
+             [[777.80021654]],
+             [[778.15108180]],
+             [[778.61486998]]],
         'NSE':
-            [[0.71891219],
-             [0.71902490],
-             [0.71835777],
-             [0.71810361],
-             [0.71776748]],
+            [[[0.71891219]],
+             [[0.71902490]],
+             [[0.71835777]],
+             [[0.71810361]],
+             [[0.71776748]]],
         'KGE':
-            [[0.74808767],
-             [0.74610620],
-             [0.74411103],
-             [0.74301085],
-             [0.74176777]],
+            [[[0.74808767]],
+             [[0.74610620]],
+             [[0.74411103]],
+             [[0.74301085]],
+             [[0.74176777]]],
         'KGEPRIME':
-            [[0.81314075],
-             [0.81277485],
-             [0.81203242],
-             [0.81178671],
-             [0.81138658]]
+            [[[0.81314075]],
+             [[0.81277485]],
+             [[0.81203242]],
+             [[0.81178671]],
+             [[0.81138658]]]
     }
 
     def test_metrics_2d(self):
@@ -51,7 +51,7 @@ class TestMetrics(unittest.TestCase):
             with self.subTest(metric=metric):
                 numpy.testing.assert_almost_equal(
                     evalhyd.evald(_obs[0], _prd[0], [metric])[0],
-                    self.expected[metric][0]
+                    [self.expected[metric][0]]
                 )
 
 
@@ -97,7 +97,7 @@ class TestMasking(unittest.TestCase):
 
     def test_conditions(self):
         with self.subTest(condtions="observed streamflow values"):
-            cdt = numpy.array([["q_obs{<2000,>3000}"]], dtype='|S32')
+            cdt = numpy.array(["q_obs{<2000,>3000}"], dtype='|S32')
 
             msk = (_obs[0] < 2000) | (_obs[0] > 3000)
 
@@ -110,7 +110,7 @@ class TestMasking(unittest.TestCase):
             )
 
         with self.subTest(condtions="observed streamflow statistics"):
-            cdt = numpy.array([["q_obs{>=median}"]], dtype='|S32')
+            cdt = numpy.array(["q_obs{>=median}"], dtype='|S32')
 
             msk = _obs[0] >= numpy.median(_obs)
 
@@ -126,27 +126,65 @@ class TestMasking(unittest.TestCase):
 class TestMissingData(unittest.TestCase):
 
     def test_nan(self):
+        for metric in ('RMSE', 'NSE', 'KGE', 'KGEPRIME'):
+            obs = numpy.array(
+                [[4.7, numpy.nan, 5.5, 2.7, 4.1]]
+            )
+            prd = numpy.array(
+                [[5.3, 4.2, 5.7, 2.3, numpy.nan],
+                 [numpy.nan, 4.2, 4.7, 4.3, 3.3],
+                 [5.3, 5.2, 5.7, numpy.nan, 3.9]]
+            )
+
+            with self.subTest(metric=metric):
+                res = evalhyd.evald(obs, prd, [metric])[0]
+
+                for i in range(prd.shape[0]):
+                    msk = ~numpy.isnan(obs[0]) & ~numpy.isnan(prd[i])
+
+                    numpy.testing.assert_almost_equal(
+                        # missing data flagged as NaN
+                        res[[i]],
+                        # missing data pairwise deleted from series
+                        evalhyd.evald(
+                            obs[:, msk],
+                            prd[i, msk][numpy.newaxis],
+                            [metric]
+                        )[0]
+                    )
+
+
+class TestUncertainty(unittest.TestCase):
+
+    def test_bootstrap(self):
+        prd_1yr = numpy.genfromtxt(
+            "./data/q_prd_1yr.csv", delimiter=',', skip_header=1
+        )
+        obs_1yr = numpy.genfromtxt(
+            "./data/q_obs_1yr.csv", delimiter=',', skip_header=1
+        )[numpy.newaxis]
+        dts_1yr = numpy.genfromtxt(
+            "./data/q_obs_1yr.csv", delimiter=',', dtype=str, skip_footer=1
+        )
+
+        obs_3yrs = numpy.hstack((obs_1yr,) * 3)
+        prd_3yrs = numpy.hstack((prd_1yr,) * 3)
+
         for metric in ('RMSE', 'NSE', 'KGE', 'KGEPRIME'):
             with self.subTest(metric=metric):
                 numpy.testing.assert_almost_equal(
-                    # missing data flagged as NaN
-                    evalhyd.evald(
-                        [[4.7, numpy.nan, 5.5, 2.7, 4.1]],
-                        [[5.3, 4.2, 5.7, 2.3, numpy.nan],
-                         [numpy.nan, 4.2, 4.7, 4.3, 3.3],
-                         [5.3, 5.2, 5.7, numpy.nan, 3.9]],
-                        [metric]
-                    )[0],
-                    # missing data pairwise deleted from series
+                    # bootstrap with only one year of data
+                    # (compare last sample only to have matching dimensions)
                     evalhyd.evald(
-                        [[4.7, 5.5, 2.7],
-                         [5.5, 2.7, 4.1],
-                         [4.7, 5.5, 4.1]],
-                        [[5.3, 5.7, 2.3],
-                         [4.7, 4.3, 3.3],
-                         [5.3, 5.7, 3.9]],
-                        [metric]
-                    )[0]
+                        obs_1yr, prd_1yr, [metric],
+                        bootstrap={
+                            "n_samples": 10, "len_sample": 3, "summary": 0
+                        },
+                        dts=dts_1yr
+                    )[0][..., [0]],
+                    # repeat year of data three times to correspond to a
+                    # bootstrap sample of length 3
+                    evalhyd.evald(obs_3yrs, prd_3yrs, [metric])[0]
                 )
 
 
@@ -166,6 +204,9 @@ if __name__ == '__main__':
     test_suite.addTests(
         test_loader.loadTestsFromTestCase(TestMissingData)
     )
+    test_suite.addTests(
+        test_loader.loadTestsFromTestCase(TestUncertainty)
+    )
 
     runner = unittest.TextTestRunner(verbosity=2)
     result = runner.run(test_suite)
diff --git a/tests/test_probabilist.py b/tests/test_probabilist.py
index 6a86805a409d291fa0b71942e7db0859a3b54b15..3d458ef6a9eceff66c3b35918d62b6224087e8db 100644
--- a/tests/test_probabilist.py
+++ b/tests/test_probabilist.py
@@ -16,27 +16,27 @@ class TestMetrics(unittest.TestCase):
 
     expected_thr = {
         'BS':
-            [[[[0.1081672, 0.073954980, 0.08681672, numpy.nan]]]],
+            [[[[[0.1081672, 0.073954980, 0.08681672, numpy.nan]]]]],
         'BSS':
-            [[[[0.56240422, 0.66612211, 0.56288391, numpy.nan]]]],
+            [[[[[0.56240422, 0.66612211, 0.56288391, numpy.nan]]]]],
         'BS_CRD':
-            [[[[[0.01335634, 0.15237434, 0.24718520],
-                [0.00550861, 0.15305671, 0.22150309],
-                [0.00753750, 0.11933328, 0.19861250],
-                [numpy.nan, numpy.nan, numpy.nan]]]]],
+            [[[[[[0.01335634, 0.15237434, 0.24718520],
+                 [0.00550861, 0.15305671, 0.22150309],
+                 [0.00753750, 0.11933328, 0.19861250],
+                 [numpy.nan, numpy.nan, numpy.nan]]]]]],
         'BS_LBD':
-            [[[[[0.01244569, 0.14933386, 0.24505537],
-                [0.00801337, 0.14745568, 0.21339730],
-                [0.01719462, 0.10479711, 0.17441921],
-                [numpy.nan, numpy.nan, numpy.nan]]]]]
+            [[[[[[0.01244569, 0.14933386, 0.24505537],
+                 [0.00801337, 0.14745568, 0.21339730],
+                 [0.01719462, 0.10479711, 0.17441921],
+                 [numpy.nan, numpy.nan, numpy.nan]]]]]]
     }
 
     expected_qtl = {
         'QS':
-            [[[[321.1607717,  294.3494105,  265.70418006,
-                236.15648446, 206.03965702]]]],
+            [[[[[321.1607717,  294.3494105,  265.70418006,
+                 236.15648446, 206.03965702]]]]],
         'CRPS':
-            [[[176.63504823]]]
+            [[[[176.63504823]]]]
     }
 
     def test_threshold_metrics(self):
@@ -143,6 +143,50 @@ class TestMissingData(unittest.TestCase):
                 )
 
 
+class TestUncertainty(unittest.TestCase):
+
+    def test_bootstrap(self):
+        thr = numpy.array([[690, 534, 445, numpy.nan]])
+
+        prd_1yr = numpy.genfromtxt(
+            "./data/q_prd_1yr.csv", delimiter=',', skip_header=1
+        )
+        obs_1yr = numpy.genfromtxt(
+            "./data/q_obs_1yr.csv", delimiter=',', skip_header=1
+        )
+        dts_1yr = numpy.genfromtxt(
+            "./data/q_obs_1yr.csv", delimiter=',', dtype=str, skip_footer=1
+        )
+
+        obs_3yrs = numpy.hstack((obs_1yr,) * 3)
+        prd_3yrs = numpy.hstack((prd_1yr,) * 3)
+
+        for metric in ("BS", "BSS", "BS_CRD", "BS_LBD", "QS", "CRPS"):
+            with self.subTest(metric=metric):
+                numpy.testing.assert_almost_equal(
+                    # bootstrap with only one year of data
+                    # (compare last sample only to have matching dimensions)
+                    evalhyd.evalp(
+                        obs_1yr[numpy.newaxis],
+                        prd_1yr[numpy.newaxis, numpy.newaxis],
+                        [metric],
+                        q_thr=thr,
+                        bootstrap={
+                            "n_samples": 10, "len_sample": 3, "summary": 0
+                        },
+                        dts=dts_1yr
+                    )[0][:, :, :, [0]],
+                    # repeat year of data three times to correspond to a
+                    # bootstrap sample of length 3
+                    evalhyd.evalp(
+                        obs_3yrs[numpy.newaxis],
+                        prd_3yrs[numpy.newaxis, numpy.newaxis],
+                        [metric],
+                        q_thr=thr
+                    )[0]
+                )
+
+
 if __name__ == '__main__':
     test_loader = unittest.TestLoader()
     test_suite = unittest.TestSuite()
@@ -159,6 +203,9 @@ if __name__ == '__main__':
     test_suite.addTests(
         test_loader.loadTestsFromTestCase(TestMissingData)
     )
+    test_suite.addTests(
+        test_loader.loadTestsFromTestCase(TestUncertainty)
+    )
 
     runner = unittest.TextTestRunner(verbosity=2)
     result = runner.run(test_suite)