Wednesday, December 3, 2025

#8 Inferences and Agri Action oriented Decisions

 Below is a complete, clean, single-file Streamlit app that:

  • Loads a model output Excel (or multiple files) which contains model outputs (Actual, Predicted, Trend, Seasonal, Residuals, RMSE/MAE, MK results).

  • Runs the agricultural decision engine for the four examples (Irrigation, Crop planning, Fertilizer scheduling, Pest management).

  • Shows an interactive dashboard UI with tables, key metrics and plots.

  • Creates an auto-generated PDF report that contains summaries and embedded plots.

  • Exports each plot as PNG and offers them in a ZIP download.

  • Optionally sends a concise SMS alert (mobile-friendly summary) using Twilio if the user provides credentials.

  • Integrates cleanly so you can drop this into your existing rain-project flow or run standalone.

Save file as e.g. agri_decision_app.py and run:

pip install streamlit pandas numpy matplotlib scikit-learn reportlab openpyxl twilio
streamlit run agri_decision_app.py

(If you don't want SMS, you can skip installing twilio.)


What the app expects in the input Excel

Each Excel file should contain at least these columns (case-insensitive accepted):

  • Actual (observed rainfall)

  • Predicted (model forecast) — can be multiple model columns like ARIMA_Pred, LSTM_Pred, BiLSTM_Pred

  • Trend (trend component or linear trend values)

  • Seasonal (seasonal component)

  • Residuals (residuals)

  • MK_Trend (Mann–Kendall label or similar)

  • RMSE / MAE or model-specific RMSE/MAE columns (optional)

If column names vary, the app tries to be flexible.


The file — single complete app

# agri_decision_app.py
"""
Single-file Streamlit app:
- Load model output Excel(s)
- Generate agricultural decisions for:
  1) Irrigation planning
  2) Crop planning
  3) Fertilizer scheduling
  4) Pest management
- Dashboard: metrics, tables, plots
- PDF report generation with embedded plots
- Export plot PNGs and ZIP
- Optional SMS alerts via Twilio
"""

import os
import io
import math
import zipfile
import tempfile
from datetime import datetime

import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
import streamlit as st

from sklearn.linear_model import LinearRegression
from sklearn.metrics import mean_squared_error, mean_absolute_error

from reportlab.lib.pagesizes import A4
from reportlab.pdfgen import canvas

# Optional Twilio import occurs later only if SMS is requested
# from twilio.rest import Client

st.set_page_config(page_title="Agri Decision Engine", layout="wide")

# ---------------------------
# Helper utilities
# ---------------------------
def read_excel_flexible(uploaded_file):
    """Read uploaded file (streamlit uploader) or path string."""
    try:
        if hasattr(uploaded_file, "read"):
            df = pd.read_excel(uploaded_file)
        else:
            df = pd.read_excel(uploaded_file)
        return df
    except Exception as e:
        st.error(f"Failed to read Excel: {e}")
        return None

def clean_cols(df):
    """Lowercase columns mapping to canonical names; also trim spaces."""
    df = df.copy()
    # strip whitespace from column names
    df.columns = [c.strip() for c in df.columns]
    col_map = {c: c.lower() for c in df.columns}
    df = df.rename(columns=col_map)
    return df

def safe_series(df, col_names):
    """Return first available series among col_names (list)."""
    for c in col_names:
        if c in df.columns:
            return df[c].astype(float).reset_index(drop=True)
    return None

def compute_rmse_mae(y_true, y_pred):
    try:
        mask = (~np.isnan(y_true)) & (~np.isnan(y_pred))
        if mask.sum() == 0:
            return np.nan, np.nan
        y_true = np.asarray(y_true)[mask].astype(float)
        y_pred = np.asarray(y_pred)[mask].astype(float)
        rmse = math.sqrt(mean_squared_error(y_true, y_pred))
        mae = mean_absolute_error(y_true, y_pred)
        return rmse, mae
    except Exception:
        return np.nan, np.nan

def linear_trend(series):
    """Return slope and intercept of linear fit."""
    y = np.asarray(series, dtype=float)
    idx = np.arange(len(y)).reshape(-1,1)
    mask = ~np.isnan(y)
    if mask.sum() < 2:
        return 0.0, float(np.nan)
    reg = LinearRegression()
    reg.fit(idx[mask], y[mask])
    return float(reg.coef_[0]), float(reg.intercept_)

def mk_classify(mk_field):
    """Interpret MK field values into human labels."""
    if mk_field is None or (isinstance(mk_field, float) and np.isnan(mk_field)):
        return "no-data"
    s = str(mk_field).lower()
    if "incre" in s:
        return "increasing"
    if "decre" in s:
        return "decreasing"
    return s

def fill_default_columns(df):
    """Ensure presence of canonical series names by mapping."""
    # Lower-case column names are expected
    # possible names for each
    mapping_candidates = {
        "actual": ["actual", "rain", "observed", "rainfall"],
        "predicted": ["predicted", "forecast", "pred"],
        "seasonal": ["seasonal", "season"],
        "residuals": ["residuals", "resid"],
        "trend": ["trend", "linear_trend", "trend_component"],
        "mk_trend": ["mk_trend", "mann_kendall", "mk"]
    }
    out = {}
    for canon, candidates in mapping_candidates.items():
        for c in candidates:
            if c in df.columns:
                out[canon] = df[c].astype(float).reset_index(drop=True)
                break
        else:
            out[canon] = None
    # Also collect model-specific preds and metrics
    # Look for any column with 'pred' in name
    preds = {c: df[c].astype(float).reset_index(drop=True) for c in df.columns if "pred" in c}
    metrics = {c: df[c].astype(float).reset_index(drop=True) for c in df.columns if any(x in c for x in ["rmse","mae"])}
    return out, preds, metrics

# ---------------------------
# Decision functions (simple rules)
# ---------------------------
def irrigation_decision_logic(actual, predicted, trend_series):
    """Return short irrigation decision string."""
    # Use trend slope and next prediction vs average
    slope, _ = linear_trend(trend_series if trend_series is not None else actual)
    avg_actual = np.nanmean(actual) if actual is not None else np.nan
    next_pred = float(predicted.iloc[-1]) if (predicted is not None and len(predicted) > 0) else np.nan

    decisions = []
    if not np.isnan(slope):
        if slope > 0.01:
            decisions.append("Long-term water demand is rising. Plan for increased storage and supply.")
        elif slope < -0.01:
            decisions.append("Long-term water demand is decreasing. Review storage expansion plans.")
        else:
            decisions.append("Long-term water demand is stable.")
    else:
        decisions.append("Trend data insufficient for long-term irrigation advice.")

    if not np.isnan(next_pred) and not np.isnan(avg_actual):
        if next_pred > avg_actual * 1.15:
            decisions.append("Short-term forecast higher than average. Prepare additional releases from reservoirs.")
        elif next_pred < avg_actual * 0.85:
            decisions.append("Short-term forecast lower than average. Conserve water and delay non-essential releases.")
        else:
            decisions.append("No major short-term water action required.")
    else:
        decisions.append("Prediction data insufficient for short-term irrigation advice.")

    return "\n".join(decisions)

def crop_planning_decision_logic(actual, predicted, mk_label, trend_series):
    """Return crop planning suggestions."""
    slope, _ = linear_trend(trend_series if trend_series is not None else actual)
    decisions = []
    if not np.isnan(slope):
        if slope < -0.01:
            decisions.append("Rainfall trend decreasing. Recommend drought-tolerant and short-duration crops.")
        elif slope > 0.01:
            decisions.append("Rainfall trend increasing. Consider water-demanding crops or expanded cropping area.")
        else:
            decisions.append("Rainfall trend stable. Normal crop mix advisable.")
    else:
        decisions.append("Trend data insufficient for crop planning.")

    mk = mk_classify(mk_label)
    if mk == "increasing":
        decisions.append("Mann–Kendall indicates increasing trend — adjust long-term cropping strategy accordingly.")
    elif mk == "decreasing":
        decisions.append("Mann–Kendall indicates decreasing trend — prioritize drought-adaptive varieties.")
    else:
        decisions.append("Mann–Kendall indicates no strong trend.")

    return "\n".join(decisions)

def fertilizer_decision_logic(seasonal_series):
    """Use seasonal component to time fertilizer application."""
    if seasonal_series is None or seasonal_series.isnull().all():
        return "No seasonal information. Follow standard fertilizer schedule."

    # find peak index(s)
    peak_idx = int(np.nanargmax(seasonal_series.values))
    decisions = []
    decisions.append(f"Peak seasonal nutrient demand around index {peak_idx} (use this as reference).")
    # measure seasonality strength
    season_amp = (np.nanmax(seasonal_series) - np.nanmin(seasonal_series))
    if season_amp > 0.2 * np.nanmax(np.abs(seasonal_series)):
        decisions.append("Seasonality strong. Implement timely pre-peak fertilizer application.")
    else:
        decisions.append("Seasonality mild. Standard fertilizer program is sufficient.")
    return "\n".join(decisions)

def pest_management_decision_logic(residuals, trend_series):
    """Use residual spikes and trend for pest warnings."""
    decisions = []
    slope, _ = linear_trend(trend_series if trend_series is not None else [])
    if not np.isnan(slope) and slope > 0.005:
        decisions.append("Rising trend suggests potential for increased pest/disease risk. Plan preventive monitoring.")
    else:
        decisions.append("No strong long-term increase in pest risk from trend analysis.")

    if residuals is None or residuals.isnull().all():
        decisions.append("No residual data to detect anomalies.")
        return "\n".join(decisions)

    resid = residuals.values
    # check big spikes > 2*std
    std = np.nanstd(resid)
    max_abs = np.nanmax(np.abs(resid))
    if std > 0 and max_abs > 2 * std:
        decisions.append("Significant residual spikes detected. Investigate for outbreaks or extreme events.")
    else:
        decisions.append("Residuals show no large anomalies.")
    return "\n".join(decisions)

# ---------------------------
# PDF & plotting utilities
# ---------------------------
def create_timeseries_plot(actual, preds_dict, title):
    """Create matplotlib figure with actual and multiple predictions (dict name->series)."""
    fig, ax = plt.subplots(figsize=(10,4))
    if actual is not None:
        ax.plot(actual.values, label="Actual", linewidth=1.5)
    for name, series in preds_dict.items():
        if series is not None:
            ax.plot(series.values, label=name)
    ax.set_title(title)
    ax.set_xlabel("Index")
    ax.set_ylabel("Value")
    ax.legend(fontsize=8)
    plt.tight_layout()
    return fig

def save_png_from_fig(fig, out_path):
    fig.savefig(out_path, bbox_inches='tight')
    plt.close(fig)

def save_pdf_report(pdf_path, summary_blocks, image_bytes_list):
    c = canvas.Canvas(pdf_path, pagesize=A4)
    width, height = A4
    margin = 40
    y = height - margin
    c.setFont("Helvetica-Bold", 16)
    c.drawString(margin, y, "Agricultural Decision Report")
    y -= 24
    c.setFont("Helvetica", 9)
    c.drawString(margin, y, f"Generated: {datetime.now().strftime('%Y-%m-%d %H:%M:%S')}")
    y -= 18
    for block in summary_blocks:
        lines = str(block).splitlines()
        for line in lines:
            if y < 120:
                c.showPage()
                y = height - margin
                c.setFont("Helvetica", 9)
            c.drawString(margin, y, line)
            y -= 12
        y -= 8
    for label, img_bytes in image_bytes_list:
        if y < 200:
            c.showPage()
            y = height - margin
        c.setFont("Helvetica-Bold", 10)
        c.drawString(margin, y, label)
        y -= 14
        tmpf = tempfile.NamedTemporaryFile(delete=False, suffix=".png")
        tmpf.write(img_bytes)
        tmpf.flush()
        tmpf.close()
        try:
            img_w = width - 2*margin
            img_h = img_w * 0.45
            c.drawImage(tmpf.name, margin, y - img_h, width=img_w, height=img_h)
            y -= (img_h + 12)
        except Exception as e:
            c.setFont("Helvetica", 9)
            c.drawString(margin, y, f"Could not embed image: {e}")
            y -= 12
        finally:
            try:
                os.unlink(tmpf.name)
            except Exception:
                pass
    c.save()

# ---------------------------
# STREAMLIT UI
# ---------------------------
st.header("Upload model output Excel file(s)")
uploaded_files = st.file_uploader("Upload one or more Excel files (model outputs)", type=["xlsx","xls"], accept_multiple_files=True)

st.sidebar.header("Report & SMS options")
generate_pdf = st.sidebar.checkbox("Generate PDF report", value=True)
export_png_zip = st.sidebar.checkbox("Export plots as PNG & ZIP", value=True)

sms_toggle = st.sidebar.checkbox("Send SMS alerts (Twilio)", value=False)
if sms_toggle:
    st.sidebar.text("Provide Twilio credentials")
    twilio_sid = st.sidebar.text_input("Twilio Account SID", value="")
    twilio_token = st.sidebar.text_input("Twilio Auth Token", value="", type="password")
    twilio_from = st.sidebar.text_input("From number (Twilio)", value="")
    sms_to_number = st.sidebar.text_input("Recipient number", value="")

process_button = st.button("Generate Decisions & Reports")

# ---------------------------
# Main processing
# ---------------------------
if process_button:
    if not uploaded_files or len(uploaded_files) == 0:
        st.error("Upload at least one model output Excel file.")
    else:
        all_summary_blocks = []
        all_image_bytes = []
        png_paths = []

        # Accumulate dashboard table rows
        dashboard_rows = []

        for uploaded in uploaded_files:
            try:
                df_raw = read_excel_flexible(uploaded)
                if df_raw is None:
                    continue
                df = clean_cols(df_raw)

                # map canonical series
                canon, preds, metrics = fill_default_columns(df)

                actual = canon.get("actual")
                predicted_base = canon.get("predicted")
                seasonal = canon.get("seasonal")
                residuals = canon.get("residuals")
                trend_series = canon.get("trend")
                mk_field = canon.get("mk_trend")

                # If predicted not present but model-specific preds exist, pick first
                if predicted_base is None:
                    if preds:
                        # take first pred column
                        k = list(preds.keys())[0]
                        predicted_base = preds[k]

                # Compute model metrics if not present
                # Example: compute RMSE/MAE between actual and 'predicted' (or per-pred columns)
                model_metrics = {}
                # Based on all pred columns
                if preds:
                    for name, series in preds.items():
                        rmse, mae = compute_rm = compute_rmse_mae = compute_rmse_mae if False else compute_rmse_mae  # placeholder no-op to keep code readable (we'll compute below)
                # Instead compute below properly
                per_pred_metrics = {}
                for name, series in preds.items():
                    try:
                        rmse, mae = compute_rmse_mae(actual.values if actual is not None else np.array([]), series.values)
                    except Exception:
                        rmse, mae = np.nan, np.nan
                    per_pred_metrics[name] = {"rmse": rmse, "mae": mae}

                # Build decisions
                irrigation_decision = irrigation_decision_logic(actual, predicted_base if predicted_base is not None else next(iter(preds.values())) if preds else None, trend_series)
                crop_decision = crop_planning_decision_logic(actual, predicted_base if predicted_base is not None else None, mk_field, trend_series)
                fertilizer_decision = fertilizer_decision_logic(seasonal)
                pest_decision = pest_management_decision_logic(residuals, trend_series)

                # Dashboard table row (summary)
                row = {
                    "file_name": getattr(uploaded, "name", str(uploaded)),
                    "n_rows": len(df),
                    "irrigation_summary": irrigation_decision.split("\n")[0] if irrigation_decision else "",
                    "crop_summary": crop_decision.split("\n")[0] if crop_decision else "",
                    "fertilizer_summary": fertilizer_decision.split("\n")[0] if fertilizer_decision else "",
                    "pest_summary": pest_decision.split("\n")[0] if pest_decision else ""
                }
                dashboard_rows.append(row)

                # Create combined timeseries plot (actual + all preds)
                preds_for_plot = {}
                if predicted_base is not None:
                    preds_for_plot["Predicted"] = predicted_base
                # add named preds
                for k,v in preds.items():
                    preds_for_plot[k] = v

                fig = create_timeseries_plot(actual if actual is not None else pd.Series(dtype=float), preds_for_plot, title=f"Actual vs Predictions — {row['file_name']}")
                buf = io.BytesIO()
                fig.savefig(buf, format='png', bbox_inches='tight')
                buf.seek(0)
                img_bytes = buf.getvalue()
                all_image_bytes.append((f"{row['file_name']} - Predictions", img_bytes))
                if export_png_zip:
                    png_path = os.path.join(tempfile.gettempdir(), f"{row['file_name']}_pred.png")
                    with open(png_path, "wb") as f:
                        f.write(img_bytes)
                    png_paths.append(png_path)
                st.subheader(f"File: {row['file_name']}")
                st.image(img_bytes, use_column_width=True)
                plt.close(fig)

                # Also create residual plot if residuals present
                if residuals is not None:
                    figr, axr = plt.subplots(figsize=(8,3))
                    axr.plot(residuals.values, label="Residuals")
                    axr.axhline(0, color='k', linewidth=0.6)
                    axr.set_title("Residuals")
                    axr.legend()
                    bufr = io.BytesIO()
                    figr.savefig(bufr, format='png', bbox_inches='tight')
                    bufr.seek(0)
                    all_image_bytes.append((f"{row['file_name']} - Residuals", bufr.getvalue()))
                    if export_png_zip:
                        p = os.path.join(tempfile.gettempdir(), f"{row['file_name']}_resid.png")
                        with open(p, "wb") as f:
                            f.write(bufr.getvalue())
                        png_paths.append(p)
                    st.image(bufr.getvalue(), width=700)
                    plt.close(figr)

                # Add small textual summary on the page
                st.markdown("**Irrigation advice:**")
                st.info(irrigation_decision)
                st.markdown("**Crop planning advice:**")
                st.info(crop_decision)
                st.markdown("**Fertilizer scheduling advice:**")
                st.info(fertilizer_decision)
                st.markdown("**Pest management advice:**")
                st.info(pest_decision)

                # Add per-pred metrics table
                if per_pred_metrics:
                    metrics_df = pd.DataFrame.from_dict(per_pred_metrics, orient='index')
                    metrics_df = metrics_df.rename(columns={"rmse":"RMSE","mae":"MAE"})
                    st.write("Model metrics (per prediction column):")
                    st.dataframe(metrics_df)
                else:
                    st.write("No per-model prediction columns found to compute RMSE/MAE.")

                # Build summary block for PDF
                summary_block = f"File: {row['file_name']}\nRows: {row['n_rows']}\nIrrigation: {irrigation_decision}\nCrop: {crop_decision}\nFertilizer: {fertilizer_decision}\nPest: {pest_decision}\n"
                all_summary_blocks.append(summary_block)

            except Exception as e:
                st.error(f"Error processing file {getattr(uploaded, 'name', str(uploaded))}: {e}")
                continue

        # END for uploaded files

        # Dashboard: aggregated table
        if dashboard_rows:
            st.header("Summary Dashboard")
            dash_df = pd.DataFrame(dashboard_rows)
            st.dataframe(dash_df)

        # Generate PDF if requested
        if generate_pdf and all_summary_blocks and all_image_bytes:
            pdf_name = f"Agri_Report_{datetime.now().strftime('%Y%m%d_%H%M%S')}.pdf"
            pdf_path = os.path.join(tempfile.gettempdir(), pdf_name)
            try:
                save_pdf_report(pdf_path, all_summary_blocks, all_image_bytes)
                with open(pdf_path, "rb") as pf:
                    st.download_button("Download PDF Report", pf, file_name=pdf_name)
                st.success("PDF report generated.")
            except Exception as e:
                st.error(f"PDF generation failed: {e}")

        # Export PNGs as ZIP
        if export_png_zip and png_paths:
            zip_name = f"plots_{datetime.now().strftime('%Y%m%d_%H%M%S')}.zip"
            zip_path = os.path.join(tempfile.gettempdir(), zip_name)
            with zipfile.ZipFile(zip_path, 'w', compression=zipfile.ZIP_DEFLATED) as zf:
                for p in png_paths:
                    zf.write(p, arcname=os.path.basename(p))
            with open(zip_path, "rb") as zf:
                st.download_button("Download PNG plots (ZIP)", zf, file_name=zip_name)
            st.success("PNG zip ready.")

        # SMS alerts via Twilio (optional)
        if sms_toggle:
            # Build short mobile-friendly summary
            mobile_summary = []
            for sblock in all_summary_blocks[:5]:  # include up to first 5 files
                # compress summary to short lines for SMS
                lines = sblock.splitlines()
                header = lines[0] if lines else ""
                # take first 3 advice lines
                advice_lines = []
                for L in lines[1:6]:
                    if L.strip():
                        advice_lines.append(L.strip())
                    if len(advice_lines) >= 3:
                        break
                mobile_summary.append(header + " | " + " ; ".join(advice_lines))
            sms_text = "\n".join(mobile_summary)
            st.text_area("SMS preview", sms_text, height=200)

            if twilio_sid and twilio_token and twilio_from and sms_to_number:
                try:
                    from twilio.rest import Client
                    client = Client(twilio_sid, twilio_token)
                    # Twilio SMS may require a single-line body and country code number formatting
                    msg = client.messages.create(body=sms_text[:1500], from_=twilio_from, to=sms_to_number)
                    st.success(f"SMS sent. SID: {msg.sid}")
                except Exception as e:
                    st.error(f"Failed to send SMS via Twilio: {e}")
            else:
                st.warning("Provide Twilio credentials and numbers to send SMS.")

        st.success("Processing finished.")


Quick usage notes

  1. Upload one or more Excel files via the UI.

  2. Adjust options in the sidebar:

    • Toggle PDF generation and PNG ZIP export.

    • Turn on SMS alerts if you want mobile notifications (enter Twilio credentials).

  3. Click Generate Decisions & Reports.

  4. View per-file plots and decision cards on the page.

  5. Download the PDF report and PNG ZIP from the UI.

  6. If SMS is enabled and configured, a concise mobile summary will be sent.


SMS / Twilio note

  • The app does not include Twilio credentials. You must supply them.

  • To get Twilio creds, sign up at twilio.com, get Account SID, Auth Token, and a Twilio From number.

  • SMS cost applies per Twilio pricing.


If you'd like next:

  • I can add templates for SMS content (short/long).

  • I can hook the app to send emails instead of SMS.

  • I can add scheduled runs (cron) — requires deployment environment.

Do you want scheduled automatic runs next?

#7 Agricultural Decision Making using Python code

 Here is a clear and simple explanation of how the outputs from your time-series analysis (trend, prediction, seasonal pattern, residuals, RMSE, Mann–Kendall test) can be used for practical agricultural decision-making.

Short sentences. Simple language. Neutral tone.


How These Outputs Help in Agriculture

1. Trend Analysis → Long-Term Planning

Trend shows whether a variable is rising or falling over years.

Useful for

  • Water demand planning

    • Increasing trend → more irrigation water needed.

    • Decreasing trend → improved efficiency or reduced crop area.

  • Crop yield forecasting

    • Rising trend → stable or improving practices.

    • Falling trend → soil issues, climate stress.

  • Pest and disease monitoring

    • Upward trend → need for early preventive action.


2. Seasonal Decomposition → Timing of Agricultural Activities

Seasonality shows repeating patterns within a year.

Useful for

  • Irrigation scheduling

    • Identify months of peak water need.

  • Fertilizer and pesticide planning

    • Plan for months with high crop stress.

  • Harvest planning

    • Know peak growth periods.

  • Labour management

    • Demand prediction based on seasonal peaks.


3. Predictions → Actionable Forecasts

Short-term and long-term predictions help farmers and planners prepare.

Useful for

  • Water storage and canal operation

    • Predict water requirement for coming months.

  • Market price planning

    • Estimate expected supply.

  • Selecting crop varieties

    • If temperature or rainfall prediction is low/high.

  • Risk management

    • Prepare for drought or heavy rain conditions.


4. Mann–Kendall Test → Evidence-Based Policy Decisions

This test confirms if a trend is statistically meaningful.

Useful for

  • Government planning

    • Justify irrigation projects with scientific evidence.

  • Climate adaptation decisions

    • If decreasing rainfall trend is significant → shift cropping pattern.

  • Water allocation rules

    • Identify areas that need more support.


5. Residual Analysis → Model Reliability

Residuals show how well the model fits.

Useful for

  • Checking forecast trustworthiness

    • Random residuals → reliable model.

    • Patterned residuals → hidden climate or soil factors.

  • Identifying unusual years

    • Extreme deviations → flood, drought, pest outbreak.

This helps in risk planning and crop insurance analysis.


6. RMSE & MAE → Selecting Best Model for Decisions

Accuracy metrics help compare models.

Useful for

  • Choosing forecasting model for policy

    • Lower RMSE → more reliable.

  • Confidence level in water budgeting

    • High error → avoid risky decisions.

  • Comparing multiple crops or regions

    • Identify where forecasting is easy or difficult.


How Administrators/Farmers Can Use This Together

Example 1: Irrigation Department

  • Trend → long-term water requirement growing.

  • Seasonal pattern → peak need in Feb–Apr.

  • Prediction → next year demand will be higher.

  • Mann–Kendall → trend is significant.

  • RMSE → model is reliable.

Decision: Increase reservoir storage and canal release before summer.


Example 2: Crop Planning

  • Trend shows rainfall decreasing.

  • Predictions indicate low rainfall next year.

  • Seasonal decomposition confirms short monsoon period.

  • Mann–Kendall test shows significant decline.

Decision: Shift to drought-resistant crops.


Example 3: Fertilizer Use

  • Seasonal component shows nutrient demand peaks in specific months.

  • Predictions show higher stress in next season.

Decision: Increase fertilizer availability during peak demand.


Example 4: Pest Management

  • Trend rising → pest population increasing.

  • Seasonal peaks match specific months.

  • Predictions indicate upcoming outbreak.

Decision: Pre-spray advisories and biological control measures.


Final Summary

Your model outputs help in:

  • Long-term agricultural policy

  • Crop choice

  • Irrigation planning

  • Fertilizer schedule

  • Pest and disease control

  • Risk management

  • Climate adaptation

  • Market forecasting

They convert raw data into actionable decisions.


Below is clean, simple, single-file Python code that reads your model output Excel file (with Actual, Predicted, Trend, Seasonality, Residuals, RMSE, MAE, MK-test results) and auto-generates agricultural decisions for the four examples:

  • Example 1 – Irrigation Planning

  • Example 2 – Crop Planning

  • Example 3 – Fertilizer Scheduling

  • Example 4 – Pest Management

Short sentences. Simple language.

You can run this as agri_decision_engine.py.


Python Code: Agricultural Decision Generator

import pandas as pd

def load_model_output(file_path):
    """Load Excel model output."""
    return pd.read_excel(file_path)


# -----------------------------------------------------------
# 1. Irrigation Planning Decision
# -----------------------------------------------------------
def irrigation_decision(df):
    trend_slope = df["Trend"].dropna().diff().mean()
    predicted_next = df["Predicted"].iloc[-1]
    season_peak_month = df["Seasonal"].idxmax()

    msg = []

    # Trend-based decision
    if trend_slope > 0:
        msg.append("Water demand is rising. Increase storage and canal release planning.")
    elif trend_slope < 0:
        msg.append("Water demand is falling. Storage pressure is lower.")
    else:
        msg.append("Water demand is stable.")

    # Prediction-based decision
    if predicted_next > df["Actual"].mean():
        msg.append("Next season water requirement is high. Prepare early.")
    else:
        msg.append("Next season water requirement is average.")

    # Seasonal need
    msg.append(f"Peak water demand occurs around data index {season_peak_month}.")

    return "\n".join(msg)


# -----------------------------------------------------------
# 2. Crop Planning Decision
# -----------------------------------------------------------
def crop_planning_decision(df):
    trend_slope = df["Trend"].dropna().diff().mean()
    mk_result = df["MK_Trend"].iloc[0] if "MK_Trend" in df.columns else "no-data"

    msg = []

    # Long-term climate trend
    if trend_slope < 0:
        msg.append("Rainfall decreasing. Prefer drought-tolerant crops.")
    elif trend_slope > 0:
        msg.append("Rainfall increasing. Water-intensive crops are suitable.")
    else:
        msg.append("Rainfall stable. Normal crop planning can continue.")

    # Mann–Kendall significance
    if mk_result == "significant-decrease":
        msg.append("Trend is significant. Shift cropping pattern immediately.")
    elif mk_result == "significant-increase":
        msg.append("Trend is significant. Expect higher rainfall.")

    return "\n".join(msg)


# -----------------------------------------------------------
# 3. Fertilizer Scheduling Decision
# -----------------------------------------------------------
def fertilizer_decision(df):
    seasonal = df["Seasonal"]
    peak_index = seasonal.idxmax()

    msg = [
        f"Peak nutrient demand is expected near data index {peak_index}.",
        "Schedule fertilizers before this peak month.",
    ]

    if seasonal.std() > 0.5:
        msg.append("Seasonality is strong. Follow strict fertilizer schedule.")
    else:
        msg.append("Seasonality is mild. Standard schedule is enough.")

    return "\n".join(msg)


# -----------------------------------------------------------
# 4. Pest/Disease Management Decision
# -----------------------------------------------------------
def pest_management_decision(df):
    trend_slope = df["Trend"].dropna().diff().mean()
    residuals = df["Residuals"]

    msg = []

    # Trend
    if trend_slope > 0:
        msg.append("Risk of pest increase. Plan preventive spraying.")
    else:
        msg.append("Pest pressure stable or decreasing.")

    # Residual pattern → anomalies/outbreaks
    if residuals.abs().max() > residuals.std() * 2:
        msg.append("Unusual variation detected. Possible outbreak year.")

    return "\n".join(msg)


# -----------------------------------------------------------
# Main Driver
# -----------------------------------------------------------
def generate_decision_report(file_path, output_path="agri_decision_report.txt"):
    df = load_model_output(file_path)

    report = []
    report.append("=== Irrigation Planning Decision ===\n" + irrigation_decision(df) + "\n")
    report.append("=== Crop Planning Decision ===\n" + crop_planning_decision(df) + "\n")
    report.append("=== Fertilizer Scheduling Decision ===\n" + fertilizer_decision(df) + "\n")
    report.append("=== Pest Management Decision ===\n" + pest_management_decision(df) + "\n")

    final_report = "\n".join(report)

    with open(output_path, "w") as f:
        f.write(final_report)

    print("\nReport Generated:", output_path)
    print("\n--- Summary ---\n")
    print(final_report)


# -----------------------------------------------------------
# Run Example
# -----------------------------------------------------------
if __name__ == "__main__":
    input_excel = "model_output.xlsx"  # change file name
    generate_decision_report(input_excel)

Input Expected (model_output.xlsx)

Your Excel must contain these columns:

Column Name Meaning
Actual Real observed values
Predicted Model forecast
Trend Trend component
Seasonal Seasonal component
Residuals Model residuals
MK_Trend "significant-increase" / "significant-decrease" / "none"

Works with any number of rows.


Output (agri_decision_report.txt)

Example output:

=== Irrigation Planning Decision ===
Water demand is rising. Increase storage and canal release planning.
Next season water requirement is high. Prepare early.
Peak water demand occurs around data index 5.

=== Crop Planning Decision ===
Rainfall decreasing. Prefer drought-tolerant crops.
Trend is significant. Shift cropping pattern immediately.

=== Fertilizer Scheduling Decision ===
Peak nutrient demand is expected near data index 3.
Schedule fertilizers before this peak month.
Seasonality is strong. Follow strict fertilizer schedule.

=== Pest Management Decision ===
Risk of pest increase. Plan preventive spraying.
Unusual variation detected. Possible outbreak year.

If you want

I can also add:

✅ PDF report
✅ Plots in report
✅ Dashboard UI
✅ Integration inside your existing rain-project app
✅ SMS alerts or mobile format

Tell me your choice!

#6 Interpretation of models & Inference

 Here is a clear, simple explanation on how to infer insights from time-series models using trend, residuals, and RMSE/MAE.

Short sentences. Simple language. Neutral tone.


1. Trend Interpretation

Trend shows the overall direction of the data.

How to read it

  • Upward trend → values increase over time.

  • Downward trend → values decrease over time.

  • Flat trend → stable pattern, no major change.

What it means

  • A strong trend indicates long-term change.

  • If seasonal decomposition trend matches your model trend, the model is stable.

  • If the trend changes suddenly, it may indicate policy, environment, or market shifts.


2. Seasonal Pattern

Seasonality shows repeated cycles.

How to read it

  • Peaks and drops repeat at fixed intervals.

  • Clear seasonality improves forecasting accuracy.

  • Weak seasonality means model depends more on trend or noise.


3. Residual Analysis

Residual = Actual − Predicted.

Good residual behavior

  • Values centered around zero.

  • No clear pattern.

  • Small spread.

What it means

  • Good model fit.

  • Noise is random.

  • Predictions are stable.

Bad residual indicators

  • Residuals drift upward or downward → model missing trend.

  • Residual spikes repeat → model missing seasonality.

  • Residual variance increasing → unstable model.


4. Mann–Kendall Test

This test checks trend significance.

How to interpret

  • p-value < 0.05 → trend is statistically significant.

  • p-value ≥ 0.05 → trend is not significant.

  • Tau value:

    • Positive → increasing trend

    • Negative → decreasing trend

    • Near zero → no clear trend


5. RMSE & MAE Interpretation

These tell how far predictions are from real values.

RMSE

  • High RMSE → large errors.

  • Low RMSE → accurate model.

  • RMSE penalizes big errors heavily.

MAE

  • Shows average magnitude of errors.

  • Less sensitive to extreme errors.

Rule of thumb

  • Compare models using same dataset:

    • Lower RMSE/MAE → better model.

  • Check stability:

    • If RMSE is high but residuals look random → noise may be high.

    • If RMSE is high and residuals show trend → model is wrong.


6. Comparing Models

Use:

  • Trend match

  • Seasonality match

  • Residual patterns

  • RMSE/MAE values

  • Visual closeness of actual vs predicted

General interpretation

Observation What it suggests
Model A has lowest RMSE Best numerical accuracy
Model B has smooth residuals More stable
Model C matches trend well Good long-term forecasting
Model D captures seasonality Good short-term forecasting

A balanced model has:

  • Low RMSE/MAE

  • Residuals around zero

  • Trend and seasonal match


7. Final Summary

When you combine all:

  • Trend → long-term direction

  • Seasonal → repeated patterns

  • Residuals → model fit quality

  • RMSE/MAE → accuracy numbers

  • Mann–Kendall → trend significance

  • Prediction plot → visual confirmation

Together they tell:

  • Whether data has meaningful structure.

  • Whether the model captures that structure.

  • Whether the forecast is reliable.


If you want, I can produce:

  • A short checklist

  • A student-friendly diagram

  • Interpretation guide for your PDF reports

Would you like that?

#5 Optimized Models for Rain fall Preiction

CODE 

#pip install streamlit pandas numpy matplotlib scikit-learn tensorflow statsmodels reportlab openpyxl

#streamlit run rain_full_app_optimized.py
# rain_full_app_optimized.py
# Full Streamlit app with pooled training, toggles, and plot zip export.

import os
import io
import math
import tempfile
import zipfile
from datetime import datetime

import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
import streamlit as st

from sklearn.preprocessing import MinMaxScaler
from sklearn.metrics import mean_squared_error, mean_absolute_error
from sklearn.linear_model import LinearRegression

import tensorflow as tf
from tensorflow.keras.models import Sequential, load_model
from tensorflow.keras.layers import LSTM, Dense, Bidirectional

from statsmodels.tsa.arima.model import ARIMA
from statsmodels.tsa.seasonal import seasonal_decompose

from reportlab.lib.pagesizes import A4
from reportlab.pdfgen import canvas

# ---------------------------
# Page config
# ---------------------------
st.set_page_config(page_title="Rainfall Multi-Model App (Optimized)", layout="wide")
st.title("Rainfall Prediction — Optimized Multi-Model App")

# ---------------------------
# Utility functions
# ---------------------------
def clean_dataframe(df):
    df = df.replace([np.inf, -np.inf], np.nan)
    df = df.fillna(method="ffill").fillna(method="bfill")
    df = df.fillna(0)
    return df

def compute_metrics(y_true, y_pred):
    y_true = np.asarray(y_true).astype(float).flatten()
    y_pred = np.asarray(y_pred).astype(float).flatten()
    mask = (~np.isnan(y_true)) & (~np.isnan(y_pred))
    if mask.sum() == 0:
        return np.nan, np.nan
    y_true = y_true[mask]
    y_pred = y_pred[mask]
    rmse = math.sqrt(mean_squared_error(y_true, y_pred))
    mae = mean_absolute_error(y_true, y_pred)
    return rmse, mae

def mk_test(x):
    x = np.array(x, dtype=float)
    x = x[~np.isnan(x)]
    n = len(x)
    if n < 3:
        return "no trend", False, np.nan, np.nan, np.nan, np.nan
    s = 0
    for k in range(n-1):
        s += np.sum(np.sign(x[k+1:] - x[k]))
    unique_vals, counts = np.unique(x, return_counts=True)
    tie_sum = np.sum(counts * (counts - 1) * (2*counts + 5))
    var_s = (n*(n-1)*(2*n+5) - tie_sum)/18.0
    if var_s == 0:
        return "no trend", False, np.nan, np.nan, s, var_s
    if s > 0:
        z = (s - 1)/math.sqrt(var_s)
    elif s < 0:
        z = (s + 1)/math.sqrt(var_s)
    else:
        z = 0.0
    p = 2*(1 - 0.5*(1 + math.erf(abs(z)/math.sqrt(2))))
    h = abs(z) > 1.959963984540054
    if z > 0 and h:
        trend = "increasing"
    elif z < 0 and h:
        trend = "decreasing"
    else:
        trend = "no trend"
    return trend, h, p, z, s, var_s

def linear_trend(series):
    y = np.array(series, dtype=float)
    idx = np.arange(len(y)).reshape(-1,1)
    mask = ~np.isnan(y)
    if mask.sum() < 2:
        return 0.0, float(np.nan)
    reg = LinearRegression()
    reg.fit(idx[mask], y[mask])
    slope = float(reg.coef_[0])
    intercept = float(reg.intercept_)
    return slope, intercept

def create_sequences_matrix(data_array, seq_len):
    X, y = [], []
    n = data_array.shape[0]
    for i in range(n - seq_len):
        X.append(data_array[i:i+seq_len, :])
        y.append(data_array[i+seq_len, 0])
    return np.array(X), np.array(y)

def build_lstm_model(seq_len, n_features):
    model = Sequential()
    model.add(LSTM(64, return_sequences=True, input_shape=(seq_len, n_features)))
    model.add(LSTM(32))
    model.add(Dense(1))
    model.compile(optimizer='adam', loss='mse')
    return model

def build_bilstm_model(seq_len, n_features):
    model = Sequential()
    model.add(Bidirectional(LSTM(64, return_sequences=True), input_shape=(seq_len, n_features)))
    model.add(Bidirectional(LSTM(32)))
    model.add(Dense(1))
    model.compile(optimizer='adam', loss='mse')
    return model

def arima_forecast(series, steps, order=(2,1,2)):
    try:
        model = ARIMA(series, order=order)
        fit = model.fit()
        fc = fit.forecast(steps=steps)
        return np.asarray(fc), fit
    except Exception:
        return np.full(steps, np.nan), None

def seasonal_decompose_plot(series, period, file_label):
    if len(series) < 2*period:
        return None
    try:
        res = seasonal_decompose(series, period=period, model='additive', extrapolate_trend='freq')
        fig, axes = plt.subplots(4,1, figsize=(8,8), tight_layout=True)
        axes[0].plot(res.observed); axes[0].set_title(f"Observed - {file_label}")
        axes[1].plot(res.trend); axes[1].set_title("Trend")
        axes[2].plot(res.seasonal); axes[2].set_title("Seasonal")
        axes[3].plot(res.resid); axes[3].set_title("Residual")
        return fig
    except Exception:
        return None

def save_pdf_report(pdf_path, summary_list, images_bytes):
    c = canvas.Canvas(pdf_path, pagesize=A4)
    width, height = A4
    margin = 40
    y = height - margin
    c.setFont("Helvetica-Bold", 16)
    c.drawString(margin, y, "Rainfall Prediction Report")
    y -= 22
    c.setFont("Helvetica", 9)
    c.drawString(margin, y, f"Generated: {datetime.now().strftime('%Y-%m-%d %H:%M:%S')}")
    y -= 20
    for block in summary_list:
        lines = str(block).splitlines()
        for line in lines:
            if y < 100:
                c.showPage()
                y = height - margin
                c.setFont("Helvetica", 9)
            c.drawString(margin, y, line)
            y -= 12
        y -= 6
    for label, img_bytes in images_bytes:
        if y < 180:
            c.showPage()
            y = height - margin
        c.setFont("Helvetica-Bold", 10)
        c.drawString(margin, y, label)
        y -= 12
        try:
            img_temp = tempfile.NamedTemporaryFile(suffix=".png", delete=False)
            img_temp.write(img_bytes)
            img_temp.flush()
            img_temp.close()
            img_w = width - 2*margin
            img_h = img_w * 0.45
            c.drawImage(img_temp.name, margin, y - img_h, width=img_w, height=img_h)
            y -= (img_h + 12)
            os.unlink(img_temp.name)
        except Exception as e:
            c.setFont("Helvetica", 9)
            c.drawString(margin, y, f"Could not embed image: {e}")
            y -= 12
    c.save()

# ---------------------------
# UI controls
# ---------------------------
st.markdown("### Folders and options")
col1, col2 = st.columns(2)
with col1:
    input_dir = st.text_input("Input folder (full path)", "")
with col2:
    output_dir = st.text_input("Output folder (full path)", "")

col3, col4 = st.columns(2)
with col3:
    seq_len = st.number_input("Sequence length (days) for LSTM models", min_value=5, max_value=120, value=30)
    epochs = st.number_input("Epochs for pooled LSTM/Bi-LSTM training", min_value=1, max_value=100, value=8)
with col4:
    batch_size = st.number_input("Batch size", min_value=4, max_value=256, value=32)
    seasonal_period = st.number_input("Seasonal period (days)", min_value=2, max_value=365, value=30)

st.markdown("### Model & step toggles")
colA, colB, colC = st.columns(3)
with colA:
    skip_arima = st.checkbox("Skip ARIMA (univariate)", value=False)
    skip_ml = st.checkbox("Skip ML (LSTM/Bi-LSTM)", value=False)
with colB:
    use_pretrained = st.checkbox("Use pretrained ML model (.h5)", value=False)
    uploaded_model = st.file_uploader("Upload .h5 model (if using pretrained)", type=["h5"]) if use_pretrained else None
with colC:
    pooled_training = st.checkbox("Train ML models once on pooled data (fast per-file inference)", value=True)
    export_png_zip = st.checkbox("Export individual plots as PNG and ZIP", value=True)

st.markdown("### ARIMA settings")
colp, cold, colq = st.columns(3)
with colp:
    arima_p = st.number_input("AR (p)", min_value=0, max_value=5, value=2)
with cold:
    arima_d = st.number_input("I (d)", min_value=0, max_value=2, value=1)
with colq:
    arima_q = st.number_input("MA (q)", min_value=0, max_value=5, value=2)

run_button = st.button("Run full optimized processing")

# ---------------------------
# Main processing
# ---------------------------
if run_button:
    # Basic checks
    if not os.path.isdir(input_dir):
        st.error("Input folder not found.")
        st.stop()
    if not os.path.isdir(output_dir):
        st.error("Output folder not found.")
        st.stop()

    files = [f for f in os.listdir(input_dir) if f.lower().endswith(".xlsx")]
    if not files:
        st.error("No .xlsx files in input folder.")
        st.stop()

    st.info(f"Found {len(files)} files. Starting...")

    # Collect all data if pooled training requested and ML not skipped
    pooled_scaler = None
    pooled_lstm = None
    pooled_bilstm = None

    # Steps: if pooled_training and not skip_ml and not use_pretrained -> combine all data and train pooled models
    if (not skip_ml) and pooled_training:
        st.write("Preparing pooled training data...")
        pooled_list = []
        for file in files:
            try:
                df = pd.read_excel(os.path.join(input_dir, file))
                df = clean_dataframe(df)
                # required columns
                if not set(["RAIN", "RHMX", "RHMN", "WS", "TMAX", "TMIN", "SSH"]).issubset(set(df.columns)):
                    st.warning(f"Skipping {file} for pooled training: missing required columns.")
                    continue
                subset = df[["RAIN", "RHMX", "RHMN", "WS", "TMAX", "TMIN", "SSH"]].astype(float).values
                pooled_list.append(subset)
            except Exception as e:
                st.warning(f"Could not read {file} during pooled collection: {e}")
                continue
        if pooled_list:
            pooled_all = np.vstack(pooled_list)
            pooled_scaler = MinMaxScaler()
            pooled_scaled = pooled_scaler.fit_transform(pooled_all)
            X_pool, y_pool = create_sequences_matrix(pooled_scaled, seq_len)
            st.write("Training pooled LSTM...")
            pooled_lstm = build_lstm_model(seq_len, pooled_scaled.shape[1])
            pooled_lstm.fit(X_pool, y_pool, epochs=int(epochs), batch_size=int(batch_size), verbose=0)
            st.write("Training pooled Bi-LSTM...")
            pooled_bilstm = build_bilstm_model(seq_len, pooled_scaled.shape[1])
            pooled_bilstm.fit(X_pool, y_pool, epochs=int(epochs), batch_size=int(batch_size), verbose=0)
            # Optionally save pooled models
            pooled_lstm.save(os.path.join(output_dir, "pooled_lstm.h5"))
            pooled_bilstm.save(os.path.join(output_dir, "pooled_bilstm.h5"))
            st.success("Pooled models trained and saved (pooled_lstm.h5, pooled_bilstm.h5).")
        else:
            st.warning("No valid files found for pooled training. ML models will be trained per-file or skipped.")

    # If user selected pretrained model, load it
    if use_pretrained and (uploaded_model is not None):
        try:
            with tempfile.NamedTemporaryFile(delete=False, suffix=".h5") as tmp:
                tmp.write(uploaded_model.read())
                tmp.flush()
                pretrained_model_path = tmp.name
            pretrained_model = load_model(pretrained_model_path)
            st.success("Pretrained model loaded.")
        except Exception as e:
            st.error(f"Failed to load pretrained model: {e}")
            pretrained_model = None
    else:
        pretrained_model = None

    # Prepare report accumulators
    combined_rows = []
    pdf_summaries = []
    pdf_images = []
    png_files = []  # for zip

    # ARIMA order tuple
    arima_order = (int(arima_p), int(arima_d), int(arima_q))

    # Loop over files
    for file in files:
        try:
            st.header(f"Processing: {file}")
            file_path = os.path.join(input_dir, file)
            df = pd.read_excel(file_path)
            df = clean_dataframe(df)

            required_cols = ["RAIN", "RHMX", "RHMN", "WS", "TMAX", "TMIN", "SSH"]
            if not set(required_cols).issubset(set(df.columns)):
                st.warning(f"Skipping {file}: missing required columns.")
                continue

            data = df[required_cols].astype(float).reset_index(drop=True)

            if len(data) < seq_len + 5:
                st.warning(f"Skipping {file}: not enough rows ({len(data)}). Need at least seq_len+5.")
                continue

            # Seasonal decomposition
            fig_decomp = seasonal_decompose_plot(data["RAIN"].values, period=int(seasonal_period), file_label=file)
            if fig_decomp:
                bufd = io.BytesIO()
                fig_decomp.savefig(bufd, format='png', bbox_inches='tight')
                bufd.seek(0)
                pdf_images.append((f"{file} - Seasonal decomposition", bufd.getvalue()))
                if export_png_zip:
                    png_path = os.path.join(tempfile.gettempdir(), f"{file}_decomp.png")
                    with open(png_path, "wb") as f:
                        f.write(bufd.getvalue())
                    png_files.append(png_path)
                st.pyplot(fig_decomp)
                plt.close(fig_decomp)
            else:
                st.info("Seasonal decomposition not possible for this file.")

            # Mann-Kendall
            mk_trend, mk_h, mk_p, mk_z, mk_s, mk_var = mk_test(data["RAIN"].values)
            st.write(f"Mann-Kendall: trend={mk_trend}, significant={mk_h}, p={mk_p if not math.isnan(mk_p) else 'NA'}")

            # Linear trend
            slope_all, intercept_all = linear_trend(data["RAIN"].values)
            st.write(f"Linear trend slope = {slope_all:.6f}")

            # ARIMA (optional)
            arima_pred = None
            arima_rmse = arima_mae = np.nan
            if not skip_arima:
                steps = max(1, len(data) - seq_len)
                arima_fc, arima_fit = arima_forecast(data["RAIN"].values, steps=steps, order=arima_order)
                arima_pred = np.array(arima_fc[:steps])
                actual_arima = data["RAIN"].values[seq_len: seq_len + len(arima_pred)]
                arima_rmse, arima_mae = compute_metrics(actual_arima, arima_pred)
                st.write(f"ARIMA done. RMSE={arima_rmse:.4f} MAE={arima_mae:.4f}")
            else:
                st.info("ARIMA skipped.")

            # Prepare scaling and ML inference/training
            # Choose scaler/model: pooled if available, else per-file, unless pretrained specified
            if not skip_ml:
                if use_pretrained and (pretrained_model is not None):
                    ml_model_to_use = pretrained_model
                    ml_scaler = MinMaxScaler()
                    # Fit scaler per-file for input scaling to match pretrained model's expected range.
                    ml_scaler.fit(data.values)
                    st.info("Using uploaded pretrained model for inference.")
                elif pooled_training and (pooled_lstm is not None) and (pooled_scaler is not None or pooled_scaler is None):
                    # Use pooled models and pooled_scaler trained earlier
                    # Note: pooled_scaler exists as pooled_scaler variable
                    if pooled_scaler is None:
                        # if pooled_scaler not set (e.g., pooled training failed), fallback to per-file training
                        ml_scaler = MinMaxScaler()
                        ml_scaler.fit(data.values)
                        ml_model_to_use = None
                    else:
                        ml_scaler = pooled_scaler
                        ml_model_to_use = None  # will use pooled_lstm / pooled_bilstm
                else:
                    # Per-file training will be performed
                    ml_scaler = MinMaxScaler()
                    ml_scaler.fit(data.values)
                    ml_model_to_use = None
            else:
                st.info("ML models skipped.")
                ml_scaler = None
                ml_model_to_use = None

            # If pooled_scaler exists (trained earlier), set ml_scaler accordingly
            if (not skip_ml) and pooled_training and ('pooled_scaled' in locals()):
                # pooled_scaler variable already defined earlier if pooled training ran
                if pooled_scaler is not None:
                    ml_scaler = pooled_scaler

            # Prepare arrays for ML input and outputs
            pred_lstm = pred_bilstm = None
            lstm_rmse = lstm_mae = bilstm_rmse = bilstm_mae = np.nan

            if not skip_ml:
                arr = data.values
                scaled = ml_scaler.transform(arr)
                X_all, y_all = create_sequences_matrix(scaled, seq_len)

                # Keep test portion for evaluation (last 20%)
                split_idx = int(len(X_all) * 0.8)
                X_train_file, X_test_file = X_all[:split_idx], X_all[split_idx:]
                y_train_file, y_test_file = y_all[:split_idx], y_all[split_idx:]

                # If pretrained provided, use it directly for inference on X_all (or X_test_file)
                if use_pretrained and (pretrained_model is not None):
                    y_pred_scaled = pretrained_model.predict(X_test_file)
                    pad = np.zeros((len(y_pred_scaled), scaled.shape[1]-1))
                    pred_lstm = ml_scaler.inverse_transform(np.hstack([y_pred_scaled, pad]))[:,0]
                    actual_ml = ml_scaler.inverse_transform(np.hstack([y_test_file.reshape(-1,1), pad]))[:,0]
                    lstm_rmse, lstm_mae = compute_metrics(actual_ml, pred_lstm)
                    st.write(f"Pretrained model inference done. RMSE={lstm_rmse:.4f}")
                else:
                    # If pooled models exist and are trained, use them
                    if pooled_training and pooled_lstm is not None and pooled_bilstm is not None:
                        st.write("Using pooled LSTM/Bi-LSTM for inference.")
                        y_pred_lstm_scaled = pooled_lstm.predict(X_test_file)
                        y_pred_bilstm_scaled = pooled_bilstm.predict(X_test_file)
                    else:
                        # Train per-file models (light epochs) and use them
                        st.write("Training per-file LSTM...")
                        model_lstm = build_lstm_model(seq_len, scaled.shape[1])
                        model_lstm.fit(X_train_file, y_train_file, epochs=int(epochs), batch_size=int(batch_size), verbose=0)
                        st.write("Training per-file Bi-LSTM...")
                        model_bilstm = build_bilstm_model(seq_len, scaled.shape[1])
                        model_bilstm.fit(X_train_file, y_train_file, epochs=int(epochs), batch_size=int(batch_size), verbose=0)
                        y_pred_lstm_scaled = model_lstm.predict(X_test_file)
                        y_pred_bilstm_scaled = model_bilstm.predict(X_test_file)

                    # inverse transform preds
                    pad = np.zeros((len(y_pred_lstm_scaled), scaled.shape[1]-1))
                    pred_lstm = ml_scaler.inverse_transform(np.hstack([y_pred_lstm_scaled, pad]))[:,0]
                    pred_bilstm = ml_scaler.inverse_transform(np.hstack([y_pred_bilstm_scaled, pad]))[:,0]
                    actual_ml = ml_scaler.inverse_transform(np.hstack([y_test_file.reshape(-1,1), pad]))[:,0]
                    lstm_rmse, lstm_mae = compute_metrics(actual_ml, pred_lstm)
                    bilstm_rmse, bilstm_mae = compute_metrics(actual_ml, pred_bilstm)
                    st.write(f"LSTM RMSE={lstm_rmse:.4f} | Bi-LSTM RMSE={bilstm_rmse:.4f}")

            # Prepare plotting lengths
            # ARIMA's actual_for_pred aligns with seq_len offset
            actual_for_pred = data["RAIN"].values[seq_len:]
            # Use minimal length among available predictions for clear overlay
            lengths = [len(actual_for_pred)]
            if (not skip_arima) and (arima_pred is not None):
                lengths.append(len(arima_pred))
            if pred_lstm is not None:
                lengths.append(len(pred_lstm))
            if pred_bilstm is not None:
                lengths.append(len(pred_bilstm))
            minlen = min(lengths) if lengths else len(actual_for_pred)

            # Plot Actual + Predictions
            fig, ax = plt.subplots(figsize=(10,4))
            ax.plot(actual_for_pred[:minlen], label="Actual", linewidth=1.3)
            if (not skip_arima) and (arima_pred is not None):
                ax.plot(arima_pred[:minlen], label=f"ARIMA (RMSE={arima_rmse:.3f})", linestyle='--')
            if pred_lstm is not None:
                ax.plot(pred_lstm[:minlen], label=f"LSTM (RMSE={lstm_rmse:.3f})", linestyle=':')
            if pred_bilstm is not None:
                ax.plot(pred_bilstm[:minlen], label=f"Bi-LSTM (RMSE={bilstm_rmse:.3f})", linestyle='-.')
            # Trend line over actual segment
            slope_seg, intercept_seg = linear_trend(actual_for_pred[:minlen])
            trend_line = slope_seg * np.arange(minlen) + intercept_seg
            ax.plot(trend_line, label=f"Linear trend (slope={slope_seg:.4f})", color='black', linestyle='-.', linewidth=1)
            ax.set_title(f"{file} — Actual vs Predictions")
            ax.set_xlabel("Days")
            ax.set_ylabel("Rainfall")
            ax.legend(fontsize=8)
            st.pyplot(fig)

            # Save plot for PDF and PNG zip
            buf = io.BytesIO()
            fig.savefig(buf, format='png', bbox_inches='tight')
            buf.seek(0)
            pdf_images.append((f"{file} - Predictions", buf.getvalue()))
            if export_png_zip:
                png_path = os.path.join(tempfile.gettempdir(), f"{os.path.splitext(file)[0]}_pred.png")
                with open(png_path, "wb") as f:
                    f.write(buf.getvalue())
                png_files.append(png_path)
            plt.close(fig)

            # Compose combined rows for the report (use minlen)
            # For each day entry include actual and model preds and metrics
            for i in range(minlen):
                row = {
                    "File": file,
                    "Day": i+1,
                    "Actual": float(actual_for_pred[i]),
                    "ARIMA_Pred": float(arima_pred[i]) if ((not skip_arima) and arima_pred is not None and i < len(arima_pred)) else np.nan,
                    "LSTM_Pred": float(pred_lstm[i]) if (pred_lstm is not None and i < len(pred_lstm)) else np.nan,
                    "BiLSTM_Pred": float(pred_bilstm[i]) if (pred_bilstm is not None and i < len(pred_bilstm)) else np.nan,
                    "ARIMA_RMSE": float(arima_rmse) if not skip_arima else np.nan,
                    "ARIMA_MAE": float(arima_mae) if not skip_arima else np.nan,
                    "LSTM_RMSE": float(lstm_rmse) if not skip_ml else np.nan,
                    "LSTM_MAE": float(lstm_mae) if not skip_ml else np.nan,
                    "BiLSTM_RMSE": float(bilstm_rmse) if not skip_ml else np.nan,
                    "BiLSTM_MAE": float(bilstm_mae) if not skip_ml else np.nan,
                    "MK_Trend": mk_trend,
                    "MK_p": float(mk_p) if not math.isnan(mk_p) else np.nan,
                    "Linear_Slope": float(slope_all),
                    "Linear_Trend": ("Increasing" if slope_all>0 else "Decreasing" if slope_all<0 else "Stable")
                }
                combined_rows.append(row)

            # Short summary for PDF
            pdf_summaries.append(
                f"File: {file}\nRows: {len(data)}\nARIMA RMSE: {arima_rmse:.4f}, MAE: {arima_mae:.4f}\n"
                f"LSTM RMSE: {lstm_rmse:.4f}, MAE: {lstm_mae:.4f}\nBi-LSTM RMSE: {bilstm_rmse:.4f}, MAE: {bilstm_mae:.4f}\n"
                f"Mann-Kendall: {mk_trend}, p={mk_p if not math.isnan(mk_p) else 'NA'}\nLinear slope: {slope_all:.6f}\n---"
            )

        except Exception as e:
            st.error(f"Error processing {file}: {e}")
            continue

    # After loop: save Excel and PDF and ZIP if any
    if combined_rows:
        report_df = pd.DataFrame(combined_rows)
        timestamp = datetime.now().strftime("%Y%m%d_%H%M%S")
        out_excel = os.path.join(output_dir, f"ALL_YEAR_PREDICTIONS_{timestamp}.xlsx")
        report_df.to_excel(out_excel, index=False)
        st.success(f"Excel report saved: {out_excel}")
        with open(out_excel, "rb") as fh:
            st.download_button("Download Excel Report", fh, file_name=os.path.basename(out_excel))

        # Save PDF
        pdf_path = os.path.join(output_dir, f"Rain_Report_{timestamp}.pdf")
        try:
            save_pdf_report(pdf_path, pdf_summaries, pdf_images)
            st.success(f"PDF report saved: {pdf_path}")
            with open(pdf_path, "rb") as pf:
                st.download_button("Download PDF Report", pf, file_name=os.path.basename(pdf_path))
        except Exception as e:
            st.error(f"PDF generation failed: {e}")

        # Create ZIP of PNGs if requested
        if export_png_zip and png_files:
            zip_path = os.path.join(output_dir, f"plots_{timestamp}.zip")
            with zipfile.ZipFile(zip_path, 'w', compression=zipfile.ZIP_DEFLATED) as zf:
                for p in png_files:
                    arcname = os.path.basename(p)
                    zf.write(p, arcname=arcname)
            st.success(f"Plots ZIP saved: {zip_path}")
            with open(zip_path, "rb") as zfh:
                st.download_button("Download PNG plots ZIP", zfh, file_name=os.path.basename(zip_path))
        elif export_png_zip:
            st.info("No PNG files collected to zip.")

    else:
        st.warning("No valid data rows were produced. Check inputs and options.")


Responses:


Output excel file : 
File Day Actual ARIMA_Pred LSTM_Pred BiLSTM_Pred ARIMA_RMSE ARIMA_MAE LSTM_RMSE LSTM_MAE BiLSTM_RMSE BiLSTM_MAE MK_Trend MK_p Linear_Slope Linear_Trend
1977.xlsx 1 0 7.35 13.62 19.30 10.98 19.54 10.56 increasing 0.00 0.03 Increasing
1977.xlsx 2 0 5.54 9.79 19.30 10.98 19.54 10.56 increasing 0.00 0.03 Increasing
1977.xlsx 3 0 5.46 8.42 19.30 10.98 19.54 10.56 increasing 0.00 0.03 Increasing
1977.xlsx 4 0 0.74 5.25 19.30 10.98 19.54 10.56 increasing 0.00 0.03 Increasing
1977.xlsx 5 0 -0.89 3.23 19.30 10.98 19.54 10.56 increasing 0.00 0.03 Increasing
1977.xlsx 6 0 -2.89 1.23 19.30 10.98 19.54 10.56 increasing 0.00 0.03 Increasing
1977.xlsx 7 0 -0.90 0.80 19.30 10.98 19.54 10.56 increasing 0.00 0.03 Increasing
1977.xlsx 8 0 0.32 0.61 19.30 10.98 19.54 10.56 increasing 0.00 0.03 Increasing
1977.xlsx 9 0 3.04 1.73 19.30 10.98 19.54 10.56 increasing 0.00 0.03 Increasing
1977.xlsx 10 0 8.02 5.61 19.30 10.98 19.54 10.56 increasing 0.00 0.03 Increasing
1977.xlsx 11 0 29.88 26.04 19.30 10.98 19.54 10.56 increasing 0.00 0.03 Increasing
1977.xlsx 12 0 17.16 19.36 19.30 10.98 19.54 10.56 increasing 0.00 0.03 Increasing
1977.xlsx 13 0 20.44 20.93 19.30 10.98 19.54 10.56 increasing 0.00 0.03 Increasing
1977.xlsx 14 0 17.90 17.82 19.30 10.98 19.54 10.56 increasing 0.00 0.03 Increasing
1977.xlsx 15 0 20.04 17.46 19.30 10.98 19.54 10.56 increasing 0.00 0.03 Increasing
1977.xlsx 16 0 7.37 7.94 19.30 10.98 19.54 10.56 increasing 0.00 0.03 Increasing
1977.xlsx 17 0 5.14 3.41 19.30 10.98 19.54 10.56 increasing 0.00 0.03 Increasing
1977.xlsx 18 3 9.28 5.28 19.30 10.98 19.54 10.56 increasing 0.00 0.03 Increasing
1977.xlsx 19 6.40 36.00 28.06 19.30 10.98 19.54 10.56 increasing 0.00 0.03 Increasing
1977.xlsx 20 5.40 36.27 32.56 19.30 10.98 19.54 10.56 increasing 0.00 0.03 Increasing
1977.xlsx 21 0 16.90 17.15 19.30 10.98 19.54 10.56 increasing 0.00 0.03 Increasing
1977.xlsx 22 0 10.04 7.33 19.30 10.98 19.54 10.56 increasing 0.00 0.03 Increasing
1977.xlsx 23 0 6.61 2.53 19.30 10.98 19.54 10.56 increasing 0.00 0.03 Increasing
1977.xlsx 24 0 3.82 0.07 19.30 10.98 19.54 10.56 increasing 0.00 0.03 Increasing
1977.xlsx 25 0 5.14 0.50 19.30 10.98 19.54 10.56 increasing 0.00 0.03 Increasing
1977.xlsx 26 0 5.11 0.55 19.30 10.98 19.54 10.56 increasing 0.00 0.03 Increasing
1977.xlsx 27 0 1.21 0.74 19.30 10.98 19.54 10.56 increasing 0.00 0.03 Increasing
1977.xlsx 28 0 3.85 4.49 19.30 10.98 19.54 10.56 increasing 0.00 0.03 Increasing
1977.xlsx 29 0 8.31 11.34 19.30 10.98 19.54 10.56 increasing 0.00 0.03 Increasing
1977.xlsx 30 0 2.03 7.25 19.30 10.98 19.54 10.56 increasing 0.00 0.03 Increasing
1977.xlsx 31 0 5.25 7.50 19.30 10.98 19.54 10.56 increasing 0.00 0.03 Increasing
1977.xlsx 32 0 26.20 24.84 19.30 10.98 19.54 10.56 increasing 0.00 0.03 Increasing
1977.xlsx 33 0 17.42 18.71 19.30 10.98 19.54 10.56 increasing 0.00 0.03 Increasing
1977.xlsx 34 0 10.42 11.68 19.30 10.98 19.54 10.56 increasing 0.00 0.03 Increasing
1977.xlsx 35 0 4.78 5.24 19.30 10.98 19.54 10.56 increasing 0.00 0.03 Increasing
1977.xlsx 36 0 3.74 1.61 19.30 10.98 19.54 10.56 increasing 0.00 0.03 Increasing
1977.xlsx 37 0 3.30 -0.69 19.30 10.98 19.54 10.56 increasing 0.00 0.03 Increasing
1977.xlsx 38 0 6.48 0.65 19.30 10.98 19.54 10.56 increasing 0.00 0.03 Increasing
1977.xlsx 39 0 5.59 -0.60 19.30 10.98 19.54 10.56 increasing 0.00 0.03 Increasing
1977.xlsx 40 0 8.91 1.08 19.30 10.98 19.54 10.56 increasing 0.00 0.03 Increasing
1977.xlsx 41 0 9.79 3.50 19.30 10.98 19.54 10.56 increasing 0.00 0.03 Increasing
1977.xlsx 42 0 8.52 3.29 19.30 10.98 19.54 10.56 increasing 0.00 0.03 Increasing
1977.xlsx 43 0 4.83 1.60 19.30 10.98 19.54 10.56 increasing 0.00 0.03 Increasing
1977.xlsx 44 0 5.59 1.04 19.30 10.98 19.54 10.56 increasing 0.00 0.03 Increasing
1977.xlsx 45 0 3.67 -0.42 19.30 10.98 19.54 10.56 increasing 0.00 0.03 Increasing
1977.xlsx 46 0 10.17 3.00 19.30 10.98 19.54 10.56 increasing 0.00 0.03 Increasing
1977.xlsx 47 0 12.92 4.93 19.30 10.98 19.54 10.56 increasing 0.00 0.03 Increasing
1977.xlsx 48 0 12.12 5.17 19.30 10.98 19.54 10.56 increasing 0.00 0.03 Increasing
1977.xlsx 49 0 7.09 6.23 19.30 10.98 19.54 10.56 increasing 0.00 0.03 Increasing
1977.xlsx 50 0 5.89 7.66 19.30 10.98 19.54 10.56 increasing 0.00 0.03 Increasing
1977.xlsx 51 0 4.82 6.79 19.30 10.98 19.54 10.56 increasing 0.00 0.03 Increasing
1977.xlsx 52 0 5.48 6.42 19.30 10.98 19.54 10.56 increasing 0.00 0.03 Increasing
1977.xlsx 53 0 6.71 7.15 19.30 10.98 19.54 10.56 increasing 0.00 0.03 Increasing
1977.xlsx 54 0 7.60 7.74 19.30 10.98 19.54 10.56 increasing 0.00 0.03 Increasing
1977.xlsx 55 0 9.02 9.17 19.30 10.98 19.54 10.56 increasing 0.00 0.03 Increasing
1977.xlsx 56 0 7.70 8.44 19.30 10.98 19.54 10.56 increasing 0.00 0.03 Increasing
1977.xlsx 57 0 9.09 8.63 19.30 10.98 19.54 10.56 increasing 0.00 0.03 Increasing
1977.xlsx 58 0.60 9.32 9.16 19.30 10.98 19.54 10.56 increasing 0.00 0.03 Increasing
1977.xlsx 59 0 12.02 11.34 19.30 10.98 19.54 10.56 increasing 0.00 0.03 Increasing
1977.xlsx 60 0 8.04 8.30 19.30 10.98 19.54 10.56 increasing 0.00 0.03 Increasing
1977.xlsx 61 0 5.23 5.76 19.30 10.98 19.54 10.56 increasing 0.00 0.03 Increasing
1977.xlsx 62 0 4.15 5.48 19.30 10.98 19.54 10.56 increasing 0.00 0.03 Increasing
1977.xlsx 63 0 3.35 5.02 19.30 10.98 19.54 10.56 increasing 0.00 0.03 Increasing
1977.xlsx 64 0 2.13 4.62 19.30 10.98 19.54 10.56 increasing 0.00 0.03 Increasing
1977.xlsx 65 0 2.52 3.69 19.30 10.98 19.54 10.56 increasing 0.00 0.03 Increasing
1977.xlsx 66 0 2.23 2.43 19.30 10.98 19.54 10.56 increasing 0.00 0.03 Increasing
1977.xlsx 67 0 -0.36 0.08 19.30 10.98 19.54 10.56 increasing 0.00 0.03 Increasing
1978.xlsx 1 0 9.32 13.94 43.06 16.06 42.95 17.12 increasing 0 0.05 Increasing
1978.xlsx 2 0 5.23 8.54 43.06 16.06 42.95 17.12 increasing 0 0.05 Increasing
1978.xlsx 3 0 6.34 8.68 43.06 16.06 42.95 17.12 increasing 0 0.05 Increasing
1978.xlsx 4 0 12.87 14.31 43.06 16.06 42.95 17.12 increasing 0 0.05 Increasing
1978.xlsx 5 0 21.80 21.85 43.06 16.06 42.95 17.12 increasing 0 0.05 Increasing
1978.xlsx 6 0 17.49 19.60 43.06 16.06 42.95 17.12 increasing 0 0.05 Increasing
1978.xlsx 7 0 12.11 15.27 43.06 16.06 42.95 17.12 increasing 0 0.05 Increasing
1978.xlsx 8 0 27.51 27.87 43.06 16.06 42.95 17.12 increasing 0 0.05 Increasing
1978.xlsx 9 0 12.44 17.93 43.06 16.06 42.95 17.12 increasing 0 0.05 Increasing
1978.xlsx 10 0 8.70 12.69 43.06 16.06 42.95 17.12 increasing 0 0.05 Increasing
1978.xlsx 11 0 87.38 79.48 43.06 16.06 42.95 17.12 increasing 0 0.05 Increasing
1978.xlsx 12 0 26.36 46.00 43.06 16.06 42.95 17.12 increasing 0 0.05 Increasing
1978.xlsx 13 0 15.46 27.80 43.06 16.06 42.95 17.12 increasing 0 0.05 Increasing
1978.xlsx 14 0 4.68 13.44 43.06 16.06 42.95 17.12 increasing 0 0.05 Increasing
1978.xlsx 15 0 8.76 11.34 43.06 16.06 42.95 17.12 increasing 0 0.05 Increasing
1978.xlsx 16 0 5.91 6.66 43.06 16.06 42.95 17.12 increasing 0 0.05 Increasing
1978.xlsx 17 0 7.33 7.05 43.06 16.06 42.95 17.12 increasing 0 0.05 Increasing
1978.xlsx 18 0 7.20 8.13 43.06 16.06 42.95 17.12 increasing 0 0.05 Increasing
1978.xlsx 19 0 5.10 7.88 43.06 16.06 42.95 17.12 increasing 0 0.05 Increasing
1978.xlsx 20 0 5.30 8.52 43.06 16.06 42.95 17.12 increasing 0 0.05 Increasing
1978.xlsx 21 0 6.24 9.76 43.06 16.06 42.95 17.12 increasing 0 0.05 Increasing
1978.xlsx 22 0 6.97 10.64 43.06 16.06 42.95 17.12 increasing 0 0.05 Increasing
1978.xlsx 23 0 10.08 12.70 43.06 16.06 42.95 17.12 increasing 0 0.05 Increasing
1978.xlsx 24 0 6.98 10.02 43.06 16.06 42.95 17.12 increasing 0 0.05 Increasing
1978.xlsx 25 0 5.31 7.62 43.06 16.06 42.95 17.12 increasing 0 0.05 Increasing
1978.xlsx 26 0 3.59 4.77 43.06 16.06 42.95 17.12 increasing 0 0.05 Increasing
1978.xlsx 27 0 3.83 3.56 43.06 16.06 42.95 17.12 increasing 0 0.05 Increasing
1978.xlsx 28 0 5.79 4.57 43.06 16.06 42.95 17.12 increasing 0 0.05 Increasing
1978.xlsx 29 0 7.19 4.49 43.06 16.06 42.95 17.12 increasing 0 0.05 Increasing
1978.xlsx 30 0 7.61 4.42 43.06 16.06 42.95 17.12 increasing 0 0.05 Increasing
1978.xlsx 31 0 21.40 14.52 43.06 16.06 42.95 17.12 increasing 0 0.05 Increasing
1978.xlsx 32 0 15.28 10.11 43.06 16.06 42.95 17.12 increasing 0 0.05 Increasing
1978.xlsx 33 0 5.30 1.54 43.06 16.06 42.95 17.12 increasing 0 0.05 Increasing
1978.xlsx 34 0 3.17 -2.56 43.06 16.06 42.95 17.12 increasing 0 0.05 Increasing
1978.xlsx 35 0 2.33 -4.66 43.06 16.06 42.95 17.12 increasing 0 0.05 Increasing
1978.xlsx 36 0 3.59 -4.43 43.06 16.06 42.95 17.12 increasing 0 0.05 Increasing
1978.xlsx 37 0 3.49 -4.18 43.06 16.06 42.95 17.12 increasing 0 0.05 Increasing
1978.xlsx 38 0 5.52 -1.84 43.06 16.06 42.95 17.12 increasing 0 0.05 Increasing
1978.xlsx 39 0 6.22 -0.44 43.06 16.06 42.95 17.12 increasing 0 0.05 Increasing
1978.xlsx 40 0 13.07 6.68 43.06 16.06 42.95 17.12 increasing 0 0.05 Increasing
1978.xlsx 41 0 16.22 15.48 43.06 16.06 42.95 17.12 increasing 0 0.05 Increasing
1978.xlsx 42 0 10.77 13.46 43.06 16.06 42.95 17.12 increasing 0 0.05 Increasing
1978.xlsx 43 0 8.63 12.39 43.06 16.06 42.95 17.12 increasing 0 0.05 Increasing
1978.xlsx 44 0 6.97 10.82 43.06 16.06 42.95 17.12 increasing 0 0.05 Increasing
1978.xlsx 45 0 6.55 8.86 43.06 16.06 42.95 17.12 increasing 0 0.05 Increasing
1978.xlsx 46 0 10.56 11.46 43.06 16.06 42.95 17.12 increasing 0 0.05 Increasing
1978.xlsx 47 0 12.10 11.69 43.06 16.06 42.95 17.12 increasing 0 0.05 Increasing
1978.xlsx 48 0 12.96 12.54 43.06 16.06 42.95 17.12 increasing 0 0.05 Increasing
1978.xlsx 49 0 11.63 11.01 43.06 16.06 42.95 17.12 increasing 0 0.05 Increasing
1978.xlsx 50 0 9.24 9.32 43.06 16.06 42.95 17.12 increasing 0 0.05 Increasing
1978.xlsx 51 0 6.29 7.20 43.06 16.06 42.95 17.12 increasing 0 0.05 Increasing
1978.xlsx 52 0 5.78 6.08 43.06 16.06 42.95 17.12 increasing 0 0.05 Increasing
1978.xlsx 53 0 9.36 8.34 43.06 16.06 42.95 17.12 increasing 0 0.05 Increasing
1978.xlsx 54 0 6.38 5.65 43.06 16.06 42.95 17.12 increasing 0 0.05 Increasing
1978.xlsx 55 0 3.64 2.88 43.06 16.06 42.95 17.12 increasing 0 0.05 Increasing
1978.xlsx 56 0 3.44 2.33 43.06 16.06 42.95 17.12 increasing 0 0.05 Increasing
1978.xlsx 57 0 3.62 2.45 43.06 16.06 42.95 17.12 increasing 0 0.05 Increasing
1978.xlsx 58 0 4.13 3.29 43.06 16.06 42.95 17.12 increasing 0 0.05 Increasing
1978.xlsx 59 0 5.93 4.96 43.06 16.06 42.95 17.12 increasing 0 0.05 Increasing
1978.xlsx 60 0 11.31 9.30 43.06 16.06 42.95 17.12 increasing 0 0.05 Increasing
1978.xlsx 61 0 11.81 10.47 43.06 16.06 42.95 17.12 increasing 0 0.05 Increasing
1978.xlsx 62 0 25.81 22.28 43.06 16.06 42.95 17.12 increasing 0 0.05 Increasing
1978.xlsx 63 0 44.90 40.64 43.06 16.06 42.95 17.12 increasing 0 0.05 Increasing
1978.xlsx 64 0 27.79 30.50 43.06 16.06 42.95 17.12 increasing 0 0.05 Increasing
1978.xlsx 65 0 15.37 17.55 43.06 16.06 42.95 17.12 increasing 0 0.05 Increasing
1978.xlsx 66 0 5.45 6.13 43.06 16.06 42.95 17.12 increasing 0 0.05 Increasing
1978.xlsx 67 0 1.09 -0.53 43.06 16.06 42.95 17.12 increasing 0 0.05 Increasing
1979.xlsx 1 0 13.27 18.59 24.23 14.79 24.40 14.42 increasing 0 0.05 Increasing
1979.xlsx 2 0 39.37 38.76 24.23 14.79 24.40 14.42 increasing 0 0.05 Increasing
1979.xlsx 3 0 17.98 26.09 24.23 14.79 24.40 14.42 increasing 0 0.05 Increasing
1979.xlsx 4 0 16.87 23.62 24.23 14.79 24.40 14.42 increasing 0 0.05 Increasing
1979.xlsx 5 0 6.94 14.60 24.23 14.79 24.40 14.42 increasing 0 0.05 Increasing
1979.xlsx 6 0 5.60 10.88 24.23 14.79 24.40 14.42 increasing 0 0.05 Increasing
1979.xlsx 7 0 9.34 12.95 24.23 14.79 24.40 14.42 increasing 0 0.05 Increasing
1979.xlsx 8 0 6.37 9.74 24.23 14.79 24.40 14.42 increasing 0 0.05 Increasing
1979.xlsx 9 0 7.71 10.07 24.23 14.79 24.40 14.42 increasing 0 0.05 Increasing
1979.xlsx 10 0 5.50 8.09 24.23 14.79 24.40 14.42 increasing 0 0.05 Increasing
1979.xlsx 11 0 1.85 5.12 24.23 14.79 24.40 14.42 increasing 0 0.05 Increasing
1979.xlsx 12 0 4.84 7.23 24.23 14.79 24.40 14.42 increasing 0 0.05 Increasing
1979.xlsx 13 0 14.08 15.26 24.23 14.79 24.40 14.42 increasing 0 0.05 Increasing
1979.xlsx 14 0 6.79 10.43 24.23 14.79 24.40 14.42 increasing 0 0.05 Increasing
1979.xlsx 15 0 20.11 21.49 24.23 14.79 24.40 14.42 increasing 0 0.05 Increasing
1979.xlsx 16 0 28.45 29.38 24.23 14.79 24.40 14.42 increasing 0 0.05 Increasing
1979.xlsx 17 0 14.96 18.98 24.23 14.79 24.40 14.42 increasing 0 0.05 Increasing
1979.xlsx 18 0 23.53 24.28 24.23 14.79 24.40 14.42 increasing 0 0.05 Increasing
1979.xlsx 19 0.80 8.27 11.88 24.23 14.79 24.40 14.42 increasing 0 0.05 Increasing
1979.xlsx 20 0 17.47 16.18 24.23 14.79 24.40 14.42 increasing 0 0.05 Increasing
1979.xlsx 21 0 13.53 12.10 24.23 14.79 24.40 14.42 increasing 0 0.05 Increasing
1979.xlsx 22 1.60 6.10 4.29 24.23 14.79 24.40 14.42 increasing 0 0.05 Increasing
1979.xlsx 23 0 17.07 11.21 24.23 14.79 24.40 14.42 increasing 0 0.05 Increasing
1979.xlsx 24 0 14.89 10.05 24.23 14.79 24.40 14.42 increasing 0 0.05 Increasing
1979.xlsx 25 0 29.25 22.25 24.23 14.79 24.40 14.42 increasing 0 0.05 Increasing
1979.xlsx 26 0 33.01 29.24 24.23 14.79 24.40 14.42 increasing 0 0.05 Increasing
1979.xlsx 27 0 26.97 26.67 24.23 14.79 24.40 14.42 increasing 0 0.05 Increasing
1979.xlsx 28 0 8.96 11.70 24.23 14.79 24.40 14.42 increasing 0 0.05 Increasing
1979.xlsx 29 0 8.12 7.19 24.23 14.79 24.40 14.42 increasing 0 0.05 Increasing
1979.xlsx 30 0 7.26 4.83 24.23 14.79 24.40 14.42 increasing 0 0.05 Increasing
1979.xlsx 31 1.20 7.51 3.90 24.23 14.79 24.40 14.42 increasing 0 0.05 Increasing
1979.xlsx 32 0 12.28 9.27 24.23 14.79 24.40 14.42 increasing 0 0.05 Increasing
1979.xlsx 33 8.20 12.78 10.82 24.23 14.79 24.40 14.42 increasing 0 0.05 Increasing
1979.xlsx 34 16.70 9.01 8.79 24.23 14.79 24.40 14.42 increasing 0 0.05 Increasing
1979.xlsx 35 0 9.74 8.06 24.23 14.79 24.40 14.42 increasing 0 0.05 Increasing
1979.xlsx 36 0 8.47 7.12 24.23 14.79 24.40 14.42 increasing 0 0.05 Increasing
1979.xlsx 37 0 6.35 5.12 24.23 14.79 24.40 14.42 increasing 0 0.05 Increasing
1979.xlsx 38 0 4.81 3.61 24.23 14.79 24.40 14.42 increasing 0 0.05 Increasing
1979.xlsx 39 0 3.62 2.51 24.23 14.79 24.40 14.42 increasing 0 0.05 Increasing
1979.xlsx 40 0 6.57 5.19 24.23 14.79 24.40 14.42 increasing 0 0.05 Increasing
1979.xlsx 41 0 7.12 5.56 24.23 14.79 24.40 14.42 increasing 0 0.05 Increasing
1979.xlsx 42 0 8.45 5.98 24.23 14.79 24.40 14.42 increasing 0 0.05 Increasing
1979.xlsx 43 0 12.30 9.56 24.23 14.79 24.40 14.42 increasing 0 0.05 Increasing
1979.xlsx 44 0 11.93 8.09 24.23 14.79 24.40 14.42 increasing 0 0.05 Increasing
1979.xlsx 45 0 10.58 6.28 24.23 14.79 24.40 14.42 increasing 0 0.05 Increasing
1979.xlsx 46 0 6.39 2.65 24.23 14.79 24.40 14.42 increasing 0 0.05 Increasing
1979.xlsx 47 0 20.72 13.85 24.23 14.79 24.40 14.42 increasing 0 0.05 Increasing
1979.xlsx 48 0 13.52 10.94 24.23 14.79 24.40 14.42 increasing 0 0.05 Increasing
1979.xlsx 49 0 13.09 9.92 24.23 14.79 24.40 14.42 increasing 0 0.05 Increasing
1979.xlsx 50 0 5.77 3.69 24.23 14.79 24.40 14.42 increasing 0 0.05 Increasing
1979.xlsx 51 0 5.04 1.69 24.23 14.79 24.40 14.42 increasing 0 0.05 Increasing
1979.xlsx 52 0 3.53 -0.20 24.23 14.79 24.40 14.42 increasing 0 0.05 Increasing
1979.xlsx 53 0 4.14 0.34 24.23 14.79 24.40 14.42 increasing 0 0.05 Increasing
1979.xlsx 54 0 6.94 2.34 24.23 14.79 24.40 14.42 increasing 0 0.05 Increasing
1979.xlsx 55 0 7.07 4.25 24.23 14.79 24.40 14.42 increasing 0 0.05 Increasing
1979.xlsx 56 0 7.58 6.24 24.23 14.79 24.40 14.42 increasing 0 0.05 Increasing
1979.xlsx 57 0 8.75 8.73 24.23 14.79 24.40 14.42 increasing 0 0.05 Increasing
1979.xlsx 58 0 8.23 8.23 24.23 14.79 24.40 14.42 increasing 0 0.05 Increasing
1979.xlsx 59 0 4.54 4.85 24.23 14.79 24.40 14.42 increasing 0 0.05 Increasing
1979.xlsx 60 0 10.24 6.90 24.23 14.79 24.40 14.42 increasing 0 0.05 Increasing
1979.xlsx 61 0 8.34 6.47 24.23 14.79 24.40 14.42 increasing 0 0.05 Increasing
1979.xlsx 62 0 10.10 9.44 24.23 14.79 24.40 14.42 increasing 0 0.05 Increasing
1979.xlsx 63 0 7.53 7.69 24.23 14.79 24.40 14.42 increasing 0 0.05 Increasing
1979.xlsx 64 0 6.18 6.15 24.23 14.79 24.40 14.42 increasing 0 0.05 Increasing
1979.xlsx 65 0 4.55 4.97 24.23 14.79 24.40 14.42 increasing 0 0.05 Increasing
1979.xlsx 66 0 4.58 4.94 24.23 14.79 24.40 14.42 increasing 0 0.05 Increasing
1979.xlsx 67 0 3.61 4.46 24.23 14.79 24.40 14.42 increasing 0 0.05 Increasing
1980.xlsx 1 0 4.81 4.61 12.93 8.48 12.79 8.32 increasing 0.00 0.02 Increasing
1980.xlsx 2 0 2.60 3.38 12.93 8.48 12.79 8.32 increasing 0.00 0.02 Increasing
1980.xlsx 3 0 6.07 4.76 12.93 8.48 12.79 8.32 increasing 0.00 0.02 Increasing
1980.xlsx 4 0 6.12 5.37 12.93 8.48 12.79 8.32 increasing 0.00 0.02 Increasing
1980.xlsx 5 0 17.90 15.55 12.93 8.48 12.79 8.32 increasing 0.00 0.02 Increasing
1980.xlsx 6 0 6.90 9.91 12.93 8.48 12.79 8.32 increasing 0.00 0.02 Increasing
1980.xlsx 7 0 4.76 7.58 12.93 8.48 12.79 8.32 increasing 0.00 0.02 Increasing
1980.xlsx 8 0 5.17 7.37 12.93 8.48 12.79 8.32 increasing 0.00 0.02 Increasing
1980.xlsx 9 0 5.47 7.64 12.93 8.48 12.79 8.32 increasing 0.00 0.02 Increasing
1980.xlsx 10 0 10.51 11.32 12.93 8.48 12.79 8.32 increasing 0.00 0.02 Increasing
1980.xlsx 11 0 5.64 8.26 12.93 8.48 12.79 8.32 increasing 0.00 0.02 Increasing
1980.xlsx 12 0 5.45 6.91 12.93 8.48 12.79 8.32 increasing 0.00 0.02 Increasing
1980.xlsx 13 0 11.26 11.68 12.93 8.48 12.79 8.32 increasing 0.00 0.02 Increasing
1980.xlsx 14 0 7.13 9.34 12.93 8.48 12.79 8.32 increasing 0.00 0.02 Increasing
1980.xlsx 15 0 7.70 9.36 12.93 8.48 12.79 8.32 increasing 0.00 0.02 Increasing
1980.xlsx 16 0 6.47 8.21 12.93 8.48 12.79 8.32 increasing 0.00 0.02 Increasing
1980.xlsx 17 0 6.18 8.01 12.93 8.48 12.79 8.32 increasing 0.00 0.02 Increasing
1980.xlsx 18 0 5.95 8.59 12.93 8.48 12.79 8.32 increasing 0.00 0.02 Increasing
1980.xlsx 19 0 20.39 20.15 12.93 8.48 12.79 8.32 increasing 0.00 0.02 Increasing
1980.xlsx 20 0 11.18 13.29 12.93 8.48 12.79 8.32 increasing 0.00 0.02 Increasing
1980.xlsx 21 0 13.02 13.70 12.93 8.48 12.79 8.32 increasing 0.00 0.02 Increasing
1980.xlsx 22 0 4.98 7.51 12.93 8.48 12.79 8.32 increasing 0.00 0.02 Increasing
1980.xlsx 23 0 5.28 6.75 12.93 8.48 12.79 8.32 increasing 0.00 0.02 Increasing
1980.xlsx 24 0 17.89 18.22 12.93 8.48 12.79 8.32 increasing 0.00 0.02 Increasing
1980.xlsx 25 0 23.93 25.66 12.93 8.48 12.79 8.32 increasing 0.00 0.02 Increasing
1980.xlsx 26 0 13.17 18.33 12.93 8.48 12.79 8.32 increasing 0.00 0.02 Increasing
1980.xlsx 27 0 5.30 10.57 12.93 8.48 12.79 8.32 increasing 0.00 0.02 Increasing
1980.xlsx 28 0 3.82 7.03 12.93 8.48 12.79 8.32 increasing 0.00 0.02 Increasing
1980.xlsx 29 0 3.92 5.17 12.93 8.48 12.79 8.32 increasing 0.00 0.02 Increasing
1980.xlsx 30 0 5.07 5.63 12.93 8.48 12.79 8.32 increasing 0.00 0.02 Increasing
1980.xlsx 31 0 3.79 4.82 12.93 8.48 12.79 8.32 increasing 0.00 0.02 Increasing
1980.xlsx 32 0 2.06 2.91 12.93 8.48 12.79 8.32 increasing 0.00 0.02 Increasing
1980.xlsx 33 0 2.69 3.03 12.93 8.48 12.79 8.32 increasing 0.00 0.02 Increasing
1980.xlsx 34 0 4.43 4.07 12.93 8.48 12.79 8.32 increasing 0.00 0.02 Increasing
1980.xlsx 35 0 6.21 4.88 12.93 8.48 12.79 8.32 increasing 0.00 0.02 Increasing
1980.xlsx 36 0 6.67 4.71 12.93 8.48 12.79 8.32 increasing 0.00 0.02 Increasing
1980.xlsx 37 0 7.35 4.39 12.93 8.48 12.79 8.32 increasing 0.00 0.02 Increasing
1980.xlsx 38 0 13.54 9.11 12.93 8.48 12.79 8.32 increasing 0.00 0.02 Increasing
1980.xlsx 39 0 9.96 7.55 12.93 8.48 12.79 8.32 increasing 0.00 0.02 Increasing
1980.xlsx 40 0 4.49 3.80 12.93 8.48 12.79 8.32 increasing 0.00 0.02 Increasing
1980.xlsx 41 0 3.82 2.97 12.93 8.48 12.79 8.32 increasing 0.00 0.02 Increasing
1980.xlsx 42 0 8.90 6.89 12.93 8.48 12.79 8.32 increasing 0.00 0.02 Increasing
1980.xlsx 43 0 24.41 20.48 12.93 8.48 12.79 8.32 increasing 0.00 0.02 Increasing
1980.xlsx 44 0 6.77 8.80 12.93 8.48 12.79 8.32 increasing 0.00 0.02 Increasing
1980.xlsx 45 0 3.57 3.77 12.93 8.48 12.79 8.32 increasing 0.00 0.02 Increasing
1980.xlsx 46 0 -0.24 -0.81 12.93 8.48 12.79 8.32 increasing 0.00 0.02 Increasing
1980.xlsx 47 0 0.13 -1.24 12.93 8.48 12.79 8.32 increasing 0.00 0.02 Increasing
1980.xlsx 48 0 -0.07 -1.27 12.93 8.48 12.79 8.32 increasing 0.00 0.02 Increasing
1980.xlsx 49 0 1.51 -0.37 12.93 8.48 12.79 8.32 increasing 0.00 0.02 Increasing
1980.xlsx 50 0 5.66 1.20 12.93 8.48 12.79 8.32 increasing 0.00 0.02 Increasing
1980.xlsx 51 0 5.73 1.00 12.93 8.48 12.79 8.32 increasing 0.00 0.02 Increasing
1980.xlsx 52 0 6.59 1.87 12.93 8.48 12.79 8.32 increasing 0.00 0.02 Increasing
1980.xlsx 53 0 2.52 0.40 12.93 8.48 12.79 8.32 increasing 0.00 0.02 Increasing
1980.xlsx 54 0 5.80 3.15 12.93 8.48 12.79 8.32 increasing 0.00 0.02 Increasing
1980.xlsx 55 0 7.38 6.06 12.93 8.48 12.79 8.32 increasing 0.00 0.02 Increasing
1980.xlsx 56 0 13.86 11.34 12.93 8.48 12.79 8.32 increasing 0.00 0.02 Increasing
1980.xlsx 57 0 12.68 10.45 12.93 8.48 12.79 8.32 increasing 0.00 0.02 Increasing
1980.xlsx 58 0 4.94 4.90 12.93 8.48 12.79 8.32 increasing 0.00 0.02 Increasing
1980.xlsx 59 3.40 2.40 1.70 12.93 8.48 12.79 8.32 increasing 0.00 0.02 Increasing
1980.xlsx 60 0 1.67 0.24 12.93 8.48 12.79 8.32 increasing 0.00 0.02 Increasing
1980.xlsx 61 0 3.79 1.09 12.93 8.48 12.79 8.32 increasing 0.00 0.02 Increasing
1980.xlsx 62 0 2.07 -1.07 12.93 8.48 12.79 8.32 increasing 0.00 0.02 Increasing
1980.xlsx 63 0 5.47 0.78 12.93 8.48 12.79 8.32 increasing 0.00 0.02 Increasing
1980.xlsx 64 0 4.56 0.39 12.93 8.48 12.79 8.32 increasing 0.00 0.02 Increasing
1980.xlsx 65 0 2.04 -1.62 12.93 8.48 12.79 8.32 increasing 0.00 0.02 Increasing
1980.xlsx 66 2.40 2.40 -1.00 12.93 8.48 12.79 8.32 increasing 0.00 0.02 Increasing
1980.xlsx 67 0 1.33 -0.80 12.93 8.48 12.79 8.32 increasing 0.00 0.02 Increasing
1981.xlsx 1 0 26.87 28.00 15.61 8.98 15.74 8.54 increasing 0.00 0.03 Increasing
1981.xlsx 2 0 28.03 30.54 15.61 8.98 15.74 8.54 increasing 0.00 0.03 Increasing
1981.xlsx 3 0 32.20 35.58 15.61 8.98 15.74 8.54 increasing 0.00 0.03 Increasing
1981.xlsx 4 0 17.22 24.50 15.61 8.98 15.74 8.54 increasing 0.00 0.03 Increasing
1981.xlsx 5 0 5.94 11.91 15.61 8.98 15.74 8.54 increasing 0.00 0.03 Increasing
1981.xlsx 6 0 7.69 10.28 15.61 8.98 15.74 8.54 increasing 0.00 0.03 Increasing
1981.xlsx 7 0 5.02 7.44 15.61 8.98 15.74 8.54 increasing 0.00 0.03 Increasing
1981.xlsx 8 0 4.45 6.71 15.61 8.98 15.74 8.54 increasing 0.00 0.03 Increasing
1981.xlsx 9 0 7.90 9.86 15.61 8.98 15.74 8.54 increasing 0.00 0.03 Increasing
1981.xlsx 10 0 7.70 10.32 15.61 8.98 15.74 8.54 increasing 0.00 0.03 Increasing
1981.xlsx 11 0 7.75 11.28 15.61 8.98 15.74 8.54 increasing 0.00 0.03 Increasing
1981.xlsx 12 0 4.40 9.53 15.61 8.98 15.74 8.54 increasing 0.00 0.03 Increasing
1981.xlsx 13 0 3.10 7.50 15.61 8.98 15.74 8.54 increasing 0.00 0.03 Increasing
1981.xlsx 14 0 4.67 6.49 15.61 8.98 15.74 8.54 increasing 0.00 0.03 Increasing
1981.xlsx 15 0 12.44 11.96 15.61 8.98 15.74 8.54 increasing 0.00 0.03 Increasing
1981.xlsx 16 0 4.52 8.10 15.61 8.98 15.74 8.54 increasing 0.00 0.03 Increasing
1981.xlsx 17 0 4.17 7.05 15.61 8.98 15.74 8.54 increasing 0.00 0.03 Increasing
1981.xlsx 18 0 3.94 6.77 15.61 8.98 15.74 8.54 increasing 0.00 0.03 Increasing
1981.xlsx 19 0 5.95 7.41 15.61 8.98 15.74 8.54 increasing 0.00 0.03 Increasing
1981.xlsx 20 0 5.09 6.44 15.61 8.98 15.74 8.54 increasing 0.00 0.03 Increasing
1981.xlsx 21 0 9.07 8.89 15.61 8.98 15.74 8.54 increasing 0.00 0.03 Increasing
1981.xlsx 22 0 20.88 17.33 15.61 8.98 15.74 8.54 increasing 0.00 0.03 Increasing
1981.xlsx 23 0 40.65 34.87 15.61 8.98 15.74 8.54 increasing 0.00 0.03 Increasing
1981.xlsx 24 0 23.02 23.25 15.61 8.98 15.74 8.54 increasing 0.00 0.03 Increasing
1981.xlsx 25 0 8.12 9.01 15.61 8.98 15.74 8.54 increasing 0.00 0.03 Increasing
1981.xlsx 26 0 4.38 1.80 15.61 8.98 15.74 8.54 increasing 0.00 0.03 Increasing
1981.xlsx 27 0 3.20 -0.51 15.61 8.98 15.74 8.54 increasing 0.00 0.03 Increasing
1981.xlsx 28 0 4.16 -0.19 15.61 8.98 15.74 8.54 increasing 0.00 0.03 Increasing
1981.xlsx 29 0 5.82 1.96 15.61 8.98 15.74 8.54 increasing 0.00 0.03 Increasing
1981.xlsx 30 0 8.02 4.94 15.61 8.98 15.74 8.54 increasing 0.00 0.03 Increasing
1981.xlsx 31 0 7.59 5.56 15.61 8.98 15.74 8.54 increasing 0.00 0.03 Increasing
1981.xlsx 32 0 6.71 6.74 15.61 8.98 15.74 8.54 increasing 0.00 0.03 Increasing
1981.xlsx 33 0 7.39 8.73 15.61 8.98 15.74 8.54 increasing 0.00 0.03 Increasing
1981.xlsx 34 0 10.00 10.81 15.61 8.98 15.74 8.54 increasing 0.00 0.03 Increasing
1981.xlsx 35 0 9.63 10.23 15.61 8.98 15.74 8.54 increasing 0.00 0.03 Increasing
1981.xlsx 36 0 13.07 13.03 15.61 8.98 15.74 8.54 increasing 0.00 0.03 Increasing
1981.xlsx 37 0 12.01 13.09 15.61 8.98 15.74 8.54 increasing 0.00 0.03 Increasing
1981.xlsx 38 0 6.28 9.20 15.61 8.98 15.74 8.54 increasing 0.00 0.03 Increasing
1981.xlsx 39 0 7.97 10.33 15.61 8.98 15.74 8.54 increasing 0.00 0.03 Increasing
1981.xlsx 40 0 4.36 7.67 15.61 8.98 15.74 8.54 increasing 0.00 0.03 Increasing
1981.xlsx 41 0 8.70 10.26 15.61 8.98 15.74 8.54 increasing 0.00 0.03 Increasing
1981.xlsx 42 0 7.73 8.94 15.61 8.98 15.74 8.54 increasing 0.00 0.03 Increasing
1981.xlsx 43 0 3.84 5.12 15.61 8.98 15.74 8.54 increasing 0.00 0.03 Increasing
1981.xlsx 44 0 2.48 3.51 15.61 8.98 15.74 8.54 increasing 0.00 0.03 Increasing
1981.xlsx 45 0 1.49 1.35 15.61 8.98 15.74 8.54 increasing 0.00 0.03 Increasing
1981.xlsx 46 0 3.86 1.48 15.61 8.98 15.74 8.54 increasing 0.00 0.03 Increasing
1981.xlsx 47 0 4.76 1.03 15.61 8.98 15.74 8.54 increasing 0.00 0.03 Increasing
1981.xlsx 48 0 4.48 0.43 15.61 8.98 15.74 8.54 increasing 0.00 0.03 Increasing
1981.xlsx 49 0 5.00 0.37 15.61 8.98 15.74 8.54 increasing 0.00 0.03 Increasing
1981.xlsx 50 0 5.61 1.64 15.61 8.98 15.74 8.54 increasing 0.00 0.03 Increasing
1981.xlsx 51 0 6.63 3.38 15.61 8.98 15.74 8.54 increasing 0.00 0.03 Increasing
1981.xlsx 52 0 7.35 4.21 15.61 8.98 15.74 8.54 increasing 0.00 0.03 Increasing
1981.xlsx 53 1.40 9.25 6.39 15.61 8.98 15.74 8.54 increasing 0.00 0.03 Increasing
1981.xlsx 54 0 21.38 16.30 15.61 8.98 15.74 8.54 increasing 0.00 0.03 Increasing
1981.xlsx 55 0 11.52 10.12 15.61 8.98 15.74 8.54 increasing 0.00 0.03 Increasing
1981.xlsx 56 0 9.39 8.13 15.61 8.98 15.74 8.54 increasing 0.00 0.03 Increasing
1981.xlsx 57 0 6.33 5.68 15.61 8.98 15.74 8.54 increasing 0.00 0.03 Increasing
1981.xlsx 58 0 2.77 2.63 15.61 8.98 15.74 8.54 increasing 0.00 0.03 Increasing
1981.xlsx 59 0 5.47 3.10 15.61 8.98 15.74 8.54 increasing 0.00 0.03 Increasing
1981.xlsx 60 0 3.85 2.73 15.61 8.98 15.74 8.54 increasing 0.00 0.03 Increasing
1981.xlsx 61 0 1.49 0.50 15.61 8.98 15.74 8.54 increasing 0.00 0.03 Increasing
1981.xlsx 62 0 2.39 0.86 15.61 8.98 15.74 8.54 increasing 0.00 0.03 Increasing
1981.xlsx 63 0 2.38 1.68 15.61 8.98 15.74 8.54 increasing 0.00 0.03 Increasing
1981.xlsx 64 0 3.66 2.03 15.61 8.98 15.74 8.54 increasing 0.00 0.03 Increasing
1981.xlsx 65 0 4.46 2.18 15.61 8.98 15.74 8.54 increasing 0.00 0.03 Increasing
1981.xlsx 66 0 2.85 1.69 15.61 8.98 15.74 8.54 increasing 0.00 0.03 Increasing
1981.xlsx 67 0 3.78 2.04 15.61 8.98 15.74 8.54 increasing 0.00 0.03 Increasing
1982.xlsx 1 0 3.35 2.45 17.26 9.67 16.96 9.51 increasing 0.00 0.02 Increasing
1982.xlsx 2 0 1.35 1.32 17.26 9.67 16.96 9.51 increasing 0.00 0.02 Increasing
1982.xlsx 3 0 0.29 -0.03 17.26 9.67 16.96 9.51 increasing 0.00 0.02 Increasing
1982.xlsx 4 0 4.69 3.80 17.26 9.67 16.96 9.51 increasing 0.00 0.02 Increasing
1982.xlsx 5 0 5.28 5.28 17.26 9.67 16.96 9.51 increasing 0.00 0.02 Increasing
1982.xlsx 6 0 5.81 6.42 17.26 9.67 16.96 9.51 increasing 0.00 0.02 Increasing
1982.xlsx 7 0 11.17 11.40 17.26 9.67 16.96 9.51 increasing 0.00 0.02 Increasing
1982.xlsx 8 0 12.74 15.65 17.26 9.67 16.96 9.51 increasing 0.00 0.02 Increasing
1982.xlsx 9 0 13.83 17.28 17.26 9.67 16.96 9.51 increasing 0.00 0.02 Increasing
1982.xlsx 10 0 41.55 41.08 17.26 9.67 16.96 9.51 increasing 0.00 0.02 Increasing
1982.xlsx 11 0 25.65 32.12 17.26 9.67 16.96 9.51 increasing 0.00 0.02 Increasing
1982.xlsx 12 0 14.92 21.06 17.26 9.67 16.96 9.51 increasing 0.00 0.02 Increasing
1982.xlsx 13 0 14.77 18.10 17.26 9.67 16.96 9.51 increasing 0.00 0.02 Increasing
1982.xlsx 14 0 8.83 11.66 17.26 9.67 16.96 9.51 increasing 0.00 0.02 Increasing
1982.xlsx 15 0 1.85 4.73 17.26 9.67 16.96 9.51 increasing 0.00 0.02 Increasing
1982.xlsx 16 0 4.74 5.20 17.26 9.67 16.96 9.51 increasing 0.00 0.02 Increasing
1982.xlsx 17 0 6.20 4.87 17.26 9.67 16.96 9.51 increasing 0.00 0.02 Increasing
1982.xlsx 18 0 4.19 3.00 17.26 9.67 16.96 9.51 increasing 0.00 0.02 Increasing
1982.xlsx 19 0 4.98 3.68 17.26 9.67 16.96 9.51 increasing 0.00 0.02 Increasing
1982.xlsx 20 0 6.35 5.19 17.26 9.67 16.96 9.51 increasing 0.00 0.02 Increasing
1982.xlsx 21 0 4.75 4.67 17.26 9.67 16.96 9.51 increasing 0.00 0.02 Increasing
1982.xlsx 22 0 3.63 4.22 17.26 9.67 16.96 9.51 increasing 0.00 0.02 Increasing
1982.xlsx 23 0 4.59 5.06 17.26 9.67 16.96 9.51 increasing 0.00 0.02 Increasing
1982.xlsx 24 0 6.47 7.84 17.26 9.67 16.96 9.51 increasing 0.00 0.02 Increasing
1982.xlsx 25 0 11.05 12.06 17.26 9.67 16.96 9.51 increasing 0.00 0.02 Increasing
1982.xlsx 26 0 9.01 11.46 17.26 9.67 16.96 9.51 increasing 0.00 0.02 Increasing
1982.xlsx 27 0 9.73 12.01 17.26 9.67 16.96 9.51 increasing 0.00 0.02 Increasing
1982.xlsx 28 0 8.18 10.40 17.26 9.67 16.96 9.51 increasing 0.00 0.02 Increasing
1982.xlsx 29 0 7.07 9.34 17.26 9.67 16.96 9.51 increasing 0.00 0.02 Increasing
1982.xlsx 30 0 11.83 12.93 17.26 9.67 16.96 9.51 increasing 0.00 0.02 Increasing
1982.xlsx 31 0 7.96 10.02 17.26 9.67 16.96 9.51 increasing 0.00 0.02 Increasing
1982.xlsx 32 0 14.91 13.52 17.26 9.67 16.96 9.51 increasing 0.00 0.02 Increasing
1982.xlsx 33 0 18.18 15.86 17.26 9.67 16.96 9.51 increasing 0.00 0.02 Increasing
1982.xlsx 34 0 15.59 13.27 17.26 9.67 16.96 9.51 increasing 0.00 0.02 Increasing
1982.xlsx 35 0 7.84 5.86 17.26 9.67 16.96 9.51 increasing 0.00 0.02 Increasing
1982.xlsx 36 0 3.66 1.19 17.26 9.67 16.96 9.51 increasing 0.00 0.02 Increasing
1982.xlsx 37 0 4.05 0.96 17.26 9.67 16.96 9.51 increasing 0.00 0.02 Increasing
1982.xlsx 38 0 3.49 1.66 17.26 9.67 16.96 9.51 increasing 0.00 0.02 Increasing
1982.xlsx 39 0 0.60 0.65 17.26 9.67 16.96 9.51 increasing 0.00 0.02 Increasing
1982.xlsx 40 0 -0.09 2.17 17.26 9.67 16.96 9.51 increasing 0.00 0.02 Increasing
1982.xlsx 41 0 19.69 19.21 17.26 9.67 16.96 9.51 increasing 0.00 0.02 Increasing
1982.xlsx 42 0 9.91 14.38 17.26 9.67 16.96 9.51 increasing 0.00 0.02 Increasing
1982.xlsx 43 0 10.05 13.18 17.26 9.67 16.96 9.51 increasing 0.00 0.02 Increasing
1982.xlsx 44 0 3.43 7.66 17.26 9.67 16.96 9.51 increasing 0.00 0.02 Increasing
1982.xlsx 45 0 4.59 6.77 17.26 9.67 16.96 9.51 increasing 0.00 0.02 Increasing
1982.xlsx 46 0 7.24 7.68 17.26 9.67 16.96 9.51 increasing 0.00 0.02 Increasing
1982.xlsx 47 0 8.98 8.38 17.26 9.67 16.96 9.51 increasing 0.00 0.02 Increasing
1982.xlsx 48 0 13.90 13.79 17.26 9.67 16.96 9.51 increasing 0.00 0.02 Increasing
1982.xlsx 49 0 9.99 11.27 17.26 9.67 16.96 9.51 increasing 0.00 0.02 Increasing
1982.xlsx 50 0 8.92 8.17 17.26 9.67 16.96 9.51 increasing 0.00 0.02 Increasing
1982.xlsx 51 0 8.55 6.67 17.26 9.67 16.96 9.51 increasing 0.00 0.02 Increasing
1982.xlsx 52 0 9.35 7.27 17.26 9.67 16.96 9.51 increasing 0.00 0.02 Increasing
1982.xlsx 53 0 6.65 6.91 17.26 9.67 16.96 9.51 increasing 0.00 0.02 Increasing
1982.xlsx 54 0 2.97 2.87 17.26 9.67 16.96 9.51 increasing 0.00 0.02 Increasing
1982.xlsx 55 0 10.13 6.61 17.26 9.67 16.96 9.51 increasing 0.00 0.02 Increasing
1982.xlsx 56 0 11.09 8.02 17.26 9.67 16.96 9.51 increasing 0.00 0.02 Increasing
1982.xlsx 57 0 9.49 7.58 17.26 9.67 16.96 9.51 increasing 0.00 0.02 Increasing
1982.xlsx 58 0 5.57 4.99 17.26 9.67 16.96 9.51 increasing 0.00 0.02 Increasing
1982.xlsx 59 0 3.85 3.75 17.26 9.67 16.96 9.51 increasing 0.00 0.02 Increasing
1982.xlsx 60 0 5.63 4.88 17.26 9.67 16.96 9.51 increasing 0.00 0.02 Increasing
1982.xlsx 61 0 5.58 4.91 17.26 9.67 16.96 9.51 increasing 0.00 0.02 Increasing
1982.xlsx 62 0 4.95 4.84 17.26 9.67 16.96 9.51 increasing 0.00 0.02 Increasing
1982.xlsx 63 0 5.69 5.21 17.26 9.67 16.96 9.51 increasing 0.00 0.02 Increasing
1982.xlsx 64 0 4.36 4.01 17.26 9.67 16.96 9.51 increasing 0.00 0.02 Increasing
1982.xlsx 65 0 6.17 4.50 17.26 9.67 16.96 9.51 increasing 0.00 0.02 Increasing
1982.xlsx 66 0 7.16 5.02 17.26 9.67 16.96 9.51 increasing 0.00 0.02 Increasing
1982.xlsx 67 0 4.30 2.65 17.26 9.67 16.96 9.51 increasing 0.00 0.02 Increasing
1983.xlsx 1 0 20.20 19.26 28.02 13.36 28.66 14.46 increasing 0 0.04 Increasing
1983.xlsx 2 0 18.11 19.08 28.02 13.36 28.66 14.46 increasing 0 0.04 Increasing
1983.xlsx 3 0 15.67 18.85 28.02 13.36 28.66 14.46 increasing 0 0.04 Increasing
1983.xlsx 4 0 11.75 16.34 28.02 13.36 28.66 14.46 increasing 0 0.04 Increasing
1983.xlsx 5 0 10.42 14.75 28.02 13.36 28.66 14.46 increasing 0 0.04 Increasing
1983.xlsx 6 0 19.76 24.63 28.02 13.36 28.66 14.46 increasing 0 0.04 Increasing
1983.xlsx 7 0 16.15 22.72 28.02 13.36 28.66 14.46 increasing 0 0.04 Increasing
1983.xlsx 8 0 12.09 19.60 28.02 13.36 28.66 14.46 increasing 0 0.04 Increasing
1983.xlsx 9 0 7.87 14.88 28.02 13.36 28.66 14.46 increasing 0 0.04 Increasing
1983.xlsx 10 0 6.55 12.95 28.02 13.36 28.66 14.46 increasing 0 0.04 Increasing
1983.xlsx 11 0 3.19 10.60 28.02 13.36 28.66 14.46 increasing 0 0.04 Increasing
1983.xlsx 12 0 3.38 9.23 28.02 13.36 28.66 14.46 increasing 0 0.04 Increasing
1983.xlsx 13 0 3.00 8.34 28.02 13.36 28.66 14.46 increasing 0 0.04 Increasing
1983.xlsx 14 0 4.52 8.88 28.02 13.36 28.66 14.46 increasing 0 0.04 Increasing
1983.xlsx 15 0 1.28 6.83 28.02 13.36 28.66 14.46 increasing 0 0.04 Increasing
1983.xlsx 16 0 0.18 5.36 28.02 13.36 28.66 14.46 increasing 0 0.04 Increasing
1983.xlsx 17 0 0.44 4.64 28.02 13.36 28.66 14.46 increasing 0 0.04 Increasing
1983.xlsx 18 0 1.23 4.71 28.02 13.36 28.66 14.46 increasing 0 0.04 Increasing
1983.xlsx 19 0 3.18 5.83 28.02 13.36 28.66 14.46 increasing 0 0.04 Increasing
1983.xlsx 20 0 2.86 5.70 28.02 13.36 28.66 14.46 increasing 0 0.04 Increasing
1983.xlsx 21 0 4.46 6.26 28.02 13.36 28.66 14.46 increasing 0 0.04 Increasing
1983.xlsx 22 0 4.53 5.67 28.02 13.36 28.66 14.46 increasing 0 0.04 Increasing
1983.xlsx 23 0 4.61 4.59 28.02 13.36 28.66 14.46 increasing 0 0.04 Increasing
1983.xlsx 24 0 5.90 3.77 28.02 13.36 28.66 14.46 increasing 0 0.04 Increasing
1983.xlsx 25 0 5.14 3.04 28.02 13.36 28.66 14.46 increasing 0 0.04 Increasing
1983.xlsx 26 0 7.76 4.57 28.02 13.36 28.66 14.46 increasing 0 0.04 Increasing
1983.xlsx 27 0 5.29 2.46 28.02 13.36 28.66 14.46 increasing 0 0.04 Increasing
1983.xlsx 28 0 5.28 1.57 28.02 13.36 28.66 14.46 increasing 0 0.04 Increasing
1983.xlsx 29 0 4.64 0.56 28.02 13.36 28.66 14.46 increasing 0 0.04 Increasing
1983.xlsx 30 0 2.28 -0.63 28.02 13.36 28.66 14.46 increasing 0 0.04 Increasing
1983.xlsx 31 0 0.42 -2.78 28.02 13.36 28.66 14.46 increasing 0 0.04 Increasing
1983.xlsx 32 0 3.40 -1.03 28.02 13.36 28.66 14.46 increasing 0 0.04 Increasing
1983.xlsx 33 0 4.53 1.09 28.02 13.36 28.66 14.46 increasing 0 0.04 Increasing
1983.xlsx 34 0 6.25 3.92 28.02 13.36 28.66 14.46 increasing 0 0.04 Increasing
1983.xlsx 35 0 10.59 9.01 28.02 13.36 28.66 14.46 increasing 0 0.04 Increasing
1983.xlsx 36 0 18.25 16.95 28.02 13.36 28.66 14.46 increasing 0 0.04 Increasing
1983.xlsx 37 0 14.86 17.26 28.02 13.36 28.66 14.46 increasing 0 0.04 Increasing
1983.xlsx 38 0 3.73 9.86 28.02 13.36 28.66 14.46 increasing 0 0.04 Increasing
1983.xlsx 39 0 4.40 8.47 28.02 13.36 28.66 14.46 increasing 0 0.04 Increasing
1983.xlsx 40 0 9.21 11.71 28.02 13.36 28.66 14.46 increasing 0 0.04 Increasing
1983.xlsx 41 0 10.97 12.77 28.02 13.36 28.66 14.46 increasing 0 0.04 Increasing
1983.xlsx 42 0 7.97 10.32 28.02 13.36 28.66 14.46 increasing 0 0.04 Increasing
1983.xlsx 43 0 10.95 12.52 28.02 13.36 28.66 14.46 increasing 0 0.04 Increasing
1983.xlsx 44 0 5.25 9.59 28.02 13.36 28.66 14.46 increasing 0 0.04 Increasing
1983.xlsx 45 0 2.83 7.13 28.02 13.36 28.66 14.46 increasing 0 0.04 Increasing
1983.xlsx 46 0 2.96 5.97 28.02 13.36 28.66 14.46 increasing 0 0.04 Increasing
1983.xlsx 47 0 2.26 4.64 28.02 13.36 28.66 14.46 increasing 0 0.04 Increasing
1983.xlsx 48 0 14.58 15.01 28.02 13.36 28.66 14.46 increasing 0 0.04 Increasing
1983.xlsx 49 0 23.00 23.38 28.02 13.36 28.66 14.46 increasing 0 0.04 Increasing
1983.xlsx 50 0 18.72 21.05 28.02 13.36 28.66 14.46 increasing 0 0.04 Increasing
1983.xlsx 51 0 16.95 18.96 28.02 13.36 28.66 14.46 increasing 0 0.04 Increasing
1983.xlsx 52 0 12.61 14.80 28.02 13.36 28.66 14.46 increasing 0 0.04 Increasing
1983.xlsx 53 0 12.53 13.73 28.02 13.36 28.66 14.46 increasing 0 0.04 Increasing
1983.xlsx 54 0 4.99 7.30 28.02 13.36 28.66 14.46 increasing 0 0.04 Increasing
1983.xlsx 55 0 8.01 7.47 28.02 13.36 28.66 14.46 increasing 0 0.04 Increasing
1983.xlsx 56 0 7.57 7.78 28.02 13.36 28.66 14.46 increasing 0 0.04 Increasing
1983.xlsx 57 0 4.37 4.98 28.02 13.36 28.66 14.46 increasing 0 0.04 Increasing
1983.xlsx 58 0 9.02 8.35 28.02 13.36 28.66 14.46 increasing 0 0.04 Increasing
1983.xlsx 59 0 50.88 45.81 28.02 13.36 28.66 14.46 increasing 0 0.04 Increasing
1983.xlsx 60 0 65.51 65.97 28.02 13.36 28.66 14.46 increasing 0 0.04 Increasing
1983.xlsx 61 0 30.57 42.94 28.02 13.36 28.66 14.46 increasing 0 0.04 Increasing
1983.xlsx 62 0 26.71 33.95 28.02 13.36 28.66 14.46 increasing 0 0.04 Increasing
1983.xlsx 63 0 11.46 16.75 28.02 13.36 28.66 14.46 increasing 0 0.04 Increasing
1983.xlsx 64 0 8.26 8.02 28.02 13.36 28.66 14.46 increasing 0 0.04 Increasing
1983.xlsx 65 0 6.71 3.57 28.02 13.36 28.66 14.46 increasing 0 0.04 Increasing
1983.xlsx 66 0 13.10 8.43 28.02 13.36 28.66 14.46 increasing 0 0.04 Increasing
1983.xlsx 67 0 8.25 5.91 28.02 13.36 28.66 14.46 increasing 0 0.04 Increasing
1984.xlsx 1 0 2.31 2.95 19.59 10.51 19.01 10.56 increasing 0.01 0.01 Increasing
1984.xlsx 2 0 4.90 3.77 19.59 10.51 19.01 10.56 increasing 0.01 0.01 Increasing
1984.xlsx 3 0 4.18 3.34 19.59 10.51 19.01 10.56 increasing 0.01 0.01 Increasing
1984.xlsx 4 0 4.44 4.20 19.59 10.51 19.01 10.56 increasing 0.01 0.01 Increasing
1984.xlsx 5 0.60 7.95 6.29 19.59 10.51 19.01 10.56 increasing 0.01 0.01 Increasing
1984.xlsx 6 0 4.38 5.81 19.59 10.51 19.01 10.56 increasing 0.01 0.01 Increasing
1984.xlsx 7 91.60 3.72 6.47 19.59 10.51 19.01 10.56 increasing 0.01 0.01 Increasing
1984.xlsx 8 24 4.91 7.88 19.59 10.51 19.01 10.56 increasing 0.01 0.01 Increasing
1984.xlsx 9 0 4.52 8.12 19.59 10.51 19.01 10.56 increasing 0.01 0.01 Increasing
1984.xlsx 10 0 3.62 7.58 19.59 10.51 19.01 10.56 increasing 0.01 0.01 Increasing
1984.xlsx 11 0 6.87 10.18 19.59 10.51 19.01 10.56 increasing 0.01 0.01 Increasing
1984.xlsx 12 0 6.73 10.00 19.59 10.51 19.01 10.56 increasing 0.01 0.01 Increasing
1984.xlsx 13 11 8.97 11.23 19.59 10.51 19.01 10.56 increasing 0.01 0.01 Increasing
1984.xlsx 14 20 27.71 27.77 19.59 10.51 19.01 10.56 increasing 0.01 0.01 Increasing
1984.xlsx 15 1.50 14.08 19.66 19.59 10.51 19.01 10.56 increasing 0.01 0.01 Increasing
1984.xlsx 16 2 41.84 41.63 19.59 10.51 19.01 10.56 increasing 0.01 0.01 Increasing
1984.xlsx 17 51.50 13.98 23.35 19.59 10.51 19.01 10.56 increasing 0.01 0.01 Increasing
1984.xlsx 18 9.50 6.13 13.37 19.59 10.51 19.01 10.56 increasing 0.01 0.01 Increasing
1984.xlsx 19 0 5.99 9.44 19.59 10.51 19.01 10.56 increasing 0.01 0.01 Increasing
1984.xlsx 20 1.40 12.31 13.87 19.59 10.51 19.01 10.56 increasing 0.01 0.01 Increasing
1984.xlsx 21 0.60 8.58 10.98 19.59 10.51 19.01 10.56 increasing 0.01 0.01 Increasing
1984.xlsx 22 0 11.05 13.83 19.59 10.51 19.01 10.56 increasing 0.01 0.01 Increasing
1984.xlsx 23 0 2.09 7.25 19.59 10.51 19.01 10.56 increasing 0.01 0.01 Increasing
1984.xlsx 24 0 1.62 5.33 19.59 10.51 19.01 10.56 increasing 0.01 0.01 Increasing
1984.xlsx 25 0 19.00 19.39 19.59 10.51 19.01 10.56 increasing 0.01 0.01 Increasing
1984.xlsx 26 0 14.88 17.92 19.59 10.51 19.01 10.56 increasing 0.01 0.01 Increasing
1984.xlsx 27 0 8.88 12.08 19.59 10.51 19.01 10.56 increasing 0.01 0.01 Increasing
1984.xlsx 28 0 4.73 8.37 19.59 10.51 19.01 10.56 increasing 0.01 0.01 Increasing
1984.xlsx 29 0 2.79 6.06 19.59 10.51 19.01 10.56 increasing 0.01 0.01 Increasing
1984.xlsx 30 0 3.40 6.01 19.59 10.51 19.01 10.56 increasing 0.01 0.01 Increasing
1984.xlsx 31 0 7.47 9.03 19.59 10.51 19.01 10.56 increasing 0.01 0.01 Increasing
1984.xlsx 32 0 8.12 9.43 19.59 10.51 19.01 10.56 increasing 0.01 0.01 Increasing
1984.xlsx 33 0 19.75 18.78 19.59 10.51 19.01 10.56 increasing 0.01 0.01 Increasing
1984.xlsx 34 124.20 18.15 18.48 19.59 10.51 19.01 10.56 increasing 0.01 0.01 Increasing
1984.xlsx 35 2 13.81 14.38 19.59 10.51 19.01 10.56 increasing 0.01 0.01 Increasing
1984.xlsx 36 13.80 11.17 11.30 19.59 10.51 19.01 10.56 increasing 0.01 0.01 Increasing
1984.xlsx 37 79.50 9.21 8.81 19.59 10.51 19.01 10.56 increasing 0.01 0.01 Increasing
1984.xlsx 38 0.20 8.08 7.23 19.59 10.51 19.01 10.56 increasing 0.01 0.01 Increasing
1984.xlsx 39 0 12.74 11.01 19.59 10.51 19.01 10.56 increasing 0.01 0.01 Increasing
1984.xlsx 40 0 19.74 15.76 19.59 10.51 19.01 10.56 increasing 0.01 0.01 Increasing
1984.xlsx 41 0 8.63 8.47 19.59 10.51 19.01 10.56 increasing 0.01 0.01 Increasing
1984.xlsx 42 0 6.56 5.41 19.59 10.51 19.01 10.56 increasing 0.01 0.01 Increasing
1984.xlsx 43 0 7.25 4.69 19.59 10.51 19.01 10.56 increasing 0.01 0.01 Increasing
1984.xlsx 44 0 4.08 3.46 19.59 10.51 19.01 10.56 increasing 0.01 0.01 Increasing
1984.xlsx 45 0 4.35 3.40 19.59 10.51 19.01 10.56 increasing 0.01 0.01 Increasing
1984.xlsx 46 0 3.49 5.69 19.59 10.51 19.01 10.56 increasing 0.01 0.01 Increasing
1984.xlsx 47 0 4.92 5.61 19.59 10.51 19.01 10.56 increasing 0.01 0.01 Increasing
1984.xlsx 48 0 4.03 4.97 19.59 10.51 19.01 10.56 increasing 0.01 0.01 Increasing
1984.xlsx 49 0 4.04 5.50 19.59 10.51 19.01 10.56 increasing 0.01 0.01 Increasing
1984.xlsx 50 0 0.94 5.03 19.59 10.51 19.01 10.56 increasing 0.01 0.01 Increasing
1984.xlsx 51 0 -1.94 1.55 19.59 10.51 19.01 10.56 increasing 0.01 0.01 Increasing
1984.xlsx 52 0 -1.59 -0.16 19.59 10.51 19.01 10.56 increasing 0.01 0.01 Increasing
1984.xlsx 53 0 1.77 0.74 19.59 10.51 19.01 10.56 increasing 0.01 0.01 Increasing
1984.xlsx 54 0 5.61 2.77 19.59 10.51 19.01 10.56 increasing 0.01 0.01 Increasing
1984.xlsx 55 0 0.72 0.40 19.59 10.51 19.01 10.56 increasing 0.01 0.01 Increasing
1984.xlsx 56 0 4.79 2.32 19.59 10.51 19.01 10.56 increasing 0.01 0.01 Increasing
1984.xlsx 57 0 4.05 2.40 19.59 10.51 19.01 10.56 increasing 0.01 0.01 Increasing
1984.xlsx 58 0 4.28 2.51 19.59 10.51 19.01 10.56 increasing 0.01 0.01 Increasing
1984.xlsx 59 0 2.36 0.74 19.59 10.51 19.01 10.56 increasing 0.01 0.01 Increasing
1984.xlsx 60 0 4.16 1.42 19.59 10.51 19.01 10.56 increasing 0.01 0.01 Increasing
1984.xlsx 61 0 5.76 2.47 19.59 10.51 19.01 10.56 increasing 0.01 0.01 Increasing
1984.xlsx 62 0 7.25 3.96 19.59 10.51 19.01 10.56 increasing 0.01 0.01 Increasing
1984.xlsx 63 0 2.73 2.05 19.59 10.51 19.01 10.56 increasing 0.01 0.01 Increasing
1984.xlsx 64 0 4.43 2.51 19.59 10.51 19.01 10.56 increasing 0.01 0.01 Increasing
1984.xlsx 65 0 5.05 2.03 19.59 10.51 19.01 10.56 increasing 0.01 0.01 Increasing
1984.xlsx 66 0 3.77 1.23 19.59 10.51 19.01 10.56 increasing 0.01 0.01 Increasing
1984.xlsx 67 0 6.03 3.15 19.59 10.51 19.01 10.56 increasing 0.01 0.01 Increasing
1984.xlsx 68 0 7.39 5.88 19.59 10.51 19.01 10.56 increasing 0.01 0.01 Increasing
1985.xlsx 1 0 14.29 12.33 33.06 17.62 32.91 17.70 increasing 0.00 0.03 Increasing
1985.xlsx 2 0 48.25 41.88 33.06 17.62 32.91 17.70 increasing 0.00 0.03 Increasing
1985.xlsx 3 0 23.51 28.20 33.06 17.62 32.91 17.70 increasing 0.00 0.03 Increasing
1985.xlsx 4 0 8.60 14.43 33.06 17.62 32.91 17.70 increasing 0.00 0.03 Increasing
1985.xlsx 5 0 4.54 8.45 33.06 17.62 32.91 17.70 increasing 0.00 0.03 Increasing
1985.xlsx 6 0 2.79 4.78 33.06 17.62 32.91 17.70 increasing 0.00 0.03 Increasing
1985.xlsx 7 0 22.86 20.74 33.06 17.62 32.91 17.70 increasing 0.00 0.03 Increasing
1985.xlsx 8 0 11.18 13.51 33.06 17.62 32.91 17.70 increasing 0.00 0.03 Increasing
1985.xlsx 9 0 7.62 9.91 33.06 17.62 32.91 17.70 increasing 0.00 0.03 Increasing
1985.xlsx 10 0 21.51 21.98 33.06 17.62 32.91 17.70 increasing 0.00 0.03 Increasing
1985.xlsx 11 0 26.59 28.96 33.06 17.62 32.91 17.70 increasing 0.00 0.03 Increasing
1985.xlsx 12 0 16.30 22.48 33.06 17.62 32.91 17.70 increasing 0.00 0.03 Increasing
1985.xlsx 13 0 37.39 40.56 33.06 17.62 32.91 17.70 increasing 0.00 0.03 Increasing
1985.xlsx 14 0 47.86 51.98 33.06 17.62 32.91 17.70 increasing 0.00 0.03 Increasing
1985.xlsx 15 0 23.24 35.16 33.06 17.62 32.91 17.70 increasing 0.00 0.03 Increasing
1985.xlsx 16 0 21.99 30.94 33.06 17.62 32.91 17.70 increasing 0.00 0.03 Increasing
1985.xlsx 17 0 33.49 38.47 33.06 17.62 32.91 17.70 increasing 0.00 0.03 Increasing
1985.xlsx 18 0 56.15 59.19 33.06 17.62 32.91 17.70 increasing 0.00 0.03 Increasing
1985.xlsx 19 0 19.25 34.04 33.06 17.62 32.91 17.70 increasing 0.00 0.03 Increasing
1985.xlsx 20 0 11.51 22.16 33.06 17.62 32.91 17.70 increasing 0.00 0.03 Increasing
1985.xlsx 21 0 8.32 14.56 33.06 17.62 32.91 17.70 increasing 0.00 0.03 Increasing
1985.xlsx 22 0 -2.97 3.82 33.06 17.62 32.91 17.70 increasing 0.00 0.03 Increasing
1985.xlsx 23 0 -6.18 -2.84 33.06 17.62 32.91 17.70 increasing 0.00 0.03 Increasing
1985.xlsx 24 0 -2.27 -3.95 33.06 17.62 32.91 17.70 increasing 0.00 0.03 Increasing
1985.xlsx 25 0 -0.45 -4.73 33.06 17.62 32.91 17.70 increasing 0.00 0.03 Increasing
1985.xlsx 26 0 3.17 -3.36 33.06 17.62 32.91 17.70 increasing 0.00 0.03 Increasing
1985.xlsx 27 0 2.98 -3.61 33.06 17.62 32.91 17.70 increasing 0.00 0.03 Increasing
1985.xlsx 28 0 2.12 -4.12 33.06 17.62 32.91 17.70 increasing 0.00 0.03 Increasing
1985.xlsx 29 0 4.89 -2.10 33.06 17.62 32.91 17.70 increasing 0.00 0.03 Increasing
1985.xlsx 30 0 2.33 -2.77 33.06 17.62 32.91 17.70 increasing 0.00 0.03 Increasing
1985.xlsx 31 0 1.87 -2.71 33.06 17.62 32.91 17.70 increasing 0.00 0.03 Increasing
1985.xlsx 32 0 1.15 -2.79 33.06 17.62 32.91 17.70 increasing 0.00 0.03 Increasing
1985.xlsx 33 0 4.41 -1.87 33.06 17.62 32.91 17.70 increasing 0.00 0.03 Increasing
1985.xlsx 34 0 4.62 -2.63 33.06 17.62 32.91 17.70 increasing 0.00 0.03 Increasing
1985.xlsx 35 0 5.08 -3.42 33.06 17.62 32.91 17.70 increasing 0.00 0.03 Increasing
1985.xlsx 36 0 5.20 -4.14 33.06 17.62 32.91 17.70 increasing 0.00 0.03 Increasing
1985.xlsx 37 0 4.17 -5.04 33.06 17.62 32.91 17.70 increasing 0.00 0.03 Increasing
1985.xlsx 38 0 19.74 6.97 33.06 17.62 32.91 17.70 increasing 0.00 0.03 Increasing
1985.xlsx 39 0 39.04 23.90 33.06 17.62 32.91 17.70 increasing 0.00 0.03 Increasing
1985.xlsx 40 0 24.61 15.99 33.06 17.62 32.91 17.70 increasing 0.00 0.03 Increasing
1985.xlsx 41 0 14.53 7.02 33.06 17.62 32.91 17.70 increasing 0.00 0.03 Increasing
1985.xlsx 42 0 7.54 -0.39 33.06 17.62 32.91 17.70 increasing 0.00 0.03 Increasing
1985.xlsx 43 0 4.11 -3.09 33.06 17.62 32.91 17.70 increasing 0.00 0.03 Increasing
1985.xlsx 44 0 2.00 -3.72 33.06 17.62 32.91 17.70 increasing 0.00 0.03 Increasing
1985.xlsx 45 0 3.19 -2.94 33.06 17.62 32.91 17.70 increasing 0.00 0.03 Increasing
1985.xlsx 46 0 3.21 -1.40 33.06 17.62 32.91 17.70 increasing 0.00 0.03 Increasing
1985.xlsx 47 0 1.32 -0.34 33.06 17.62 32.91 17.70 increasing 0.00 0.03 Increasing
1985.xlsx 48 0 4.50 4.62 33.06 17.62 32.91 17.70 increasing 0.00 0.03 Increasing
1985.xlsx 49 0 4.90 6.28 33.06 17.62 32.91 17.70 increasing 0.00 0.03 Increasing
1985.xlsx 50 0 6.52 8.71 33.06 17.62 32.91 17.70 increasing 0.00 0.03 Increasing
1985.xlsx 51 0 5.68 9.73 33.06 17.62 32.91 17.70 increasing 0.00 0.03 Increasing
1985.xlsx 52 0 4.25 8.46 33.06 17.62 32.91 17.70 increasing 0.00 0.03 Increasing
1985.xlsx 53 0 5.86 9.05 33.06 17.62 32.91 17.70 increasing 0.00 0.03 Increasing
1985.xlsx 54 0 7.83 10.58 33.06 17.62 32.91 17.70 increasing 0.00 0.03 Increasing
1985.xlsx 55 0 5.64 9.04 33.06 17.62 32.91 17.70 increasing 0.00 0.03 Increasing
1985.xlsx 56 0 5.42 8.47 33.06 17.62 32.91 17.70 increasing 0.00 0.03 Increasing
1985.xlsx 57 0 3.90 6.79 33.06 17.62 32.91 17.70 increasing 0.00 0.03 Increasing
1985.xlsx 58 0 4.63 5.90 33.06 17.62 32.91 17.70 increasing 0.00 0.03 Increasing
1985.xlsx 59 0 5.72 5.50 33.06 17.62 32.91 17.70 increasing 0.00 0.03 Increasing
1985.xlsx 60 0 4.07 3.56 33.06 17.62 32.91 17.70 increasing 0.00 0.03 Increasing
1985.xlsx 61 0 3.92 1.85 33.06 17.62 32.91 17.70 increasing 0.00 0.03 Increasing
1985.xlsx 62 0 1.39 -1.12 33.06 17.62 32.91 17.70 increasing 0.00 0.03 Increasing
1985.xlsx 63 0 6.86 0.84 33.06 17.62 32.91 17.70 increasing 0.00 0.03 Increasing
1985.xlsx 64 0 6.25 0.55 33.06 17.62 32.91 17.70 increasing 0.00 0.03 Increasing
1985.xlsx 65 0 4.04 -0.78 33.06 17.62 32.91 17.70 increasing 0.00 0.03 Increasing
1985.xlsx 66 0 2.43 -1.54 33.06 17.62 32.91 17.70 increasing 0.00 0.03 Increasing
1985.xlsx 67 0.50 3.20 -0.74 33.06 17.62 32.91 17.70 increasing 0.00 0.03 Increasing
1986.xlsx 1 0 5.37 4.79 17.50 9.61 17.92 10.04 increasing 0.00 0.02 Increasing
1986.xlsx 2 0 12.90 12.39 17.50 9.61 17.92 10.04 increasing 0.00 0.02 Increasing
1986.xlsx 3 0 28.20 27.76 17.50 9.61 17.92 10.04 increasing 0.00 0.02 Increasing
1986.xlsx 4 0 10.71 15.67 17.50 9.61 17.92 10.04 increasing 0.00 0.02 Increasing
1986.xlsx 5 0 6.80 9.53 17.50 9.61 17.92 10.04 increasing 0.00 0.02 Increasing
1986.xlsx 6 0 7.65 9.15 17.50 9.61 17.92 10.04 increasing 0.00 0.02 Increasing
1986.xlsx 7 0 11.32 12.16 17.50 9.61 17.92 10.04 increasing 0.00 0.02 Increasing
1986.xlsx 8 0 6.96 8.59 17.50 9.61 17.92 10.04 increasing 0.00 0.02 Increasing
1986.xlsx 9 0 6.93 7.96 17.50 9.61 17.92 10.04 increasing 0.00 0.02 Increasing
1986.xlsx 10 0 4.24 5.82 17.50 9.61 17.92 10.04 increasing 0.00 0.02 Increasing
1986.xlsx 11 0 8.01 9.15 17.50 9.61 17.92 10.04 increasing 0.00 0.02 Increasing
1986.xlsx 12 0 5.87 8.00 17.50 9.61 17.92 10.04 increasing 0.00 0.02 Increasing
1986.xlsx 13 0 25.13 26.00 17.50 9.61 17.92 10.04 increasing 0.00 0.02 Increasing
1986.xlsx 14 0 20.43 26.14 17.50 9.61 17.92 10.04 increasing 0.00 0.02 Increasing
1986.xlsx 15 0 7.34 14.52 17.50 9.61 17.92 10.04 increasing 0.00 0.02 Increasing
1986.xlsx 16 0 3.40 8.43 17.50 9.61 17.92 10.04 increasing 0.00 0.02 Increasing
1986.xlsx 17 14 0.72 4.38 17.50 9.61 17.92 10.04 increasing 0.00 0.02 Increasing
1986.xlsx 18 0 1.03 3.01 17.50 9.61 17.92 10.04 increasing 0.00 0.02 Increasing
1986.xlsx 19 1.80 -0.42 0.95 17.50 9.61 17.92 10.04 increasing 0.00 0.02 Increasing
1986.xlsx 20 4.40 0.48 0.28 17.50 9.61 17.92 10.04 increasing 0.00 0.02 Increasing
1986.xlsx 21 0 0.50 -0.33 17.50 9.61 17.92 10.04 increasing 0.00 0.02 Increasing
1986.xlsx 22 0 1.27 -0.10 17.50 9.61 17.92 10.04 increasing 0.00 0.02 Increasing
1986.xlsx 23 0 1.25 -0.52 17.50 9.61 17.92 10.04 increasing 0.00 0.02 Increasing
1986.xlsx 24 0 -4.12 -5.10 17.50 9.61 17.92 10.04 increasing 0.00 0.02 Increasing
1986.xlsx 25 0 -1.34 -5.07 17.50 9.61 17.92 10.04 increasing 0.00 0.02 Increasing
1986.xlsx 26 0 5.54 -1.72 17.50 9.61 17.92 10.04 increasing 0.00 0.02 Increasing
1986.xlsx 27 0 5.98 0.67 17.50 9.61 17.92 10.04 increasing 0.00 0.02 Increasing
1986.xlsx 28 0 6.43 2.15 17.50 9.61 17.92 10.04 increasing 0.00 0.02 Increasing
1986.xlsx 29 0 6.10 1.86 17.50 9.61 17.92 10.04 increasing 0.00 0.02 Increasing
1986.xlsx 30 0 7.06 2.50 17.50 9.61 17.92 10.04 increasing 0.00 0.02 Increasing
1986.xlsx 31 0 11.06 6.07 17.50 9.61 17.92 10.04 increasing 0.00 0.02 Increasing
1986.xlsx 32 0 20.78 16.89 17.50 9.61 17.92 10.04 increasing 0.00 0.02 Increasing
1986.xlsx 33 0 15.18 15.86 17.50 9.61 17.92 10.04 increasing 0.00 0.02 Increasing
1986.xlsx 34 0 7.75 9.53 17.50 9.61 17.92 10.04 increasing 0.00 0.02 Increasing
1986.xlsx 35 0 5.77 6.48 17.50 9.61 17.92 10.04 increasing 0.00 0.02 Increasing
1986.xlsx 36 0 11.56 10.19 17.50 9.61 17.92 10.04 increasing 0.00 0.02 Increasing
1986.xlsx 37 0 11.80 11.18 17.50 9.61 17.92 10.04 increasing 0.00 0.02 Increasing
1986.xlsx 38 0 23.71 22.22 17.50 9.61 17.92 10.04 increasing 0.00 0.02 Increasing
1986.xlsx 39 9.60 13.49 15.85 17.50 9.61 17.92 10.04 increasing 0.00 0.02 Increasing
1986.xlsx 40 65 5.86 9.32 17.50 9.61 17.92 10.04 increasing 0.00 0.02 Increasing
1986.xlsx 41 0 0.60 3.93 17.50 9.61 17.92 10.04 increasing 0.00 0.02 Increasing
1986.xlsx 42 0 4.38 5.05 17.50 9.61 17.92 10.04 increasing 0.00 0.02 Increasing
1986.xlsx 43 0 3.16 5.98 17.50 9.61 17.92 10.04 increasing 0.00 0.02 Increasing
1986.xlsx 44 0 3.72 6.99 17.50 9.61 17.92 10.04 increasing 0.00 0.02 Increasing
1986.xlsx 45 0 6.50 8.24 17.50 9.61 17.92 10.04 increasing 0.00 0.02 Increasing
1986.xlsx 46 0 5.28 6.93 17.50 9.61 17.92 10.04 increasing 0.00 0.02 Increasing
1986.xlsx 47 0 5.34 7.08 17.50 9.61 17.92 10.04 increasing 0.00 0.02 Increasing
1986.xlsx 48 0 5.30 8.31 17.50 9.61 17.92 10.04 increasing 0.00 0.02 Increasing
1986.xlsx 49 0 3.45 6.66 17.50 9.61 17.92 10.04 increasing 0.00 0.02 Increasing
1986.xlsx 50 0 1.73 4.83 17.50 9.61 17.92 10.04 increasing 0.00 0.02 Increasing
1986.xlsx 51 0 1.27 3.67 17.50 9.61 17.92 10.04 increasing 0.00 0.02 Increasing
1986.xlsx 52 0 2.00 3.89 17.50 9.61 17.92 10.04 increasing 0.00 0.02 Increasing
1986.xlsx 53 0 0.34 1.85 17.50 9.61 17.92 10.04 increasing 0.00 0.02 Increasing
1986.xlsx 54 0 2.08 1.03 17.50 9.61 17.92 10.04 increasing 0.00 0.02 Increasing
1986.xlsx 55 0 3.08 0.31 17.50 9.61 17.92 10.04 increasing 0.00 0.02 Increasing
1986.xlsx 56 0 4.13 0.08 17.50 9.61 17.92 10.04 increasing 0.00 0.02 Increasing
1986.xlsx 57 0 8.90 3.15 17.50 9.61 17.92 10.04 increasing 0.00 0.02 Increasing
1986.xlsx 58 0 11.86 5.71 17.50 9.61 17.92 10.04 increasing 0.00 0.02 Increasing
1986.xlsx 59 0 13.76 8.77 17.50 9.61 17.92 10.04 increasing 0.00 0.02 Increasing
1986.xlsx 60 0 9.99 6.52 17.50 9.61 17.92 10.04 increasing 0.00 0.02 Increasing
1986.xlsx 61 0 5.99 3.50 17.50 9.61 17.92 10.04 increasing 0.00 0.02 Increasing
1986.xlsx 62 0 5.12 2.51 17.50 9.61 17.92 10.04 increasing 0.00 0.02 Increasing
1986.xlsx 63 0 14.06 9.10 17.50 9.61 17.92 10.04 increasing 0.00 0.02 Increasing
1986.xlsx 64 0 14.15 9.91 17.50 9.61 17.92 10.04 increasing 0.00 0.02 Increasing
1986.xlsx 65 0 17.14 14.13 17.50 9.61 17.92 10.04 increasing 0.00 0.02 Increasing
1986.xlsx 66 0 6.16 6.20 17.50 9.61 17.92 10.04 increasing 0.00 0.02 Increasing
1986.xlsx 67 0 2.72 2.45 17.50 9.61 17.92 10.04 increasing 0.00 0.02 Increasing
1987.xlsx 1 0 19.25 21.20 25.71 13.46 26.54 13.94 increasing 0.00 0.04 Increasing
1987.xlsx 2 0 7.42 13.52 25.71 13.46 26.54 13.94 increasing 0.00 0.04 Increasing
1987.xlsx 3 0 5.72 10.45 25.71 13.46 26.54 13.94 increasing 0.00 0.04 Increasing
1987.xlsx 4 0 6.14 9.78 25.71 13.46 26.54 13.94 increasing 0.00 0.04 Increasing
1987.xlsx 5 0 4.88 7.73 25.71 13.46 26.54 13.94 increasing 0.00 0.04 Increasing
1987.xlsx 6 0 24.60 22.58 25.71 13.46 26.54 13.94 increasing 0.00 0.04 Increasing
1987.xlsx 7 0 19.76 22.21 25.71 13.46 26.54 13.94 increasing 0.00 0.04 Increasing
1987.xlsx 8 0 5.44 10.20 25.71 13.46 26.54 13.94 increasing 0.00 0.04 Increasing
1987.xlsx 9 0 -0.11 2.91 25.71 13.46 26.54 13.94 increasing 0.00 0.04 Increasing
1987.xlsx 10 0 -5.58 -3.41 25.71 13.46 26.54 13.94 increasing 0.00 0.04 Increasing
1987.xlsx 11 0 -3.99 -4.76 25.71 13.46 26.54 13.94 increasing 0.00 0.04 Increasing
1987.xlsx 12 0 13.39 8.74 25.71 13.46 26.54 13.94 increasing 0.00 0.04 Increasing
1987.xlsx 13 0 4.90 5.38 25.71 13.46 26.54 13.94 increasing 0.00 0.04 Increasing
1987.xlsx 14 0 4.73 4.70 25.71 13.46 26.54 13.94 increasing 0.00 0.04 Increasing
1987.xlsx 15 0 29.75 26.74 25.71 13.46 26.54 13.94 increasing 0.00 0.04 Increasing
1987.xlsx 16 0 10.48 15.86 25.71 13.46 26.54 13.94 increasing 0.00 0.04 Increasing
1987.xlsx 17 0 1.97 6.65 25.71 13.46 26.54 13.94 increasing 0.00 0.04 Increasing
1987.xlsx 18 0 9.77 8.06 25.71 13.46 26.54 13.94 increasing 0.00 0.04 Increasing
1987.xlsx 19 0 7.77 6.59 25.71 13.46 26.54 13.94 increasing 0.00 0.04 Increasing
1987.xlsx 20 0 4.12 2.77 25.71 13.46 26.54 13.94 increasing 0.00 0.04 Increasing
1987.xlsx 21 0 -0.13 -1.19 25.71 13.46 26.54 13.94 increasing 0.00 0.04 Increasing
1987.xlsx 22 0 1.70 -0.95 25.71 13.46 26.54 13.94 increasing 0.00 0.04 Increasing
1987.xlsx 23 0 0.47 -1.19 25.71 13.46 26.54 13.94 increasing 0.00 0.04 Increasing
1987.xlsx 24 0 6.76 2.77 25.71 13.46 26.54 13.94 increasing 0.00 0.04 Increasing
1987.xlsx 25 0 9.71 6.46 25.71 13.46 26.54 13.94 increasing 0.00 0.04 Increasing
1987.xlsx 26 0 8.40 5.68 25.71 13.46 26.54 13.94 increasing 0.00 0.04 Increasing
1987.xlsx 27 0 5.61 3.57 25.71 13.46 26.54 13.94 increasing 0.00 0.04 Increasing
1987.xlsx 28 0 3.96 2.29 25.71 13.46 26.54 13.94 increasing 0.00 0.04 Increasing
1987.xlsx 29 0 4.10 1.93 25.71 13.46 26.54 13.94 increasing 0.00 0.04 Increasing
1987.xlsx 30 0 12.34 7.48 25.71 13.46 26.54 13.94 increasing 0.00 0.04 Increasing
1987.xlsx 31 0 19.67 16.19 25.71 13.46 26.54 13.94 increasing 0.00 0.04 Increasing
1987.xlsx 32 0 6.20 7.71 25.71 13.46 26.54 13.94 increasing 0.00 0.04 Increasing
1987.xlsx 33 0 3.48 4.07 25.71 13.46 26.54 13.94 increasing 0.00 0.04 Increasing
1987.xlsx 34 0 1.60 2.24 25.71 13.46 26.54 13.94 increasing 0.00 0.04 Increasing
1987.xlsx 35 0 4.86 5.09 25.71 13.46 26.54 13.94 increasing 0.00 0.04 Increasing
1987.xlsx 36 0 3.64 6.44 25.71 13.46 26.54 13.94 increasing 0.00 0.04 Increasing
1987.xlsx 37 0 3.62 7.31 25.71 13.46 26.54 13.94 increasing 0.00 0.04 Increasing
1987.xlsx 38 0 3.43 6.36 25.71 13.46 26.54 13.94 increasing 0.00 0.04 Increasing
1987.xlsx 39 0 7.48 7.03 25.71 13.46 26.54 13.94 increasing 0.00 0.04 Increasing
1987.xlsx 40 0 9.08 7.59 25.71 13.46 26.54 13.94 increasing 0.00 0.04 Increasing
1987.xlsx 41 37.60 18.22 14.46 25.71 13.46 26.54 13.94 increasing 0.00 0.04 Increasing
1987.xlsx 42 0 42.12 36.58 25.71 13.46 26.54 13.94 increasing 0.00 0.04 Increasing
1987.xlsx 43 0 63.28 59.94 25.71 13.46 26.54 13.94 increasing 0.00 0.04 Increasing
1987.xlsx 44 0 29.42 41.01 25.71 13.46 26.54 13.94 increasing 0.00 0.04 Increasing
1987.xlsx 45 0 8.92 22.29 25.71 13.46 26.54 13.94 increasing 0.00 0.04 Increasing
1987.xlsx 46 0 13.18 19.55 25.71 13.46 26.54 13.94 increasing 0.00 0.04 Increasing
1987.xlsx 47 0 14.22 20.28 25.71 13.46 26.54 13.94 increasing 0.00 0.04 Increasing
1987.xlsx 48 0 5.30 11.13 25.71 13.46 26.54 13.94 increasing 0.00 0.04 Increasing
1987.xlsx 49 0 4.68 7.73 25.71 13.46 26.54 13.94 increasing 0.00 0.04 Increasing
1987.xlsx 50 0 3.31 5.60 25.71 13.46 26.54 13.94 increasing 0.00 0.04 Increasing
1987.xlsx 51 0 1.19 3.43 25.71 13.46 26.54 13.94 increasing 0.00 0.04 Increasing
1987.xlsx 52 0 1.92 4.49 25.71 13.46 26.54 13.94 increasing 0.00 0.04 Increasing
1987.xlsx 53 0 4.73 7.17 25.71 13.46 26.54 13.94 increasing 0.00 0.04 Increasing
1987.xlsx 54 0 6.55 8.98 25.71 13.46 26.54 13.94 increasing 0.00 0.04 Increasing
1987.xlsx 55 0 7.43 9.17 25.71 13.46 26.54 13.94 increasing 0.00 0.04 Increasing
1987.xlsx 56 0 5.93 6.48 25.71 13.46 26.54 13.94 increasing 0.00 0.04 Increasing
1987.xlsx 57 0 5.31 4.40 25.71 13.46 26.54 13.94 increasing 0.00 0.04 Increasing
1987.xlsx 58 0 4.07 2.19 25.71 13.46 26.54 13.94 increasing 0.00 0.04 Increasing
1987.xlsx 59 0 3.02 0.76 25.71 13.46 26.54 13.94 increasing 0.00 0.04 Increasing
1987.xlsx 60 0 29.25 22.89 25.71 13.46 26.54 13.94 increasing 0.00 0.04 Increasing
1987.xlsx 61 0 14.21 15.24 25.71 13.46 26.54 13.94 increasing 0.00 0.04 Increasing
1987.xlsx 62 0 7.97 7.43 25.71 13.46 26.54 13.94 increasing 0.00 0.04 Increasing
1987.xlsx 63 0 5.33 3.13 25.71 13.46 26.54 13.94 increasing 0.00 0.04 Increasing
1987.xlsx 64 0 3.24 0.57 25.71 13.46 26.54 13.94 increasing 0.00 0.04 Increasing
1987.xlsx 65 0 5.55 0.95 25.71 13.46 26.54 13.94 increasing 0.00 0.04 Increasing
1987.xlsx 66 0 6.83 0.87 25.71 13.46 26.54 13.94 increasing 0.00 0.04 Increasing
1987.xlsx 67 0 5.00 -1.20 25.71 13.46 26.54 13.94 increasing 0.00 0.04 Increasing
1988.xlsx 1 0 6.05 6.84 28.59 9.99 28.93 12.45 increasing 0.00 0.03 Increasing
1988.xlsx 2 0 7.32 7.92 28.59 9.99 28.93 12.45 increasing 0.00 0.03 Increasing
1988.xlsx 3 0 6.65 8.53 28.59 9.99 28.93 12.45 increasing 0.00 0.03 Increasing
1988.xlsx 4 0 0.80 5.07 28.59 9.99 28.93 12.45 increasing 0.00 0.03 Increasing
1988.xlsx 5 0 -0.57 3.63 28.59 9.99 28.93 12.45 increasing 0.00 0.03 Increasing
1988.xlsx 6 0 1.02 3.65 28.59 9.99 28.93 12.45 increasing 0.00 0.03 Increasing
1988.xlsx 7 0 2.29 4.55 28.59 9.99 28.93 12.45 increasing 0.00 0.03 Increasing
1988.xlsx 8 0 4.66 6.14 28.59 9.99 28.93 12.45 increasing 0.00 0.03 Increasing
1988.xlsx 9 0 5.50 7.43 28.59 9.99 28.93 12.45 increasing 0.00 0.03 Increasing
1988.xlsx 10 0 7.66 9.91 28.59 9.99 28.93 12.45 increasing 0.00 0.03 Increasing
1988.xlsx 11 0 26.17 27.69 28.59 9.99 28.93 12.45 increasing 0.00 0.03 Increasing
1988.xlsx 12 0 13.73 21.19 28.59 9.99 28.93 12.45 increasing 0.00 0.03 Increasing
1988.xlsx 13 0 19.15 23.47 28.59 9.99 28.93 12.45 increasing 0.00 0.03 Increasing
1988.xlsx 14 0 70.82 68.95 28.59 9.99 28.93 12.45 increasing 0.00 0.03 Increasing
1988.xlsx 15 0 43.74 56.21 28.59 9.99 28.93 12.45 increasing 0.00 0.03 Increasing
1988.xlsx 16 0 26.28 40.09 28.59 9.99 28.93 12.45 increasing 0.00 0.03 Increasing
1988.xlsx 17 0 11.20 24.41 28.59 9.99 28.93 12.45 increasing 0.00 0.03 Increasing
1988.xlsx 18 0 4.15 13.98 28.59 9.99 28.93 12.45 increasing 0.00 0.03 Increasing
1988.xlsx 19 0 11.35 16.17 28.59 9.99 28.93 12.45 increasing 0.00 0.03 Increasing
1988.xlsx 20 0 7.75 13.48 28.59 9.99 28.93 12.45 increasing 0.00 0.03 Increasing
1988.xlsx 21 0 2.79 9.42 28.59 9.99 28.93 12.45 increasing 0.00 0.03 Increasing
1988.xlsx 22 0 14.24 18.89 28.59 9.99 28.93 12.45 increasing 0.00 0.03 Increasing
1988.xlsx 23 0 5.15 13.71 28.59 9.99 28.93 12.45 increasing 0.00 0.03 Increasing
1988.xlsx 24 0 5.33 12.83 28.59 9.99 28.93 12.45 increasing 0.00 0.03 Increasing
1988.xlsx 25 0 2.69 10.33 28.59 9.99 28.93 12.45 increasing 0.00 0.03 Increasing
1988.xlsx 26 0 4.51 10.09 28.59 9.99 28.93 12.45 increasing 0.00 0.03 Increasing
1988.xlsx 27 0 2.90 8.63 28.59 9.99 28.93 12.45 increasing 0.00 0.03 Increasing
1988.xlsx 28 0 3.73 8.49 28.59 9.99 28.93 12.45 increasing 0.00 0.03 Increasing
1988.xlsx 29 0 1.79 7.20 28.59 9.99 28.93 12.45 increasing 0.00 0.03 Increasing
1988.xlsx 30 0 4.83 8.56 28.59 9.99 28.93 12.45 increasing 0.00 0.03 Increasing
1988.xlsx 31 0 4.23 7.66 28.59 9.99 28.93 12.45 increasing 0.00 0.03 Increasing
1988.xlsx 32 0 6.30 7.78 28.59 9.99 28.93 12.45 increasing 0.00 0.03 Increasing
1988.xlsx 33 0 4.56 5.52 28.59 9.99 28.93 12.45 increasing 0.00 0.03 Increasing
1988.xlsx 34 0 6.45 5.28 28.59 9.99 28.93 12.45 increasing 0.00 0.03 Increasing
1988.xlsx 35 0 5.57 3.04 28.59 9.99 28.93 12.45 increasing 0.00 0.03 Increasing
1988.xlsx 36 0 1.45 -1.79 28.59 9.99 28.93 12.45 increasing 0.00 0.03 Increasing
1988.xlsx 37 0 -0.59 -5.75 28.59 9.99 28.93 12.45 increasing 0.00 0.03 Increasing
1988.xlsx 38 0 -1.47 -8.63 28.59 9.99 28.93 12.45 increasing 0.00 0.03 Increasing
1988.xlsx 39 0 1.04 -7.66 28.59 9.99 28.93 12.45 increasing 0.00 0.03 Increasing
1988.xlsx 40 0 5.52 -3.96 28.59 9.99 28.93 12.45 increasing 0.00 0.03 Increasing
1988.xlsx 41 0 25.40 15.40 28.59 9.99 28.93 12.45 increasing 0.00 0.03 Increasing
1988.xlsx 42 0 21.63 16.38 28.59 9.99 28.93 12.45 increasing 0.00 0.03 Increasing
1988.xlsx 43 0 9.62 8.41 28.59 9.99 28.93 12.45 increasing 0.00 0.03 Increasing
1988.xlsx 44 0 7.60 8.65 28.59 9.99 28.93 12.45 increasing 0.00 0.03 Increasing
1988.xlsx 45 0 1.57 4.10 28.59 9.99 28.93 12.45 increasing 0.00 0.03 Increasing
1988.xlsx 46 0 0.32 1.61 28.59 9.99 28.93 12.45 increasing 0.00 0.03 Increasing
1988.xlsx 47 0 3.51 3.36 28.59 9.99 28.93 12.45 increasing 0.00 0.03 Increasing
1988.xlsx 48 0 4.82 5.37 28.59 9.99 28.93 12.45 increasing 0.00 0.03 Increasing
1988.xlsx 49 0 2.50 4.61 28.59 9.99 28.93 12.45 increasing 0.00 0.03 Increasing
1988.xlsx 50 0 3.32 4.12 28.59 9.99 28.93 12.45 increasing 0.00 0.03 Increasing
1988.xlsx 51 0 4.00 4.23 28.59 9.99 28.93 12.45 increasing 0.00 0.03 Increasing
1988.xlsx 52 0 6.05 5.89 28.59 9.99 28.93 12.45 increasing 0.00 0.03 Increasing
1988.xlsx 53 0 6.41 7.09 28.59 9.99 28.93 12.45 increasing 0.00 0.03 Increasing
1988.xlsx 54 0 7.71 9.04 28.59 9.99 28.93 12.45 increasing 0.00 0.03 Increasing
1988.xlsx 55 0 3.36 6.61 28.59 9.99 28.93 12.45 increasing 0.00 0.03 Increasing
1988.xlsx 56 0 4.42 7.32 28.59 9.99 28.93 12.45 increasing 0.00 0.03 Increasing
1988.xlsx 57 0 8.79 10.55 28.59 9.99 28.93 12.45 increasing 0.00 0.03 Increasing
1988.xlsx 58 0 6.43 8.18 28.59 9.99 28.93 12.45 increasing 0.00 0.03 Increasing
1988.xlsx 59 0 6.05 7.62 28.59 9.99 28.93 12.45 increasing 0.00 0.03 Increasing
1988.xlsx 60 0 3.01 5.82 28.59 9.99 28.93 12.45 increasing 0.00 0.03 Increasing
1988.xlsx 61 0 2.85 5.81 28.59 9.99 28.93 12.45 increasing 0.00 0.03 Increasing
1988.xlsx 62 0 4.30 6.79 28.59 9.99 28.93 12.45 increasing 0.00 0.03 Increasing
1988.xlsx 63 0 4.45 7.50 28.59 9.99 28.93 12.45 increasing 0.00 0.03 Increasing
1988.xlsx 64 0 4.67 7.58 28.59 9.99 28.93 12.45 increasing 0.00 0.03 Increasing
1988.xlsx 65 0 4.31 7.11 28.59 9.99 28.93 12.45 increasing 0.00 0.03 Increasing
1988.xlsx 66 0 2.81 4.71 28.59 9.99 28.93 12.45 increasing 0.00 0.03 Increasing
1988.xlsx 67 0 4.46 4.62 28.59 9.99 28.93 12.45 increasing 0.00 0.03 Increasing
1988.xlsx 68 0 4.26 4.41 28.59 9.99 28.93 12.45 increasing 0.00 0.03 Increasing
1989.xlsx 1 0 5.17 4.46 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1989.xlsx 2 0 4.21 3.66 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1989.xlsx 3 0 8.16 6.98 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1989.xlsx 4 0 7.32 7.83 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1989.xlsx 5 0 8.32 9.55 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1989.xlsx 6 0 15.26 15.71 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1989.xlsx 7 0 11.65 13.77 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1989.xlsx 8 0 21.42 21.73 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1989.xlsx 9 0 15.25 18.98 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1989.xlsx 10 0 21.41 25.83 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1989.xlsx 11 0 4.59 13.42 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1989.xlsx 12 0 4.96 10.46 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1989.xlsx 13 0 0.97 6.68 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1989.xlsx 14 0 0.12 5.26 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1989.xlsx 15 0 0.82 5.46 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1989.xlsx 16 0 7.78 10.50 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1989.xlsx 17 0 18.18 20.27 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1989.xlsx 18 0 28.52 30.08 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1989.xlsx 19 0 60.81 60.32 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1989.xlsx 20 0 31.07 43.36 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1989.xlsx 21 0 17.82 29.83 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1989.xlsx 22 0 20.84 29.32 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1989.xlsx 23 0 8.96 18.42 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1989.xlsx 24 0 12.69 17.06 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1989.xlsx 25 0 35.48 36.56 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1989.xlsx 26 0 66.65 67.25 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1989.xlsx 27 0 16.51 32.93 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1989.xlsx 28 0 4.41 15.33 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1989.xlsx 29 0 2.89 9.09 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1989.xlsx 30 0 2.52 5.84 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1989.xlsx 31 0 5.00 5.47 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1989.xlsx 32 0 7.61 6.60 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1989.xlsx 33 0 7.76 6.77 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1989.xlsx 34 0 12.03 10.45 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1989.xlsx 35 0 11.00 10.31 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1989.xlsx 36 0 12.38 12.00 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1989.xlsx 37 0 16.42 15.07 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1989.xlsx 38 0 20.65 20.24 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1989.xlsx 39 0 16.18 16.71 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1989.xlsx 40 1.40 14.16 14.76 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1989.xlsx 41 0.60 13.72 12.95 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1989.xlsx 42 0 3.75 3.67 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1989.xlsx 43 0 1.32 -1.00 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1989.xlsx 44 0 -0.33 -3.68 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1989.xlsx 45 0 0.20 -3.99 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1989.xlsx 46 0 0.06 -4.93 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1989.xlsx 47 0 3.98 -3.40 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1989.xlsx 48 0 11.38 2.44 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1989.xlsx 49 0 9.44 3.58 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1989.xlsx 50 0 4.70 0.04 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1989.xlsx 51 0 3.74 -1.67 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1989.xlsx 52 0 4.23 -1.28 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1989.xlsx 53 0 3.99 -1.83 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1989.xlsx 54 0 3.41 -1.18 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1989.xlsx 55 0 5.20 1.94 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1989.xlsx 56 0 14.72 11.18 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1989.xlsx 57 0 12.22 9.79 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1989.xlsx 58 0 5.87 4.75 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1989.xlsx 59 0 3.39 2.01 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1989.xlsx 60 0 3.41 1.65 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1989.xlsx 61 0 3.65 1.23 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1989.xlsx 62 0 1.06 -0.64 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1989.xlsx 63 0 1.17 -0.32 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1989.xlsx 64 0 1.20 0.10 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1989.xlsx 65 0 2.54 1.09 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1989.xlsx 66 0 2.91 2.45 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1989.xlsx 67 0 3.42 3.64 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1990.xlsx 1 0 5.17 4.46 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1990.xlsx 2 0 4.21 3.66 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1990.xlsx 3 0 8.16 6.98 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1990.xlsx 4 0 7.32 7.83 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1990.xlsx 5 0 8.32 9.55 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1990.xlsx 6 0 15.26 15.71 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1990.xlsx 7 0 11.65 13.77 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1990.xlsx 8 0 21.42 21.73 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1990.xlsx 9 0 15.25 18.98 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1990.xlsx 10 0 21.41 25.83 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1990.xlsx 11 0 4.59 13.42 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1990.xlsx 12 0 4.96 10.46 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1990.xlsx 13 0 0.97 6.68 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1990.xlsx 14 0 0.12 5.26 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1990.xlsx 15 0 0.82 5.46 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1990.xlsx 16 0 7.78 10.50 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1990.xlsx 17 0 18.18 20.27 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1990.xlsx 18 0 28.52 30.08 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1990.xlsx 19 0 60.81 60.32 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1990.xlsx 20 0 31.07 43.36 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1990.xlsx 21 0 17.82 29.83 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1990.xlsx 22 0 20.84 29.32 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1990.xlsx 23 0 8.96 18.42 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1990.xlsx 24 0 12.69 17.06 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1990.xlsx 25 0 35.48 36.56 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1990.xlsx 26 0 66.65 67.25 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1990.xlsx 27 0 16.51 32.93 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1990.xlsx 28 0 4.41 15.33 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1990.xlsx 29 0 2.89 9.09 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1990.xlsx 30 0 2.52 5.84 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1990.xlsx 31 0 5.00 5.47 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1990.xlsx 32 0 7.61 6.60 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1990.xlsx 33 0 7.76 6.77 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1990.xlsx 34 0 12.03 10.45 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1990.xlsx 35 0 11.00 10.31 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1990.xlsx 36 0 12.38 12.00 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1990.xlsx 37 0 16.42 15.07 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1990.xlsx 38 0 20.65 20.24 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1990.xlsx 39 0 16.18 16.71 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1990.xlsx 40 1.40 14.16 14.76 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1990.xlsx 41 0.60 13.72 12.95 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1990.xlsx 42 0 3.75 3.67 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1990.xlsx 43 0 1.32 -1.00 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1990.xlsx 44 0 -0.33 -3.68 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1990.xlsx 45 0 0.20 -3.99 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1990.xlsx 46 0 0.06 -4.93 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1990.xlsx 47 0 3.98 -3.40 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1990.xlsx 48 0 11.38 2.44 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1990.xlsx 49 0 9.44 3.58 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1990.xlsx 50 0 4.70 0.04 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1990.xlsx 51 0 3.74 -1.67 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1990.xlsx 52 0 4.23 -1.28 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1990.xlsx 53 0 3.99 -1.83 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1990.xlsx 54 0 3.41 -1.18 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1990.xlsx 55 0 5.20 1.94 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1990.xlsx 56 0 14.72 11.18 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1990.xlsx 57 0 12.22 9.79 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1990.xlsx 58 0 5.87 4.75 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1990.xlsx 59 0 3.39 2.01 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1990.xlsx 60 0 3.41 1.65 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1990.xlsx 61 0 3.65 1.23 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1990.xlsx 62 0 1.06 -0.64 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1990.xlsx 63 0 1.17 -0.32 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1990.xlsx 64 0 1.20 0.10 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1990.xlsx 65 0 2.54 1.09 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1990.xlsx 66 0 2.91 2.45 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1990.xlsx 67 0 3.42 3.64 33.23 14.18 33.11 14.87 increasing 0.00 0.04 Increasing
1991.xlsx 1 0 4.04 7.58 26.33 12.21 26.81 12.83 increasing 0.00 0.03 Increasing
1991.xlsx 2 33.20 3.19 4.66 26.33 12.21 26.81 12.83 increasing 0.00 0.03 Increasing
1991.xlsx 3 22.40 10.67 8.22 26.33 12.21 26.81 12.83 increasing 0.00 0.03 Increasing
1991.xlsx 4 0 24.35 20.72 26.33 12.21 26.81 12.83 increasing 0.00 0.03 Increasing
1991.xlsx 5 0 56.93 51.98 26.33 12.21 26.81 12.83 increasing 0.00 0.03 Increasing
1991.xlsx 6 0 13.10 24.86 26.33 12.21 26.81 12.83 increasing 0.00 0.03 Increasing
1991.xlsx 7 0 5.33 12.63 26.33 12.21 26.81 12.83 increasing 0.00 0.03 Increasing
1991.xlsx 8 0 1.42 6.08 26.33 12.21 26.81 12.83 increasing 0.00 0.03 Increasing
1991.xlsx 9 0 1.99 4.26 26.33 12.21 26.81 12.83 increasing 0.00 0.03 Increasing
1991.xlsx 10 0 4.42 5.61 26.33 12.21 26.81 12.83 increasing 0.00 0.03 Increasing
1991.xlsx 11 0 4.80 4.39 26.33 12.21 26.81 12.83 increasing 0.00 0.03 Increasing
1991.xlsx 12 0 16.43 15.25 26.33 12.21 26.81 12.83 increasing 0.00 0.03 Increasing
1991.xlsx 13 0 10.04 11.06 26.33 12.21 26.81 12.83 increasing 0.00 0.03 Increasing
1991.xlsx 14 0 11.38 11.13 26.33 12.21 26.81 12.83 increasing 0.00 0.03 Increasing
1991.xlsx 15 0 7.77 9.52 26.33 12.21 26.81 12.83 increasing 0.00 0.03 Increasing
1991.xlsx 16 0 3.30 6.50 26.33 12.21 26.81 12.83 increasing 0.00 0.03 Increasing
1991.xlsx 17 0 5.01 7.82 26.33 12.21 26.81 12.83 increasing 0.00 0.03 Increasing
1991.xlsx 18 0 8.08 11.03 26.33 12.21 26.81 12.83 increasing 0.00 0.03 Increasing
1991.xlsx 19 0 6.95 10.45 26.33 12.21 26.81 12.83 increasing 0.00 0.03 Increasing
1991.xlsx 20 0 20.01 20.87 26.33 12.21 26.81 12.83 increasing 0.00 0.03 Increasing
1991.xlsx 21 0 33.24 34.62 26.33 12.21 26.81 12.83 increasing 0.00 0.03 Increasing
1991.xlsx 22 0 57.38 57.10 26.33 12.21 26.81 12.83 increasing 0.00 0.03 Increasing
1991.xlsx 23 0 26.23 37.08 26.33 12.21 26.81 12.83 increasing 0.00 0.03 Increasing
1991.xlsx 24 0 12.90 21.08 26.33 12.21 26.81 12.83 increasing 0.00 0.03 Increasing
1991.xlsx 25 0 6.53 11.11 26.33 12.21 26.81 12.83 increasing 0.00 0.03 Increasing
1991.xlsx 26 0 5.19 6.14 26.33 12.21 26.81 12.83 increasing 0.00 0.03 Increasing
1991.xlsx 27 0 4.79 2.52 26.33 12.21 26.81 12.83 increasing 0.00 0.03 Increasing
1991.xlsx 28 0 5.50 1.61 26.33 12.21 26.81 12.83 increasing 0.00 0.03 Increasing
1991.xlsx 29 0 4.89 0.52 26.33 12.21 26.81 12.83 increasing 0.00 0.03 Increasing
1991.xlsx 30 0 6.48 3.44 26.33 12.21 26.81 12.83 increasing 0.00 0.03 Increasing
1991.xlsx 31 0 12.98 9.30 26.33 12.21 26.81 12.83 increasing 0.00 0.03 Increasing
1991.xlsx 32 0 10.69 8.23 26.33 12.21 26.81 12.83 increasing 0.00 0.03 Increasing
1991.xlsx 33 0 12.01 10.42 26.33 12.21 26.81 12.83 increasing 0.00 0.03 Increasing
1991.xlsx 34 0 3.72 4.56 26.33 12.21 26.81 12.83 increasing 0.00 0.03 Increasing
1991.xlsx 35 0 0.44 3.57 26.33 12.21 26.81 12.83 increasing 0.00 0.03 Increasing
1991.xlsx 36 0 -0.54 1.74 26.33 12.21 26.81 12.83 increasing 0.00 0.03 Increasing
1991.xlsx 37 0 1.87 3.11 26.33 12.21 26.81 12.83 increasing 0.00 0.03 Increasing
1991.xlsx 38 0 4.73 5.25 26.33 12.21 26.81 12.83 increasing 0.00 0.03 Increasing
1991.xlsx 39 0 7.46 6.63 26.33 12.21 26.81 12.83 increasing 0.00 0.03 Increasing
1991.xlsx 40 0 4.31 4.63 26.33 12.21 26.81 12.83 increasing 0.00 0.03 Increasing
1991.xlsx 41 0 3.77 3.52 26.33 12.21 26.81 12.83 increasing 0.00 0.03 Increasing
1991.xlsx 42 0 3.05 2.53 26.33 12.21 26.81 12.83 increasing 0.00 0.03 Increasing
1991.xlsx 43 0 3.85 1.92 26.33 12.21 26.81 12.83 increasing 0.00 0.03 Increasing
1991.xlsx 44 0 3.39 -0.16 26.33 12.21 26.81 12.83 increasing 0.00 0.03 Increasing
1991.xlsx 45 0 3.39 -1.85 26.33 12.21 26.81 12.83 increasing 0.00 0.03 Increasing
1991.xlsx 46 0 4.30 -2.67 26.33 12.21 26.81 12.83 increasing 0.00 0.03 Increasing
1991.xlsx 47 0 5.57 -2.57 26.33 12.21 26.81 12.83 increasing 0.00 0.03 Increasing
1991.xlsx 48 0 6.66 -1.94 26.33 12.21 26.81 12.83 increasing 0.00 0.03 Increasing
1991.xlsx 49 0 6.81 -1.48 26.33 12.21 26.81 12.83 increasing 0.00 0.03 Increasing
1991.xlsx 50 0 11.90 3.97 26.33 12.21 26.81 12.83 increasing 0.00 0.03 Increasing
1991.xlsx 51 0 10.48 5.09 26.33 12.21 26.81 12.83 increasing 0.00 0.03 Increasing
1991.xlsx 52 0 9.36 8.26 26.33 12.21 26.81 12.83 increasing 0.00 0.03 Increasing
1991.xlsx 53 0 15.34 14.27 26.33 12.21 26.81 12.83 increasing 0.00 0.03 Increasing
1991.xlsx 54 0 14.03 14.76 26.33 12.21 26.81 12.83 increasing 0.00 0.03 Increasing
1991.xlsx 55 0 5.07 7.69 26.33 12.21 26.81 12.83 increasing 0.00 0.03 Increasing
1991.xlsx 56 0 1.08 2.96 26.33 12.21 26.81 12.83 increasing 0.00 0.03 Increasing
1991.xlsx 57 0.50 0.48 0.75 26.33 12.21 26.81 12.83 increasing 0.00 0.03 Increasing
1991.xlsx 58 0 2.36 1.39 26.33 12.21 26.81 12.83 increasing 0.00 0.03 Increasing
1991.xlsx 59 0 5.78 3.48 26.33 12.21 26.81 12.83 increasing 0.00 0.03 Increasing
1991.xlsx 60 0 3.28 2.67 26.33 12.21 26.81 12.83 increasing 0.00 0.03 Increasing
1991.xlsx 61 0 0.00 0.87 26.33 12.21 26.81 12.83 increasing 0.00 0.03 Increasing
1991.xlsx 62 0 -1.99 -0.77 26.33 12.21 26.81 12.83 increasing 0.00 0.03 Increasing
1991.xlsx 63 0 -1.92 -1.20 26.33 12.21 26.81 12.83 increasing 0.00 0.03 Increasing
1991.xlsx 64 0 0.39 -0.49 26.33 12.21 26.81 12.83 increasing 0.00 0.03 Increasing
1991.xlsx 65 0 2.12 0.67 26.33 12.21 26.81 12.83 increasing 0.00 0.03 Increasing
1991.xlsx 66 0 3.72 2.32 26.33 12.21 26.81 12.83 increasing 0.00 0.03 Increasing
1991.xlsx 67 0 3.87 2.93 26.33 12.21 26.81 12.83 increasing 0.00 0.03 Increasing
1992.xlsx 1 0 -0.41 -0.52 28.18 15.96 28.03 16.10 increasing 0.00 0.04 Increasing
1992.xlsx 2 0 -1.09 -1.32 28.18 15.96 28.03 16.10 increasing 0.00 0.04 Increasing
1992.xlsx 3 0 -0.52 -1.19 28.18 15.96 28.03 16.10 increasing 0.00 0.04 Increasing
1992.xlsx 4 0 3.43 0.93 28.18 15.96 28.03 16.10 increasing 0.00 0.04 Increasing
1992.xlsx 5 0 3.55 1.79 28.18 15.96 28.03 16.10 increasing 0.00 0.04 Increasing
1992.xlsx 6 0 7.92 5.02 28.18 15.96 28.03 16.10 increasing 0.00 0.04 Increasing
1992.xlsx 7 0 9.14 7.05 28.18 15.96 28.03 16.10 increasing 0.00 0.04 Increasing
1992.xlsx 8 0 7.95 7.26 28.18 15.96 28.03 16.10 increasing 0.00 0.04 Increasing
1992.xlsx 9 0 9.68 9.45 28.18 15.96 28.03 16.10 increasing 0.00 0.04 Increasing
1992.xlsx 10 0 12.12 12.43 28.18 15.96 28.03 16.10 increasing 0.00 0.04 Increasing
1992.xlsx 11 0 11.64 12.03 28.18 15.96 28.03 16.10 increasing 0.00 0.04 Increasing
1992.xlsx 12 0 8.03 9.17 28.18 15.96 28.03 16.10 increasing 0.00 0.04 Increasing
1992.xlsx 13 0 11.00 11.74 28.18 15.96 28.03 16.10 increasing 0.00 0.04 Increasing
1992.xlsx 14 0 10.75 11.28 28.18 15.96 28.03 16.10 increasing 0.00 0.04 Increasing
1992.xlsx 15 0 3.32 5.41 28.18 15.96 28.03 16.10 increasing 0.00 0.04 Increasing
1992.xlsx 16 0 1.21 3.63 28.18 15.96 28.03 16.10 increasing 0.00 0.04 Increasing
1992.xlsx 17 0 5.94 8.51 28.18 15.96 28.03 16.10 increasing 0.00 0.04 Increasing
1992.xlsx 18 0 2.77 7.04 28.18 15.96 28.03 16.10 increasing 0.00 0.04 Increasing
1992.xlsx 19 0 14.14 16.70 28.18 15.96 28.03 16.10 increasing 0.00 0.04 Increasing
1992.xlsx 20 0 8.35 13.86 28.18 15.96 28.03 16.10 increasing 0.00 0.04 Increasing
1992.xlsx 21 0 25.83 28.53 28.18 15.96 28.03 16.10 increasing 0.00 0.04 Increasing
1992.xlsx 22 0 37.91 41.27 28.18 15.96 28.03 16.10 increasing 0.00 0.04 Increasing
1992.xlsx 23 0 13.28 24.12 28.18 15.96 28.03 16.10 increasing 0.00 0.04 Increasing
1992.xlsx 24 0 4.99 13.72 28.18 15.96 28.03 16.10 increasing 0.00 0.04 Increasing
1992.xlsx 25 0 10.21 14.01 28.18 15.96 28.03 16.10 increasing 0.00 0.04 Increasing
1992.xlsx 26 0 4.87 8.63 28.18 15.96 28.03 16.10 increasing 0.00 0.04 Increasing
1992.xlsx 27 0 1.96 4.43 28.18 15.96 28.03 16.10 increasing 0.00 0.04 Increasing
1992.xlsx 28 0 1.69 3.38 28.18 15.96 28.03 16.10 increasing 0.00 0.04 Increasing
1992.xlsx 29 0 3.84 4.83 28.18 15.96 28.03 16.10 increasing 0.00 0.04 Increasing
1992.xlsx 30 0 5.06 5.82 28.18 15.96 28.03 16.10 increasing 0.00 0.04 Increasing
1992.xlsx 31 0 6.39 7.10 28.18 15.96 28.03 16.10 increasing 0.00 0.04 Increasing
1992.xlsx 32 0 6.67 7.03 28.18 15.96 28.03 16.10 increasing 0.00 0.04 Increasing
1992.xlsx 33 0 6.12 6.81 28.18 15.96 28.03 16.10 increasing 0.00 0.04 Increasing
1992.xlsx 34 0 6.04 6.35 28.18 15.96 28.03 16.10 increasing 0.00 0.04 Increasing
1992.xlsx 35 0 7.06 7.11 28.18 15.96 28.03 16.10 increasing 0.00 0.04 Increasing
1992.xlsx 36 0 6.55 6.76 28.18 15.96 28.03 16.10 increasing 0.00 0.04 Increasing
1992.xlsx 37 0 23.67 21.59 28.18 15.96 28.03 16.10 increasing 0.00 0.04 Increasing
1992.xlsx 38 0 16.23 18.27 28.18 15.96 28.03 16.10 increasing 0.00 0.04 Increasing
1992.xlsx 39 0 8.71 11.74 28.18 15.96 28.03 16.10 increasing 0.00 0.04 Increasing
1992.xlsx 40 0 7.22 8.64 28.18 15.96 28.03 16.10 increasing 0.00 0.04 Increasing
1992.xlsx 41 0 26.85 24.42 28.18 15.96 28.03 16.10 increasing 0.00 0.04 Increasing
1992.xlsx 42 0 15.58 17.44 28.18 15.96 28.03 16.10 increasing 0.00 0.04 Increasing
1992.xlsx 43 0 37.85 35.74 28.18 15.96 28.03 16.10 increasing 0.00 0.04 Increasing
1992.xlsx 44 0 49.29 47.37 28.18 15.96 28.03 16.10 increasing 0.00 0.04 Increasing
1992.xlsx 45 0 46.06 47.41 28.18 15.96 28.03 16.10 increasing 0.00 0.04 Increasing
1992.xlsx 46 0 14.55 21.12 28.18 15.96 28.03 16.10 increasing 0.00 0.04 Increasing
1992.xlsx 47 0 7.09 8.86 28.18 15.96 28.03 16.10 increasing 0.00 0.04 Increasing
1992.xlsx 48 0 6.89 5.22 28.18 15.96 28.03 16.10 increasing 0.00 0.04 Increasing
1992.xlsx 49 0 3.53 1.68 28.18 15.96 28.03 16.10 increasing 0.00 0.04 Increasing
1992.xlsx 50 0 5.48 2.83 28.18 15.96 28.03 16.10 increasing 0.00 0.04 Increasing
1992.xlsx 51 0 5.56 4.49 28.18 15.96 28.03 16.10 increasing 0.00 0.04 Increasing
1992.xlsx 52 0 6.48 6.69 28.18 15.96 28.03 16.10 increasing 0.00 0.04 Increasing
1992.xlsx 53 0 4.09 5.93 28.18 15.96 28.03 16.10 increasing 0.00 0.04 Increasing
1992.xlsx 54 0 4.09 6.04 28.18 15.96 28.03 16.10 increasing 0.00 0.04 Increasing
1992.xlsx 55 0 6.95 8.74 28.18 15.96 28.03 16.10 increasing 0.00 0.04 Increasing
1992.xlsx 56 0 36.85 36.02 28.18 15.96 28.03 16.10 increasing 0.00 0.04 Increasing
1992.xlsx 57 0 12.39 20.49 28.18 15.96 28.03 16.10 increasing 0.00 0.04 Increasing
1992.xlsx 58 0 9.11 14.18 28.18 15.96 28.03 16.10 increasing 0.00 0.04 Increasing
1992.xlsx 59 0 3.69 7.59 28.18 15.96 28.03 16.10 increasing 0.00 0.04 Increasing
1992.xlsx 60 0 3.15 3.80 28.18 15.96 28.03 16.10 increasing 0.00 0.04 Increasing
1992.xlsx 61 0 3.74 1.08 28.18 15.96 28.03 16.10 increasing 0.00 0.04 Increasing
1992.xlsx 62 0 3.46 -0.71 28.18 15.96 28.03 16.10 increasing 0.00 0.04 Increasing
1992.xlsx 63 0 3.16 -2.59 28.18 15.96 28.03 16.10 increasing 0.00 0.04 Increasing
1992.xlsx 64 0 3.98 -3.91 28.18 15.96 28.03 16.10 increasing 0.00 0.04 Increasing
1992.xlsx 65 0 4.46 -4.76 28.18 15.96 28.03 16.10 increasing 0.00 0.04 Increasing
1992.xlsx 66 0 4.10 -5.81 28.18 15.96 28.03 16.10 increasing 0.00 0.04 Increasing
1992.xlsx 67 0 10.09 -2.12 28.18 15.96 28.03 16.10 increasing 0.00 0.04 Increasing
1992.xlsx 68 0 5.81 -3.58 28.18 15.96 28.03 16.10 increasing 0.00 0.04 Increasing
1993.xlsx 1 0 1.54 2.81 34.03 17.95 34.89 18.25 increasing 0 0.06 Increasing
1993.xlsx 2 0 3.94 4.50 34.03 17.95 34.89 18.25 increasing 0 0.06 Increasing
1993.xlsx 3 0 4.08 5.69 34.03 17.95 34.89 18.25 increasing 0 0.06 Increasing
1993.xlsx 4 0.60 18.01 19.20 34.03 17.95 34.89 18.25 increasing 0 0.06 Increasing
1993.xlsx 5 0 17.65 18.31 34.03 17.95 34.89 18.25 increasing 0 0.06 Increasing
1993.xlsx 6 0.40 27.09 27.32 34.03 17.95 34.89 18.25 increasing 0 0.06 Increasing
1993.xlsx 7 0 26.85 28.00 34.03 17.95 34.89 18.25 increasing 0 0.06 Increasing
1993.xlsx 8 0 17.51 19.94 34.03 17.95 34.89 18.25 increasing 0 0.06 Increasing
1993.xlsx 9 0 18.97 20.82 34.03 17.95 34.89 18.25 increasing 0 0.06 Increasing
1993.xlsx 10 0 8.64 12.09 34.03 17.95 34.89 18.25 increasing 0 0.06 Increasing
1993.xlsx 11 0 10.09 11.91 34.03 17.95 34.89 18.25 increasing 0 0.06 Increasing
1993.xlsx 12 0 8.37 10.98 34.03 17.95 34.89 18.25 increasing 0 0.06 Increasing
1993.xlsx 13 16 6.67 9.03 34.03 17.95 34.89 18.25 increasing 0 0.06 Increasing
1993.xlsx 14 0 7.16 8.97 34.03 17.95 34.89 18.25 increasing 0 0.06 Increasing
1993.xlsx 15 0 23.15 24.01 34.03 17.95 34.89 18.25 increasing 0 0.06 Increasing
1993.xlsx 16 0 30.30 31.66 34.03 17.95 34.89 18.25 increasing 0 0.06 Increasing
1993.xlsx 17 0 30.46 33.11 34.03 17.95 34.89 18.25 increasing 0 0.06 Increasing
1993.xlsx 18 0 17.52 23.41 34.03 17.95 34.89 18.25 increasing 0 0.06 Increasing
1993.xlsx 19 0 7.01 12.02 34.03 17.95 34.89 18.25 increasing 0 0.06 Increasing
1993.xlsx 20 0 6.46 8.98 34.03 17.95 34.89 18.25 increasing 0 0.06 Increasing
1993.xlsx 21 0 4.40 5.57 34.03 17.95 34.89 18.25 increasing 0 0.06 Increasing
1993.xlsx 22 0 2.95 3.95 34.03 17.95 34.89 18.25 increasing 0 0.06 Increasing
1993.xlsx 23 0 15.62 13.00 34.03 17.95 34.89 18.25 increasing 0 0.06 Increasing
1993.xlsx 24 0 6.64 7.31 34.03 17.95 34.89 18.25 increasing 0 0.06 Increasing
1993.xlsx 25 0 2.14 3.51 34.03 17.95 34.89 18.25 increasing 0 0.06 Increasing
1993.xlsx 26 0 2.90 4.00 34.03 17.95 34.89 18.25 increasing 0 0.06 Increasing
1993.xlsx 27 0 3.45 4.06 34.03 17.95 34.89 18.25 increasing 0 0.06 Increasing
1993.xlsx 28 0 6.64 5.17 34.03 17.95 34.89 18.25 increasing 0 0.06 Increasing
1993.xlsx 29 0 7.65 4.95 34.03 17.95 34.89 18.25 increasing 0 0.06 Increasing
1993.xlsx 30 0 6.87 3.64 34.03 17.95 34.89 18.25 increasing 0 0.06 Increasing
1993.xlsx 31 0 32.13 23.69 34.03 17.95 34.89 18.25 increasing 0 0.06 Increasing
1993.xlsx 32 0 30.43 25.73 34.03 17.95 34.89 18.25 increasing 0 0.06 Increasing
1993.xlsx 33 0 15.45 13.00 34.03 17.95 34.89 18.25 increasing 0 0.06 Increasing
1993.xlsx 34 0 9.21 6.81 34.03 17.95 34.89 18.25 increasing 0 0.06 Increasing
1993.xlsx 35 0 2.48 0.73 34.03 17.95 34.89 18.25 increasing 0 0.06 Increasing
1993.xlsx 36 0 2.78 0.30 34.03 17.95 34.89 18.25 increasing 0 0.06 Increasing
1993.xlsx 37 0 5.14 1.12 34.03 17.95 34.89 18.25 increasing 0 0.06 Increasing
1993.xlsx 38 0 19.66 11.97 34.03 17.95 34.89 18.25 increasing 0 0.06 Increasing
1993.xlsx 39 0 11.34 6.59 34.03 17.95 34.89 18.25 increasing 0 0.06 Increasing
1993.xlsx 40 0 3.93 0.34 34.03 17.95 34.89 18.25 increasing 0 0.06 Increasing
1993.xlsx 41 0 35.11 26.84 34.03 17.95 34.89 18.25 increasing 0 0.06 Increasing
1993.xlsx 42 0 29.67 26.17 34.03 17.95 34.89 18.25 increasing 0 0.06 Increasing
1993.xlsx 43 0 8.71 10.36 34.03 17.95 34.89 18.25 increasing 0 0.06 Increasing
1993.xlsx 44 0 4.21 2.88 34.03 17.95 34.89 18.25 increasing 0 0.06 Increasing
1993.xlsx 45 0 1.22 0.96 34.03 17.95 34.89 18.25 increasing 0 0.06 Increasing
1993.xlsx 46 0 0.78 1.13 34.03 17.95 34.89 18.25 increasing 0 0.06 Increasing
1993.xlsx 47 0 1.39 1.19 34.03 17.95 34.89 18.25 increasing 0 0.06 Increasing
1993.xlsx 48 0 4.37 2.79 34.03 17.95 34.89 18.25 increasing 0 0.06 Increasing
1993.xlsx 49 0 3.67 2.24 34.03 17.95 34.89 18.25 increasing 0 0.06 Increasing
1993.xlsx 50 0 3.73 2.15 34.03 17.95 34.89 18.25 increasing 0 0.06 Increasing
1993.xlsx 51 0 4.19 2.50 34.03 17.95 34.89 18.25 increasing 0 0.06 Increasing
1993.xlsx 52 0 4.46 2.81 34.03 17.95 34.89 18.25 increasing 0 0.06 Increasing
1993.xlsx 53 0 6.49 3.41 34.03 17.95 34.89 18.25 increasing 0 0.06 Increasing
1993.xlsx 54 0 13.05 8.50 34.03 17.95 34.89 18.25 increasing 0 0.06 Increasing
1993.xlsx 55 0 18.57 12.18 34.03 17.95 34.89 18.25 increasing 0 0.06 Increasing
1993.xlsx 56 0 6.77 3.73 34.03 17.95 34.89 18.25 increasing 0 0.06 Increasing
1993.xlsx 57 0 17.02 10.45 34.03 17.95 34.89 18.25 increasing 0 0.06 Increasing
1993.xlsx 58 0 16.47 9.99 34.03 17.95 34.89 18.25 increasing 0 0.06 Increasing
1993.xlsx 59 0 63.03 51.65 34.03 17.95 34.89 18.25 increasing 0 0.06 Increasing
1993.xlsx 60 0 28.12 30.61 34.03 17.95 34.89 18.25 increasing 0 0.06 Increasing
1993.xlsx 61 0 10.78 14.15 34.03 17.95 34.89 18.25 increasing 0 0.06 Increasing
1993.xlsx 62 0 0.39 2.27 34.03 17.95 34.89 18.25 increasing 0 0.06 Increasing
1993.xlsx 63 0 -0.76 -2.79 34.03 17.95 34.89 18.25 increasing 0 0.06 Increasing
1993.xlsx 64 0 -1.74 -5.60 34.03 17.95 34.89 18.25 increasing 0 0.06 Increasing
1993.xlsx 65 0 3.64 -3.40 34.03 17.95 34.89 18.25 increasing 0 0.06 Increasing
1993.xlsx 66 0 10.56 1.68 34.03 17.95 34.89 18.25 increasing 0 0.06 Increasing
1993.xlsx 67 0 9.61 0.07 34.03 17.95 34.89 18.25 increasing 0 0.06 Increasing
1994.xlsx 1 0 4.78 11.19 24.20 11.91 24.31 11.90 increasing 0.00 0.03 Increasing
1994.xlsx 2 0 6.25 10.12 24.20 11.91 24.31 11.90 increasing 0.00 0.03 Increasing
1994.xlsx 3 0 14.80 17.47 24.20 11.91 24.31 11.90 increasing 0.00 0.03 Increasing
1994.xlsx 4 0 11.70 15.00 24.20 11.91 24.31 11.90 increasing 0.00 0.03 Increasing
1994.xlsx 5 0 10.11 12.69 24.20 11.91 24.31 11.90 increasing 0.00 0.03 Increasing
1994.xlsx 6 19.10 7.35 10.04 24.20 11.91 24.31 11.90 increasing 0.00 0.03 Increasing
1994.xlsx 7 0 8.37 9.43 24.20 11.91 24.31 11.90 increasing 0.00 0.03 Increasing
1994.xlsx 8 28 2.78 5.35 24.20 11.91 24.31 11.90 increasing 0.00 0.03 Increasing
1994.xlsx 9 22 4.48 5.01 24.20 11.91 24.31 11.90 increasing 0.00 0.03 Increasing
1994.xlsx 10 0 7.48 7.10 24.20 11.91 24.31 11.90 increasing 0.00 0.03 Increasing
1994.xlsx 11 11 13.95 12.91 24.20 11.91 24.31 11.90 increasing 0.00 0.03 Increasing
1994.xlsx 12 0 49.99 46.33 24.20 11.91 24.31 11.90 increasing 0.00 0.03 Increasing
1994.xlsx 13 0 34.16 39.98 24.20 11.91 24.31 11.90 increasing 0.00 0.03 Increasing
1994.xlsx 14 0 10.46 19.21 24.20 11.91 24.31 11.90 increasing 0.00 0.03 Increasing
1994.xlsx 15 0 10.05 14.34 24.20 11.91 24.31 11.90 increasing 0.00 0.03 Increasing
1994.xlsx 16 0 19.86 21.46 24.20 11.91 24.31 11.90 increasing 0.00 0.03 Increasing
1994.xlsx 17 0 27.16 26.84 24.20 11.91 24.31 11.90 increasing 0.00 0.03 Increasing
1994.xlsx 18 0 24.50 23.77 24.20 11.91 24.31 11.90 increasing 0.00 0.03 Increasing
1994.xlsx 19 0 11.85 12.62 24.20 11.91 24.31 11.90 increasing 0.00 0.03 Increasing
1994.xlsx 20 0 5.16 5.31 24.20 11.91 24.31 11.90 increasing 0.00 0.03 Increasing
1994.xlsx 21 0 6.66 4.88 24.20 11.91 24.31 11.90 increasing 0.00 0.03 Increasing
1994.xlsx 22 0 5.60 2.84 24.20 11.91 24.31 11.90 increasing 0.00 0.03 Increasing
1994.xlsx 23 0 10.43 7.65 24.20 11.91 24.31 11.90 increasing 0.00 0.03 Increasing
1994.xlsx 24 0 8.63 6.77 24.20 11.91 24.31 11.90 increasing 0.00 0.03 Increasing
1994.xlsx 25 0 7.03 5.83 24.20 11.91 24.31 11.90 increasing 0.00 0.03 Increasing
1994.xlsx 26 0 5.64 3.77 24.20 11.91 24.31 11.90 increasing 0.00 0.03 Increasing
1994.xlsx 27 0 7.36 5.08 24.20 11.91 24.31 11.90 increasing 0.00 0.03 Increasing
1994.xlsx 28 0 12.35 10.23 24.20 11.91 24.31 11.90 increasing 0.00 0.03 Increasing
1994.xlsx 29 0 21.40 17.10 24.20 11.91 24.31 11.90 increasing 0.00 0.03 Increasing
1994.xlsx 30 0 13.68 14.95 24.20 11.91 24.31 11.90 increasing 0.00 0.03 Increasing
1994.xlsx 31 0 8.45 9.51 24.20 11.91 24.31 11.90 increasing 0.00 0.03 Increasing
1994.xlsx 32 0 3.68 3.95 24.20 11.91 24.31 11.90 increasing 0.00 0.03 Increasing
1994.xlsx 33 0 8.88 5.63 24.20 11.91 24.31 11.90 increasing 0.00 0.03 Increasing
1994.xlsx 34 0 10.80 6.77 24.20 11.91 24.31 11.90 increasing 0.00 0.03 Increasing
1994.xlsx 35 0 7.43 4.80 24.20 11.91 24.31 11.90 increasing 0.00 0.03 Increasing
1994.xlsx 36 0 4.21 1.65 24.20 11.91 24.31 11.90 increasing 0.00 0.03 Increasing
1994.xlsx 37 0 2.39 -0.79 24.20 11.91 24.31 11.90 increasing 0.00 0.03 Increasing
1994.xlsx 38 0 1.95 -2.57 24.20 11.91 24.31 11.90 increasing 0.00 0.03 Increasing
1994.xlsx 39 0 4.50 -2.08 24.20 11.91 24.31 11.90 increasing 0.00 0.03 Increasing
1994.xlsx 40 0 1.80 -3.86 24.20 11.91 24.31 11.90 increasing 0.00 0.03 Increasing
1994.xlsx 41 0 1.98 -3.77 24.20 11.91 24.31 11.90 increasing 0.00 0.03 Increasing
1994.xlsx 42 0 2.44 -1.39 24.20 11.91 24.31 11.90 increasing 0.00 0.03 Increasing
1994.xlsx 43 0 3.90 -0.19 24.20 11.91 24.31 11.90 increasing 0.00 0.03 Increasing
1994.xlsx 44 0 3.36 -0.91 24.20 11.91 24.31 11.90 increasing 0.00 0.03 Increasing
1994.xlsx 45 0 3.42 -0.90 24.20 11.91 24.31 11.90 increasing 0.00 0.03 Increasing
1994.xlsx 46 0 3.55 0.08 24.20 11.91 24.31 11.90 increasing 0.00 0.03 Increasing
1994.xlsx 47 0 3.69 1.73 24.20 11.91 24.31 11.90 increasing 0.00 0.03 Increasing
1994.xlsx 48 0 3.00 1.97 24.20 11.91 24.31 11.90 increasing 0.00 0.03 Increasing
1994.xlsx 49 0 3.25 1.76 24.20 11.91 24.31 11.90 increasing 0.00 0.03 Increasing
1994.xlsx 50 0 9.95 5.50 24.20 11.91 24.31 11.90 increasing 0.00 0.03 Increasing
1994.xlsx 51 0 2.94 2.19 24.20 11.91 24.31 11.90 increasing 0.00 0.03 Increasing
1994.xlsx 52 0 4.19 2.69 24.20 11.91 24.31 11.90 increasing 0.00 0.03 Increasing
1994.xlsx 53 0 2.52 2.32 24.20 11.91 24.31 11.90 increasing 0.00 0.03 Increasing
1994.xlsx 54 0 5.52 3.69 24.20 11.91 24.31 11.90 increasing 0.00 0.03 Increasing
1994.xlsx 55 0 6.92 4.43 24.20 11.91 24.31 11.90 increasing 0.00 0.03 Increasing
1994.xlsx 56 0 13.19 8.32 24.20 11.91 24.31 11.90 increasing 0.00 0.03 Increasing
1994.xlsx 57 0 18.80 14.28 24.20 11.91 24.31 11.90 increasing 0.00 0.03 Increasing
1994.xlsx 58 0 17.14 16.40 24.20 11.91 24.31 11.90 increasing 0.00 0.03 Increasing
1994.xlsx 59 0 17.76 18.21 24.20 11.91 24.31 11.90 increasing 0.00 0.03 Increasing
1994.xlsx 60 0 8.76 12.13 24.20 11.91 24.31 11.90 increasing 0.00 0.03 Increasing
1994.xlsx 61 0 1.60 5.77 24.20 11.91 24.31 11.90 increasing 0.00 0.03 Increasing
1994.xlsx 62 0 1.32 3.33 24.20 11.91 24.31 11.90 increasing 0.00 0.03 Increasing
1994.xlsx 63 0 2.61 3.64 24.20 11.91 24.31 11.90 increasing 0.00 0.03 Increasing
1994.xlsx 64 0 3.65 5.51 24.20 11.91 24.31 11.90 increasing 0.00 0.03 Increasing
1994.xlsx 65 0 4.57 6.12 24.20 11.91 24.31 11.90 increasing 0.00 0.03 Increasing
1994.xlsx 66 0 3.28 5.44 24.20 11.91 24.31 11.90 increasing 0.00 0.03 Increasing
1994.xlsx 67 0 4.56 6.10 24.20 11.91 24.31 11.90 increasing 0.00 0.03 Increasing
1995.xlsx 1 10.40 10.85 11.18 13.92 7.36 14.29 8.19 increasing 0.00 0.01 Increasing
1995.xlsx 2 2.80 7.62 8.53 13.92 7.36 14.29 8.19 increasing 0.00 0.01 Increasing
1995.xlsx 3 3 4.98 7.23 13.92 7.36 14.29 8.19 increasing 0.00 0.01 Increasing
1995.xlsx 4 0.30 5.23 7.28 13.92 7.36 14.29 8.19 increasing 0.00 0.01 Increasing
1995.xlsx 5 4 8.10 9.85 13.92 7.36 14.29 8.19 increasing 0.00 0.01 Increasing
1995.xlsx 6 0 7.30 9.27 13.92 7.36 14.29 8.19 increasing 0.00 0.01 Increasing
1995.xlsx 7 0 3.13 5.81 13.92 7.36 14.29 8.19 increasing 0.00 0.01 Increasing
1995.xlsx 8 0 0.71 2.98 13.92 7.36 14.29 8.19 increasing 0.00 0.01 Increasing
1995.xlsx 9 0 3.74 5.46 13.92 7.36 14.29 8.19 increasing 0.00 0.01 Increasing
1995.xlsx 10 0 16.95 15.64 13.92 7.36 14.29 8.19 increasing 0.00 0.01 Increasing
1995.xlsx 11 0 28.70 27.90 13.92 7.36 14.29 8.19 increasing 0.00 0.01 Increasing
1995.xlsx 12 0 26.99 29.20 13.92 7.36 14.29 8.19 increasing 0.00 0.01 Increasing
1995.xlsx 13 0 36.82 39.48 13.92 7.36 14.29 8.19 increasing 0.00 0.01 Increasing
1995.xlsx 14 0 13.00 21.90 13.92 7.36 14.29 8.19 increasing 0.00 0.01 Increasing
1995.xlsx 15 0 4.77 11.68 13.92 7.36 14.29 8.19 increasing 0.00 0.01 Increasing
1995.xlsx 16 0 -0.09 4.47 13.92 7.36 14.29 8.19 increasing 0.00 0.01 Increasing
1995.xlsx 17 0 -1.59 0.99 13.92 7.36 14.29 8.19 increasing 0.00 0.01 Increasing
1995.xlsx 18 0 -0.80 0.49 13.92 7.36 14.29 8.19 increasing 0.00 0.01 Increasing
1995.xlsx 19 0 2.07 3.05 13.92 7.36 14.29 8.19 increasing 0.00 0.01 Increasing
1995.xlsx 20 0 3.90 5.06 13.92 7.36 14.29 8.19 increasing 0.00 0.01 Increasing
1995.xlsx 21 0 2.04 3.76 13.92 7.36 14.29 8.19 increasing 0.00 0.01 Increasing
1995.xlsx 22 0 1.20 2.34 13.92 7.36 14.29 8.19 increasing 0.00 0.01 Increasing
1995.xlsx 23 0 0.45 1.08 13.92 7.36 14.29 8.19 increasing 0.00 0.01 Increasing
1995.xlsx 24 0 2.71 1.84 13.92 7.36 14.29 8.19 increasing 0.00 0.01 Increasing
1995.xlsx 25 0 4.57 3.00 13.92 7.36 14.29 8.19 increasing 0.00 0.01 Increasing
1995.xlsx 26 0 4.36 2.61 13.92 7.36 14.29 8.19 increasing 0.00 0.01 Increasing
1995.xlsx 27 0 5.66 3.74 13.92 7.36 14.29 8.19 increasing 0.00 0.01 Increasing
1995.xlsx 28 0 4.46 3.39 13.92 7.36 14.29 8.19 increasing 0.00 0.01 Increasing
1995.xlsx 29 0 6.44 4.40 13.92 7.36 14.29 8.19 increasing 0.00 0.01 Increasing
1995.xlsx 30 0 7.73 5.18 13.92 7.36 14.29 8.19 increasing 0.00 0.01 Increasing
1995.xlsx 31 0 6.83 3.82 13.92 7.36 14.29 8.19 increasing 0.00 0.01 Increasing
1995.xlsx 32 0 6.60 3.13 13.92 7.36 14.29 8.19 increasing 0.00 0.01 Increasing
1995.xlsx 33 0 5.68 2.37 13.92 7.36 14.29 8.19 increasing 0.00 0.01 Increasing
1995.xlsx 34 0 4.97 1.87 13.92 7.36 14.29 8.19 increasing 0.00 0.01 Increasing
1995.xlsx 35 0 3.05 0.39 13.92 7.36 14.29 8.19 increasing 0.00 0.01 Increasing
1995.xlsx 36 0 1.42 -0.79 13.92 7.36 14.29 8.19 increasing 0.00 0.01 Increasing
1995.xlsx 37 0 0.32 -0.94 13.92 7.36 14.29 8.19 increasing 0.00 0.01 Increasing
1995.xlsx 38 0 1.60 -0.63 13.92 7.36 14.29 8.19 increasing 0.00 0.01 Increasing
1995.xlsx 39 0 1.42 0.02 13.92 7.36 14.29 8.19 increasing 0.00 0.01 Increasing
1995.xlsx 40 0 3.32 1.21 13.92 7.36 14.29 8.19 increasing 0.00 0.01 Increasing
1995.xlsx 41 0 5.18 4.08 13.92 7.36 14.29 8.19 increasing 0.00 0.01 Increasing
1995.xlsx 42 0 5.70 6.15 13.92 7.36 14.29 8.19 increasing 0.00 0.01 Increasing
1995.xlsx 43 0 6.09 8.53 13.92 7.36 14.29 8.19 increasing 0.00 0.01 Increasing
1995.xlsx 44 0 8.55 10.33 13.92 7.36 14.29 8.19 increasing 0.00 0.01 Increasing
1995.xlsx 45 0 9.44 11.35 13.92 7.36 14.29 8.19 increasing 0.00 0.01 Increasing
1995.xlsx 46 0 9.79 11.52 13.92 7.36 14.29 8.19 increasing 0.00 0.01 Increasing
1995.xlsx 47 0 12.28 13.88 13.92 7.36 14.29 8.19 increasing 0.00 0.01 Increasing
1995.xlsx 48 0 15.28 17.86 13.92 7.36 14.29 8.19 increasing 0.00 0.01 Increasing
1995.xlsx 49 0 4.93 10.39 13.92 7.36 14.29 8.19 increasing 0.00 0.01 Increasing
1995.xlsx 50 0 3.23 7.30 13.92 7.36 14.29 8.19 increasing 0.00 0.01 Increasing
1995.xlsx 51 0 2.56 6.10 13.92 7.36 14.29 8.19 increasing 0.00 0.01 Increasing
1995.xlsx 52 0 2.47 5.73 13.92 7.36 14.29 8.19 increasing 0.00 0.01 Increasing
1995.xlsx 53 0 3.69 6.59 13.92 7.36 14.29 8.19 increasing 0.00 0.01 Increasing
1995.xlsx 54 0 4.27 7.38 13.92 7.36 14.29 8.19 increasing 0.00 0.01 Increasing
1995.xlsx 55 0 4.87 7.85 13.92 7.36 14.29 8.19 increasing 0.00 0.01 Increasing
1995.xlsx 56 33.80 5.36 8.28 13.92 7.36 14.29 8.19 increasing 0.00 0.01 Increasing
1995.xlsx 57 0 4.84 8.18 13.92 7.36 14.29 8.19 increasing 0.00 0.01 Increasing
1995.xlsx 58 0 5.01 8.15 13.92 7.36 14.29 8.19 increasing 0.00 0.01 Increasing
1995.xlsx 59 0 4.10 8.14 13.92 7.36 14.29 8.19 increasing 0.00 0.01 Increasing
1995.xlsx 60 0 6.48 9.61 13.92 7.36 14.29 8.19 increasing 0.00 0.01 Increasing
1995.xlsx 61 0 2.38 7.22 13.92 7.36 14.29 8.19 increasing 0.00 0.01 Increasing
1995.xlsx 62 0 2.61 6.37 13.92 7.36 14.29 8.19 increasing 0.00 0.01 Increasing
1995.xlsx 63 0 2.45 4.98 13.92 7.36 14.29 8.19 increasing 0.00 0.01 Increasing
1995.xlsx 64 0 5.41 6.31 13.92 7.36 14.29 8.19 increasing 0.00 0.01 Increasing
1995.xlsx 65 0 5.75 6.01 13.92 7.36 14.29 8.19 increasing 0.00 0.01 Increasing
1995.xlsx 66 0 5.63 5.28 13.92 7.36 14.29 8.19 increasing 0.00 0.01 Increasing
1995.xlsx 67 0 4.83 4.47 13.92 7.36 14.29 8.19 increasing 0.00 0.01 Increasing
1996.xlsx 1 0 0.86 0.96 29.45 15.07 28.79 14.57 increasing 0.00 0.05 Increasing
1996.xlsx 2 0 1.44 1.23 29.45 15.07 28.79 14.57 increasing 0.00 0.05 Increasing
1996.xlsx 3 0 2.88 2.34 29.45 15.07 28.79 14.57 increasing 0.00 0.05 Increasing
1996.xlsx 4 0 1.56 1.65 29.45 15.07 28.79 14.57 increasing 0.00 0.05 Increasing
1996.xlsx 5 0 0.48 0.49 29.45 15.07 28.79 14.57 increasing 0.00 0.05 Increasing
1996.xlsx 6 0 -1.17 -1.49 29.45 15.07 28.79 14.57 increasing 0.00 0.05 Increasing
1996.xlsx 7 0 0.23 -1.00 29.45 15.07 28.79 14.57 increasing 0.00 0.05 Increasing
1996.xlsx 8 0 4.68 1.04 29.45 15.07 28.79 14.57 increasing 0.00 0.05 Increasing
1996.xlsx 9 0 6.18 2.32 29.45 15.07 28.79 14.57 increasing 0.00 0.05 Increasing
1996.xlsx 10 0 6.68 2.81 29.45 15.07 28.79 14.57 increasing 0.00 0.05 Increasing
1996.xlsx 11 0 6.46 2.49 29.45 15.07 28.79 14.57 increasing 0.00 0.05 Increasing
1996.xlsx 12 0 2.49 0.29 29.45 15.07 28.79 14.57 increasing 0.00 0.05 Increasing
1996.xlsx 13 0 -3.98 -4.53 29.45 15.07 28.79 14.57 increasing 0.00 0.05 Increasing
1996.xlsx 14 0 -0.46 -3.80 29.45 15.07 28.79 14.57 increasing 0.00 0.05 Increasing
1996.xlsx 15 0 2.77 -2.54 29.45 15.07 28.79 14.57 increasing 0.00 0.05 Increasing
1996.xlsx 16 0 9.34 2.57 29.45 15.07 28.79 14.57 increasing 0.00 0.05 Increasing
1996.xlsx 17 0 9.11 3.96 29.45 15.07 28.79 14.57 increasing 0.00 0.05 Increasing
1996.xlsx 18 0 6.79 3.30 29.45 15.07 28.79 14.57 increasing 0.00 0.05 Increasing
1996.xlsx 19 0 6.17 3.59 29.45 15.07 28.79 14.57 increasing 0.00 0.05 Increasing
1996.xlsx 20 0 4.08 3.29 29.45 15.07 28.79 14.57 increasing 0.00 0.05 Increasing
1996.xlsx 21 0 3.86 3.93 29.45 15.07 28.79 14.57 increasing 0.00 0.05 Increasing
1996.xlsx 22 0 3.03 4.56 29.45 15.07 28.79 14.57 increasing 0.00 0.05 Increasing
1996.xlsx 23 0 4.71 6.74 29.45 15.07 28.79 14.57 increasing 0.00 0.05 Increasing
1996.xlsx 24 0 9.22 11.05 29.45 15.07 28.79 14.57 increasing 0.00 0.05 Increasing
1996.xlsx 25 0 11.30 13.28 29.45 15.07 28.79 14.57 increasing 0.00 0.05 Increasing
1996.xlsx 26 0 35.64 35.21 29.45 15.07 28.79 14.57 increasing 0.00 0.05 Increasing
1996.xlsx 27 0 27.95 33.61 29.45 15.07 28.79 14.57 increasing 0.00 0.05 Increasing
1996.xlsx 28 0 8.21 18.85 29.45 15.07 28.79 14.57 increasing 0.00 0.05 Increasing
1996.xlsx 29 0 12.97 19.91 29.45 15.07 28.79 14.57 increasing 0.00 0.05 Increasing
1996.xlsx 30 0 29.79 35.21 29.45 15.07 28.79 14.57 increasing 0.00 0.05 Increasing
1996.xlsx 31 0 33.07 40.34 29.45 15.07 28.79 14.57 increasing 0.00 0.05 Increasing
1996.xlsx 32 0 17.55 28.07 29.45 15.07 28.79 14.57 increasing 0.00 0.05 Increasing
1996.xlsx 33 0 23.10 29.46 29.45 15.07 28.79 14.57 increasing 0.00 0.05 Increasing
1996.xlsx 34 0 30.92 35.40 29.45 15.07 28.79 14.57 increasing 0.00 0.05 Increasing
1996.xlsx 35 0 16.87 25.23 29.45 15.07 28.79 14.57 increasing 0.00 0.05 Increasing
1996.xlsx 36 0 12.19 20.34 29.45 15.07 28.79 14.57 increasing 0.00 0.05 Increasing
1996.xlsx 37 0 0.19 10.57 29.45 15.07 28.79 14.57 increasing 0.00 0.05 Increasing
1996.xlsx 38 0 -1.85 6.19 29.45 15.07 28.79 14.57 increasing 0.00 0.05 Increasing
1996.xlsx 39 0 -1.92 4.38 29.45 15.07 28.79 14.57 increasing 0.00 0.05 Increasing
1996.xlsx 40 0 -1.54 4.23 29.45 15.07 28.79 14.57 increasing 0.00 0.05 Increasing
1996.xlsx 41 0 0.65 4.93 29.45 15.07 28.79 14.57 increasing 0.00 0.05 Increasing
1996.xlsx 42 0 2.43 5.21 29.45 15.07 28.79 14.57 increasing 0.00 0.05 Increasing
1996.xlsx 43 0 3.88 6.16 29.45 15.07 28.79 14.57 increasing 0.00 0.05 Increasing
1996.xlsx 44 0 12.89 12.69 29.45 15.07 28.79 14.57 increasing 0.00 0.05 Increasing
1996.xlsx 45 0 11.88 13.14 29.45 15.07 28.79 14.57 increasing 0.00 0.05 Increasing
1996.xlsx 46 0 16.94 16.86 29.45 15.07 28.79 14.57 increasing 0.00 0.05 Increasing
1996.xlsx 47 0 60.58 55.08 29.45 15.07 28.79 14.57 increasing 0.00 0.05 Increasing
1996.xlsx 48 0 46.42 51.20 29.45 15.07 28.79 14.57 increasing 0.00 0.05 Increasing
1996.xlsx 49 0 53.22 56.54 29.45 15.07 28.79 14.57 increasing 0.00 0.05 Increasing
1996.xlsx 50 0 29.71 38.74 29.45 15.07 28.79 14.57 increasing 0.00 0.05 Increasing
1996.xlsx 51 0 27.84 31.48 29.45 15.07 28.79 14.57 increasing 0.00 0.05 Increasing
1996.xlsx 52 0 24.64 24.84 29.45 15.07 28.79 14.57 increasing 0.00 0.05 Increasing
1996.xlsx 53 0 28.63 25.35 29.45 15.07 28.79 14.57 increasing 0.00 0.05 Increasing
1996.xlsx 54 0 29.14 25.01 29.45 15.07 28.79 14.57 increasing 0.00 0.05 Increasing
1996.xlsx 55 0 10.33 8.99 29.45 15.07 28.79 14.57 increasing 0.00 0.05 Increasing
1996.xlsx 56 0 3.38 0.61 29.45 15.07 28.79 14.57 increasing 0.00 0.05 Increasing
1996.xlsx 57 0 1.48 -3.69 29.45 15.07 28.79 14.57 increasing 0.00 0.05 Increasing
1996.xlsx 58 0 2.28 -4.05 29.45 15.07 28.79 14.57 increasing 0.00 0.05 Increasing
1996.xlsx 59 0 5.21 -0.63 29.45 15.07 28.79 14.57 increasing 0.00 0.05 Increasing
1996.xlsx 60 0 5.26 2.32 29.45 15.07 28.79 14.57 increasing 0.00 0.05 Increasing
1996.xlsx 61 0 7.60 6.43 29.45 15.07 28.79 14.57 increasing 0.00 0.05 Increasing
1996.xlsx 62 0 8.67 8.69 29.45 15.07 28.79 14.57 increasing 0.00 0.05 Increasing
1996.xlsx 63 0 8.81 10.33 29.45 15.07 28.79 14.57 increasing 0.00 0.05 Increasing
1996.xlsx 64 0 10.33 12.49 29.45 15.07 28.79 14.57 increasing 0.00 0.05 Increasing
1996.xlsx 65 0 11.85 12.80 29.45 15.07 28.79 14.57 increasing 0.00 0.05 Increasing
1996.xlsx 66 0 10.02 10.51 29.45 15.07 28.79 14.57 increasing 0.00 0.05 Increasing
1996.xlsx 67 2.20 9.37 8.82 29.45 15.07 28.79 14.57 increasing 0.00 0.05 Increasing
1996.xlsx 68 17.30 5.27 5.60 29.45 15.07 28.79 14.57 increasing 0.00 0.05 Increasing
1997.xlsx 1 0 4.54 7.62 21.58 13.78 21.97 14.16 increasing 0 0.05 Increasing
1997.xlsx 2 0 5.00 7.31 21.58 13.78 21.97 14.16 increasing 0 0.05 Increasing
1997.xlsx 3 0 7.92 8.74 21.58 13.78 21.97 14.16 increasing 0 0.05 Increasing
1997.xlsx 4 0 10.14 10.96 21.58 13.78 21.97 14.16 increasing 0 0.05 Increasing
1997.xlsx 5 0 7.99 10.08 21.58 13.78 21.97 14.16 increasing 0 0.05 Increasing
1997.xlsx 6 0 7.06 10.79 21.58 13.78 21.97 14.16 increasing 0 0.05 Increasing
1997.xlsx 7 0 4.16 8.42 21.58 13.78 21.97 14.16 increasing 0 0.05 Increasing
1997.xlsx 8 0 4.58 7.38 21.58 13.78 21.97 14.16 increasing 0 0.05 Increasing
1997.xlsx 9 0 4.77 7.54 21.58 13.78 21.97 14.16 increasing 0 0.05 Increasing
1997.xlsx 10 0 13.64 14.16 21.58 13.78 21.97 14.16 increasing 0 0.05 Increasing
1997.xlsx 11 0 21.68 21.83 21.58 13.78 21.97 14.16 increasing 0 0.05 Increasing
1997.xlsx 12 0 11.46 14.57 21.58 13.78 21.97 14.16 increasing 0 0.05 Increasing
1997.xlsx 13 0 34.34 32.57 21.58 13.78 21.97 14.16 increasing 0 0.05 Increasing
1997.xlsx 14 0 28.37 31.45 21.58 13.78 21.97 14.16 increasing 0 0.05 Increasing
1997.xlsx 15 0 28.81 33.36 21.58 13.78 21.97 14.16 increasing 0 0.05 Increasing
1997.xlsx 16 0 12.22 19.76 21.58 13.78 21.97 14.16 increasing 0 0.05 Increasing
1997.xlsx 17 0 2.01 7.59 21.58 13.78 21.97 14.16 increasing 0 0.05 Increasing
1997.xlsx 18 0 1.17 2.73 21.58 13.78 21.97 14.16 increasing 0 0.05 Increasing
1997.xlsx 19 0 2.84 2.44 21.58 13.78 21.97 14.16 increasing 0 0.05 Increasing
1997.xlsx 20 0 4.01 3.42 21.58 13.78 21.97 14.16 increasing 0 0.05 Increasing
1997.xlsx 21 0 7.52 6.34 21.58 13.78 21.97 14.16 increasing 0 0.05 Increasing
1997.xlsx 22 0 18.51 15.88 21.58 13.78 21.97 14.16 increasing 0 0.05 Increasing
1997.xlsx 23 0 29.01 26.17 21.58 13.78 21.97 14.16 increasing 0 0.05 Increasing
1997.xlsx 24 0 22.09 22.97 21.58 13.78 21.97 14.16 increasing 0 0.05 Increasing
1997.xlsx 25 0 10.54 13.89 21.58 13.78 21.97 14.16 increasing 0 0.05 Increasing
1997.xlsx 26 0 18.74 18.52 21.58 13.78 21.97 14.16 increasing 0 0.05 Increasing
1997.xlsx 27 0 20.10 21.75 21.58 13.78 21.97 14.16 increasing 0 0.05 Increasing
1997.xlsx 28 0 13.37 18.53 21.58 13.78 21.97 14.16 increasing 0 0.05 Increasing
1997.xlsx 29 0 6.12 11.86 21.58 13.78 21.97 14.16 increasing 0 0.05 Increasing
1997.xlsx 30 0 3.98 8.30 21.58 13.78 21.97 14.16 increasing 0 0.05 Increasing
1997.xlsx 31 0 6.47 8.98 21.58 13.78 21.97 14.16 increasing 0 0.05 Increasing
1997.xlsx 32 0 8.71 10.61 21.58 13.78 21.97 14.16 increasing 0 0.05 Increasing
1997.xlsx 33 0 5.26 7.16 21.58 13.78 21.97 14.16 increasing 0 0.05 Increasing
1997.xlsx 34 0 6.06 6.00 21.58 13.78 21.97 14.16 increasing 0 0.05 Increasing
1997.xlsx 35 0 15.48 13.14 21.58 13.78 21.97 14.16 increasing 0 0.05 Increasing
1997.xlsx 36 0 13.23 10.76 21.58 13.78 21.97 14.16 increasing 0 0.05 Increasing
1997.xlsx 37 0 16.88 14.82 21.58 13.78 21.97 14.16 increasing 0 0.05 Increasing
1997.xlsx 38 0 7.98 7.92 21.58 13.78 21.97 14.16 increasing 0 0.05 Increasing
1997.xlsx 39 0 6.63 5.09 21.58 13.78 21.97 14.16 increasing 0 0.05 Increasing
1997.xlsx 40 0 6.51 4.31 21.58 13.78 21.97 14.16 increasing 0 0.05 Increasing
1997.xlsx 41 0 10.82 6.81 21.58 13.78 21.97 14.16 increasing 0 0.05 Increasing
1997.xlsx 42 0 40.84 33.16 21.58 13.78 21.97 14.16 increasing 0 0.05 Increasing
1997.xlsx 43 0 36.51 35.56 21.58 13.78 21.97 14.16 increasing 0 0.05 Increasing
1997.xlsx 44 0 33.67 35.46 21.58 13.78 21.97 14.16 increasing 0 0.05 Increasing
1997.xlsx 45 0 22.83 27.73 21.58 13.78 21.97 14.16 increasing 0 0.05 Increasing
1997.xlsx 46 0 10.34 14.28 21.58 13.78 21.97 14.16 increasing 0 0.05 Increasing
1997.xlsx 47 0 7.10 8.57 21.58 13.78 21.97 14.16 increasing 0 0.05 Increasing
1997.xlsx 48 0 2.03 2.85 21.58 13.78 21.97 14.16 increasing 0 0.05 Increasing
1997.xlsx 49 0 6.79 5.63 21.58 13.78 21.97 14.16 increasing 0 0.05 Increasing
1997.xlsx 50 0 5.15 4.37 21.58 13.78 21.97 14.16 increasing 0 0.05 Increasing
1997.xlsx 51 0 4.52 3.97 21.58 13.78 21.97 14.16 increasing 0 0.05 Increasing
1997.xlsx 52 0 5.64 4.91 21.58 13.78 21.97 14.16 increasing 0 0.05 Increasing
1997.xlsx 53 0 5.11 5.14 21.58 13.78 21.97 14.16 increasing 0 0.05 Increasing
1997.xlsx 54 0 7.21 6.70 21.58 13.78 21.97 14.16 increasing 0 0.05 Increasing
1997.xlsx 55 0 10.97 10.51 21.58 13.78 21.97 14.16 increasing 0 0.05 Increasing
1997.xlsx 56 0 15.22 16.21 21.58 13.78 21.97 14.16 increasing 0 0.05 Increasing
1997.xlsx 57 0 18.73 20.72 21.58 13.78 21.97 14.16 increasing 0 0.05 Increasing
1997.xlsx 58 0 21.25 23.36 21.58 13.78 21.97 14.16 increasing 0 0.05 Increasing
1997.xlsx 59 0 7.57 12.50 21.58 13.78 21.97 14.16 increasing 0 0.05 Increasing
1997.xlsx 60 0 4.47 7.01 21.58 13.78 21.97 14.16 increasing 0 0.05 Increasing
1997.xlsx 61 0 2.86 3.92 21.58 13.78 21.97 14.16 increasing 0 0.05 Increasing
1997.xlsx 62 0 3.35 2.47 21.58 13.78 21.97 14.16 increasing 0 0.05 Increasing
1997.xlsx 63 0 4.17 2.20 21.58 13.78 21.97 14.16 increasing 0 0.05 Increasing
1997.xlsx 64 0 5.05 1.80 21.58 13.78 21.97 14.16 increasing 0 0.05 Increasing
1997.xlsx 65 0 7.14 2.67 21.58 13.78 21.97 14.16 increasing 0 0.05 Increasing
1997.xlsx 66 12.20 9.70 4.34 21.58 13.78 21.97 14.16 increasing 0 0.05 Increasing
1997.xlsx 67 0 7.67 2.88 21.58 13.78 21.97 14.16 increasing 0 0.05 Increasing
1998.xlsx 1 0 4.22 2.77 29.56 13.34 29.63 13.98 increasing 0.00 0.04 Increasing
1998.xlsx 2 0 4.51 2.21 29.56 13.34 29.63 13.98 increasing 0.00 0.04 Increasing
1998.xlsx 3 0 7.83 5.00 29.56 13.34 29.63 13.98 increasing 0.00 0.04 Increasing
1998.xlsx 4 0 12.86 7.77 29.56 13.34 29.63 13.98 increasing 0.00 0.04 Increasing
1998.xlsx 5 0 8.83 6.24 29.56 13.34 29.63 13.98 increasing 0.00 0.04 Increasing
1998.xlsx 6 0 1.41 0.80 29.56 13.34 29.63 13.98 increasing 0.00 0.04 Increasing
1998.xlsx 7 0 3.20 2.33 29.56 13.34 29.63 13.98 increasing 0.00 0.04 Increasing
1998.xlsx 8 0 4.47 3.30 29.56 13.34 29.63 13.98 increasing 0.00 0.04 Increasing
1998.xlsx 9 0 13.16 12.32 29.56 13.34 29.63 13.98 increasing 0.00 0.04 Increasing
1998.xlsx 10 0 27.65 25.94 29.56 13.34 29.63 13.98 increasing 0.00 0.04 Increasing
1998.xlsx 11 2.80 55.12 53.33 29.56 13.34 29.63 13.98 increasing 0.00 0.04 Increasing
1998.xlsx 12 3.60 28.82 38.46 29.56 13.34 29.63 13.98 increasing 0.00 0.04 Increasing
1998.xlsx 13 0 17.68 26.75 29.56 13.34 29.63 13.98 increasing 0.00 0.04 Increasing
1998.xlsx 14 0 6.21 15.27 29.56 13.34 29.63 13.98 increasing 0.00 0.04 Increasing
1998.xlsx 15 0 11.47 16.26 29.56 13.34 29.63 13.98 increasing 0.00 0.04 Increasing
1998.xlsx 16 0 10.32 14.60 29.56 13.34 29.63 13.98 increasing 0.00 0.04 Increasing
1998.xlsx 17 0 4.96 9.67 29.56 13.34 29.63 13.98 increasing 0.00 0.04 Increasing
1998.xlsx 18 0 2.82 6.91 29.56 13.34 29.63 13.98 increasing 0.00 0.04 Increasing
1998.xlsx 19 0 2.66 5.41 29.56 13.34 29.63 13.98 increasing 0.00 0.04 Increasing
1998.xlsx 20 0 3.65 5.74 29.56 13.34 29.63 13.98 increasing 0.00 0.04 Increasing
1998.xlsx 21 0 1.59 4.60 29.56 13.34 29.63 13.98 increasing 0.00 0.04 Increasing
1998.xlsx 22 0 3.32 5.07 29.56 13.34 29.63 13.98 increasing 0.00 0.04 Increasing
1998.xlsx 23 0 2.57 3.94 29.56 13.34 29.63 13.98 increasing 0.00 0.04 Increasing
1998.xlsx 24 0 1.89 3.61 29.56 13.34 29.63 13.98 increasing 0.00 0.04 Increasing
1998.xlsx 25 0 3.12 4.22 29.56 13.34 29.63 13.98 increasing 0.00 0.04 Increasing
1998.xlsx 26 0 4.78 5.44 29.56 13.34 29.63 13.98 increasing 0.00 0.04 Increasing
1998.xlsx 27 0 10.50 10.38 29.56 13.34 29.63 13.98 increasing 0.00 0.04 Increasing
1998.xlsx 28 0 7.72 8.57 29.56 13.34 29.63 13.98 increasing 0.00 0.04 Increasing
1998.xlsx 29 0 10.47 9.13 29.56 13.34 29.63 13.98 increasing 0.00 0.04 Increasing
1998.xlsx 30 0 6.12 6.68 29.56 13.34 29.63 13.98 increasing 0.00 0.04 Increasing
1998.xlsx 31 0 4.83 5.11 29.56 13.34 29.63 13.98 increasing 0.00 0.04 Increasing
1998.xlsx 32 0 4.57 4.83 29.56 13.34 29.63 13.98 increasing 0.00 0.04 Increasing
1998.xlsx 33 0 1.72 2.91 29.56 13.34 29.63 13.98 increasing 0.00 0.04 Increasing
1998.xlsx 34 0 1.01 0.96 29.56 13.34 29.63 13.98 increasing 0.00 0.04 Increasing
1998.xlsx 35 0 4.56 2.66 29.56 13.34 29.63 13.98 increasing 0.00 0.04 Increasing
1998.xlsx 36 0 5.30 2.47 29.56 13.34 29.63 13.98 increasing 0.00 0.04 Increasing
1998.xlsx 37 0 7.47 3.06 29.56 13.34 29.63 13.98 increasing 0.00 0.04 Increasing
1998.xlsx 38 0 8.94 3.93 29.56 13.34 29.63 13.98 increasing 0.00 0.04 Increasing
1998.xlsx 39 0 6.12 2.48 29.56 13.34 29.63 13.98 increasing 0.00 0.04 Increasing
1998.xlsx 40 0 4.83 3.09 29.56 13.34 29.63 13.98 increasing 0.00 0.04 Increasing
1998.xlsx 41 0 15.09 13.04 29.56 13.34 29.63 13.98 increasing 0.00 0.04 Increasing
1998.xlsx 42 0 58.45 53.28 29.56 13.34 29.63 13.98 increasing 0.00 0.04 Increasing
1998.xlsx 43 0 19.51 30.34 29.56 13.34 29.63 13.98 increasing 0.00 0.04 Increasing
1998.xlsx 44 0 9.47 18.06 29.56 13.34 29.63 13.98 increasing 0.00 0.04 Increasing
1998.xlsx 45 0 22.97 27.07 29.56 13.34 29.63 13.98 increasing 0.00 0.04 Increasing
1998.xlsx 46 0 30.16 33.21 29.56 13.34 29.63 13.98 increasing 0.00 0.04 Increasing
1998.xlsx 47 0 36.24 39.94 29.56 13.34 29.63 13.98 increasing 0.00 0.04 Increasing
1998.xlsx 48 0 19.96 29.18 29.56 13.34 29.63 13.98 increasing 0.00 0.04 Increasing
1998.xlsx 49 0 6.27 15.74 29.56 13.34 29.63 13.98 increasing 0.00 0.04 Increasing
1998.xlsx 50 0 4.28 11.39 29.56 13.34 29.63 13.98 increasing 0.00 0.04 Increasing
1998.xlsx 51 0 9.07 12.96 29.56 13.34 29.63 13.98 increasing 0.00 0.04 Increasing
1998.xlsx 52 0 11.11 14.28 29.56 13.34 29.63 13.98 increasing 0.00 0.04 Increasing
1998.xlsx 53 0 3.76 9.23 29.56 13.34 29.63 13.98 increasing 0.00 0.04 Increasing
1998.xlsx 54 0 5.14 9.26 29.56 13.34 29.63 13.98 increasing 0.00 0.04 Increasing
1998.xlsx 55 0 3.69 9.21 29.56 13.34 29.63 13.98 increasing 0.00 0.04 Increasing
1998.xlsx 56 0 4.39 9.38 29.56 13.34 29.63 13.98 increasing 0.00 0.04 Increasing
1998.xlsx 57 0 3.23 8.39 29.56 13.34 29.63 13.98 increasing 0.00 0.04 Increasing
1998.xlsx 58 0 2.11 6.97 29.56 13.34 29.63 13.98 increasing 0.00 0.04 Increasing
1998.xlsx 59 0 1.46 5.60 29.56 13.34 29.63 13.98 increasing 0.00 0.04 Increasing
1998.xlsx 60 0 3.01 4.99 29.56 13.34 29.63 13.98 increasing 0.00 0.04 Increasing
1998.xlsx 61 0 5.07 5.50 29.56 13.34 29.63 13.98 increasing 0.00 0.04 Increasing
1998.xlsx 62 0 4.67 4.56 29.56 13.34 29.63 13.98 increasing 0.00 0.04 Increasing
1998.xlsx 63 0 7.29 5.06 29.56 13.34 29.63 13.98 increasing 0.00 0.04 Increasing
1998.xlsx 64 0 12.02 7.46 29.56 13.34 29.63 13.98 increasing 0.00 0.04 Increasing
1998.xlsx 65 0 10.65 5.47 29.56 13.34 29.63 13.98 increasing 0.00 0.04 Increasing
1998.xlsx 66 0 8.98 3.21 29.56 13.34 29.63 13.98 increasing 0.00 0.04 Increasing
1998.xlsx 67 0 5.23 0.39 29.56 13.34 29.63 13.98 increasing 0.00 0.04 Increasing
1999.xlsx 1 0 3.17 6.45 25.81 12.52 25.95 13.44 increasing 0.00 0.03 Increasing
1999.xlsx 2 0 -0.57 2.69 25.81 12.52 25.95 13.44 increasing 0.00 0.03 Increasing
1999.xlsx 3 0.80 -1.46 1.53 25.81 12.52 25.95 13.44 increasing 0.00 0.03 Increasing
1999.xlsx 4 0 0.02 1.44 25.81 12.52 25.95 13.44 increasing 0.00 0.03 Increasing
1999.xlsx 5 0 11.54 10.35 25.81 12.52 25.95 13.44 increasing 0.00 0.03 Increasing
1999.xlsx 6 0 6.28 7.22 25.81 12.52 25.95 13.44 increasing 0.00 0.03 Increasing
1999.xlsx 7 0 0.79 1.88 25.81 12.52 25.95 13.44 increasing 0.00 0.03 Increasing
1999.xlsx 8 0 0.74 -0.01 25.81 12.52 25.95 13.44 increasing 0.00 0.03 Increasing
1999.xlsx 9 0 3.29 1.67 25.81 12.52 25.95 13.44 increasing 0.00 0.03 Increasing
1999.xlsx 10 0 5.34 3.98 25.81 12.52 25.95 13.44 increasing 0.00 0.03 Increasing
1999.xlsx 11 0 7.28 7.90 25.81 12.52 25.95 13.44 increasing 0.00 0.03 Increasing
1999.xlsx 12 0 8.29 8.54 25.81 12.52 25.95 13.44 increasing 0.00 0.03 Increasing
1999.xlsx 13 0 12.89 11.92 25.81 12.52 25.95 13.44 increasing 0.00 0.03 Increasing
1999.xlsx 14 0 8.10 8.89 25.81 12.52 25.95 13.44 increasing 0.00 0.03 Increasing
1999.xlsx 15 0 5.27 6.01 25.81 12.52 25.95 13.44 increasing 0.00 0.03 Increasing
1999.xlsx 16 0 4.30 5.12 25.81 12.52 25.95 13.44 increasing 0.00 0.03 Increasing
1999.xlsx 17 0 3.99 5.19 25.81 12.52 25.95 13.44 increasing 0.00 0.03 Increasing
1999.xlsx 18 0 0.93 3.52 25.81 12.52 25.95 13.44 increasing 0.00 0.03 Increasing
1999.xlsx 19 0 1.97 4.08 25.81 12.52 25.95 13.44 increasing 0.00 0.03 Increasing
1999.xlsx 20 0 4.12 5.74 25.81 12.52 25.95 13.44 increasing 0.00 0.03 Increasing
1999.xlsx 21 8.20 4.42 5.60 25.81 12.52 25.95 13.44 increasing 0.00 0.03 Increasing
1999.xlsx 22 3 4.02 4.90 25.81 12.52 25.95 13.44 increasing 0.00 0.03 Increasing
1999.xlsx 23 0 6.58 6.80 25.81 12.52 25.95 13.44 increasing 0.00 0.03 Increasing
1999.xlsx 24 0 6.70 8.30 25.81 12.52 25.95 13.44 increasing 0.00 0.03 Increasing
1999.xlsx 25 0 12.81 12.62 25.81 12.52 25.95 13.44 increasing 0.00 0.03 Increasing
1999.xlsx 26 0 25.48 23.70 25.81 12.52 25.95 13.44 increasing 0.00 0.03 Increasing
1999.xlsx 27 0 20.27 22.34 25.81 12.52 25.95 13.44 increasing 0.00 0.03 Increasing
1999.xlsx 28 0 53.91 51.93 25.81 12.52 25.95 13.44 increasing 0.00 0.03 Increasing
1999.xlsx 29 0 41.86 49.21 25.81 12.52 25.95 13.44 increasing 0.00 0.03 Increasing
1999.xlsx 30 0 36.89 46.27 25.81 12.52 25.95 13.44 increasing 0.00 0.03 Increasing
1999.xlsx 31 0 7.78 22.45 25.81 12.52 25.95 13.44 increasing 0.00 0.03 Increasing
1999.xlsx 32 0 3.58 12.95 25.81 12.52 25.95 13.44 increasing 0.00 0.03 Increasing
1999.xlsx 33 0 1.59 8.14 25.81 12.52 25.95 13.44 increasing 0.00 0.03 Increasing
1999.xlsx 34 0 6.04 8.68 25.81 12.52 25.95 13.44 increasing 0.00 0.03 Increasing
1999.xlsx 35 0 37.61 35.26 25.81 12.52 25.95 13.44 increasing 0.00 0.03 Increasing
1999.xlsx 36 0 41.18 43.23 25.81 12.52 25.95 13.44 increasing 0.00 0.03 Increasing
1999.xlsx 37 0 13.86 23.71 25.81 12.52 25.95 13.44 increasing 0.00 0.03 Increasing
1999.xlsx 38 0 8.13 14.81 25.81 12.52 25.95 13.44 increasing 0.00 0.03 Increasing
1999.xlsx 39 0 7.44 12.34 25.81 12.52 25.95 13.44 increasing 0.00 0.03 Increasing
1999.xlsx 40 0 11.47 16.15 25.81 12.52 25.95 13.44 increasing 0.00 0.03 Increasing
1999.xlsx 41 0 3.69 10.27 25.81 12.52 25.95 13.44 increasing 0.00 0.03 Increasing
1999.xlsx 42 0 3.27 7.18 25.81 12.52 25.95 13.44 increasing 0.00 0.03 Increasing
1999.xlsx 43 0 6.12 7.62 25.81 12.52 25.95 13.44 increasing 0.00 0.03 Increasing
1999.xlsx 44 0 6.00 6.39 25.81 12.52 25.95 13.44 increasing 0.00 0.03 Increasing
1999.xlsx 45 0 5.65 5.14 25.81 12.52 25.95 13.44 increasing 0.00 0.03 Increasing
1999.xlsx 46 0 4.36 3.75 25.81 12.52 25.95 13.44 increasing 0.00 0.03 Increasing
1999.xlsx 47 0 5.86 4.16 25.81 12.52 25.95 13.44 increasing 0.00 0.03 Increasing
1999.xlsx 48 0 4.42 2.73 25.81 12.52 25.95 13.44 increasing 0.00 0.03 Increasing
1999.xlsx 49 0 11.45 5.91 25.81 12.52 25.95 13.44 increasing 0.00 0.03 Increasing
1999.xlsx 50 0 18.04 11.13 25.81 12.52 25.95 13.44 increasing 0.00 0.03 Increasing
1999.xlsx 51 0 15.44 9.12 25.81 12.52 25.95 13.44 increasing 0.00 0.03 Increasing
1999.xlsx 52 0 6.95 2.87 25.81 12.52 25.95 13.44 increasing 0.00 0.03 Increasing
1999.xlsx 53 0 2.09 -1.17 25.81 12.52 25.95 13.44 increasing 0.00 0.03 Increasing
1999.xlsx 54 0 1.18 -1.80 25.81 12.52 25.95 13.44 increasing 0.00 0.03 Increasing
1999.xlsx 55 0 -0.20 -3.35 25.81 12.52 25.95 13.44 increasing 0.00 0.03 Increasing
1999.xlsx 56 0 -1.22 -4.37 25.81 12.52 25.95 13.44 increasing 0.00 0.03 Increasing
1999.xlsx 57 0 4.18 -1.59 25.81 12.52 25.95 13.44 increasing 0.00 0.03 Increasing
1999.xlsx 58 0 7.78 2.07 25.81 12.52 25.95 13.44 increasing 0.00 0.03 Increasing
1999.xlsx 59 0 11.59 6.19 25.81 12.52 25.95 13.44 increasing 0.00 0.03 Increasing
1999.xlsx 60 0 12.92 8.79 25.81 12.52 25.95 13.44 increasing 0.00 0.03 Increasing
1999.xlsx 61 0 10.28 6.41 25.81 12.52 25.95 13.44 increasing 0.00 0.03 Increasing
1999.xlsx 62 0 8.34 5.57 25.81 12.52 25.95 13.44 increasing 0.00 0.03 Increasing
1999.xlsx 63 0 4.19 2.83 25.81 12.52 25.95 13.44 increasing 0.00 0.03 Increasing
1999.xlsx 64 0 2.93 1.36 25.81 12.52 25.95 13.44 increasing 0.00 0.03 Increasing
1999.xlsx 65 0 7.43 5.19 25.81 12.52 25.95 13.44 increasing 0.00 0.03 Increasing
1999.xlsx 66 0 2.89 3.85 25.81 12.52 25.95 13.44 increasing 0.00 0.03 Increasing
1999.xlsx 67 0 2.17 2.54 25.81 12.52 25.95 13.44 increasing 0.00 0.03 Increasing
2000.xlsx 1 0 4.63 3.80 26.12 11.49 26.84 12.40 increasing 0.00 0.02 Increasing
2000.xlsx 2 0 3.83 3.82 26.12 11.49 26.84 12.40 increasing 0.00 0.02 Increasing
2000.xlsx 3 0 -1.19 2.45 26.12 11.49 26.84 12.40 increasing 0.00 0.02 Increasing
2000.xlsx 4 0 -0.80 0.72 26.12 11.49 26.84 12.40 increasing 0.00 0.02 Increasing
2000.xlsx 5 0 2.38 1.39 26.12 11.49 26.84 12.40 increasing 0.00 0.02 Increasing
2000.xlsx 6 1 6.06 4.31 26.12 11.49 26.84 12.40 increasing 0.00 0.02 Increasing
2000.xlsx 7 0 3.62 2.39 26.12 11.49 26.84 12.40 increasing 0.00 0.02 Increasing
2000.xlsx 8 0 5.49 3.02 26.12 11.49 26.84 12.40 increasing 0.00 0.02 Increasing
2000.xlsx 9 1.80 4.86 3.22 26.12 11.49 26.84 12.40 increasing 0.00 0.02 Increasing
2000.xlsx 10 0 4.05 3.24 26.12 11.49 26.84 12.40 increasing 0.00 0.02 Increasing
2000.xlsx 11 0 7.14 5.49 26.12 11.49 26.84 12.40 increasing 0.00 0.02 Increasing
2000.xlsx 12 0 12.17 10.29 26.12 11.49 26.84 12.40 increasing 0.00 0.02 Increasing
2000.xlsx 13 0 10.36 11.20 26.12 11.49 26.84 12.40 increasing 0.00 0.02 Increasing
2000.xlsx 14 0 8.26 9.66 26.12 11.49 26.84 12.40 increasing 0.00 0.02 Increasing
2000.xlsx 15 0 6.13 8.57 26.12 11.49 26.84 12.40 increasing 0.00 0.02 Increasing
2000.xlsx 16 0 8.38 11.58 26.12 11.49 26.84 12.40 increasing 0.00 0.02 Increasing
2000.xlsx 17 0 11.60 15.53 26.12 11.49 26.84 12.40 increasing 0.00 0.02 Increasing
2000.xlsx 18 0 7.88 13.73 26.12 11.49 26.84 12.40 increasing 0.00 0.02 Increasing
2000.xlsx 19 0 10.58 16.70 26.12 11.49 26.84 12.40 increasing 0.00 0.02 Increasing
2000.xlsx 20 0 19.16 23.65 26.12 11.49 26.84 12.40 increasing 0.00 0.02 Increasing
2000.xlsx 21 0 12.95 20.99 26.12 11.49 26.84 12.40 increasing 0.00 0.02 Increasing
2000.xlsx 22 0 13.91 21.83 26.12 11.49 26.84 12.40 increasing 0.00 0.02 Increasing
2000.xlsx 23 0 5.83 15.17 26.12 11.49 26.84 12.40 increasing 0.00 0.02 Increasing
2000.xlsx 24 1.60 4.73 12.37 26.12 11.49 26.84 12.40 increasing 0.00 0.02 Increasing
2000.xlsx 25 45 4.51 11.38 26.12 11.49 26.84 12.40 increasing 0.00 0.02 Increasing
2000.xlsx 26 11.20 8.78 13.25 26.12 11.49 26.84 12.40 increasing 0.00 0.02 Increasing
2000.xlsx 27 0 13.02 16.25 26.12 11.49 26.84 12.40 increasing 0.00 0.02 Increasing
2000.xlsx 28 118.60 12.16 15.50 26.12 11.49 26.84 12.40 increasing 0.00 0.02 Increasing
2000.xlsx 29 17.80 12.97 17.14 26.12 11.49 26.84 12.40 increasing 0.00 0.02 Increasing
2000.xlsx 30 0 19.69 24.00 26.12 11.49 26.84 12.40 increasing 0.00 0.02 Increasing
2000.xlsx 31 0 12.06 20.22 26.12 11.49 26.84 12.40 increasing 0.00 0.02 Increasing
2000.xlsx 32 0 5.80 15.62 26.12 11.49 26.84 12.40 increasing 0.00 0.02 Increasing
2000.xlsx 33 0 -0.38 9.17 26.12 11.49 26.84 12.40 increasing 0.00 0.02 Increasing
2000.xlsx 34 0 -1.00 6.79 26.12 11.49 26.84 12.40 increasing 0.00 0.02 Increasing
2000.xlsx 35 0 0.01 6.04 26.12 11.49 26.84 12.40 increasing 0.00 0.02 Increasing
2000.xlsx 36 0 2.77 6.41 26.12 11.49 26.84 12.40 increasing 0.00 0.02 Increasing
2000.xlsx 37 0 17.98 15.92 26.12 11.49 26.84 12.40 increasing 0.00 0.02 Increasing
2000.xlsx 38 0 51.74 46.28 26.12 11.49 26.84 12.40 increasing 0.00 0.02 Increasing
2000.xlsx 39 0 14.99 23.25 26.12 11.49 26.84 12.40 increasing 0.00 0.02 Increasing
2000.xlsx 40 0 6.16 10.69 26.12 11.49 26.84 12.40 increasing 0.00 0.02 Increasing
2000.xlsx 41 0 3.84 5.49 26.12 11.49 26.84 12.40 increasing 0.00 0.02 Increasing
2000.xlsx 42 0 2.25 2.61 26.12 11.49 26.84 12.40 increasing 0.00 0.02 Increasing
2000.xlsx 43 0 5.56 4.75 26.12 11.49 26.84 12.40 increasing 0.00 0.02 Increasing
2000.xlsx 44 0 5.25 4.45 26.12 11.49 26.84 12.40 increasing 0.00 0.02 Increasing
2000.xlsx 45 0 3.64 3.07 26.12 11.49 26.84 12.40 increasing 0.00 0.02 Increasing
2000.xlsx 46 0 3.80 3.02 26.12 11.49 26.84 12.40 increasing 0.00 0.02 Increasing
2000.xlsx 47 0 3.50 3.18 26.12 11.49 26.84 12.40 increasing 0.00 0.02 Increasing
2000.xlsx 48 0 5.23 4.40 26.12 11.49 26.84 12.40 increasing 0.00 0.02 Increasing
2000.xlsx 49 0 4.65 4.31 26.12 11.49 26.84 12.40 increasing 0.00 0.02 Increasing
2000.xlsx 50 0 4.16 3.85 26.12 11.49 26.84 12.40 increasing 0.00 0.02 Increasing
2000.xlsx 51 0 4.12 3.83 26.12 11.49 26.84 12.40 increasing 0.00 0.02 Increasing
2000.xlsx 52 0 5.34 4.93 26.12 11.49 26.84 12.40 increasing 0.00 0.02 Increasing
2000.xlsx 53 0 6.08 5.64 26.12 11.49 26.84 12.40 increasing 0.00 0.02 Increasing
2000.xlsx 54 0 5.91 6.10 26.12 11.49 26.84 12.40 increasing 0.00 0.02 Increasing
2000.xlsx 55 0 4.49 5.63 26.12 11.49 26.84 12.40 increasing 0.00 0.02 Increasing
2000.xlsx 56 0 5.06 5.56 26.12 11.49 26.84 12.40 increasing 0.00 0.02 Increasing
2000.xlsx 57 0 8.37 6.10 26.12 11.49 26.84 12.40 increasing 0.00 0.02 Increasing
2000.xlsx 58 0 2.77 1.89 26.12 11.49 26.84 12.40 increasing 0.00 0.02 Increasing
2000.xlsx 59 0 3.24 1.59 26.12 11.49 26.84 12.40 increasing 0.00 0.02 Increasing
2000.xlsx 60 0 3.53 2.16 26.12 11.49 26.84 12.40 increasing 0.00 0.02 Increasing
2000.xlsx 61 0 4.56 2.73 26.12 11.49 26.84 12.40 increasing 0.00 0.02 Increasing
2000.xlsx 62 38 3.81 2.10 26.12 11.49 26.84 12.40 increasing 0.00 0.02 Increasing
2000.xlsx 63 12 3.97 2.08 26.12 11.49 26.84 12.40 increasing 0.00 0.02 Increasing
2000.xlsx 64 0 4.97 2.22 26.12 11.49 26.84 12.40 increasing 0.00 0.02 Increasing
2000.xlsx 65 0 22.03 15.53 26.12 11.49 26.84 12.40 increasing 0.00 0.02 Increasing
2000.xlsx 66 0 24.25 20.10 26.12 11.49 26.84 12.40 increasing 0.00 0.02 Increasing
2000.xlsx 67 0 52.61 47.13 26.12 11.49 26.84 12.40 increasing 0.00 0.02 Increasing
2000.xlsx 68 0 12.43 26.32 26.12 11.49 26.84 12.40 increasing 0.00 0.02 Increasing
2001.xlsx 1 0 12.11 15.49 13.72 9.30 14.33 11.18 increasing 0.00 0.03 Increasing
2001.xlsx 2 0 16.39 18.62 13.72 9.30 14.33 11.18 increasing 0.00 0.03 Increasing
2001.xlsx 3 0 17.26 19.62 13.72 9.30 14.33 11.18 increasing 0.00 0.03 Increasing
2001.xlsx 4 0 6.24 11.11 13.72 9.30 14.33 11.18 increasing 0.00 0.03 Increasing
2001.xlsx 5 0 2.15 5.22 13.72 9.30 14.33 11.18 increasing 0.00 0.03 Increasing
2001.xlsx 6 0 -1.78 0.70 13.72 9.30 14.33 11.18 increasing 0.00 0.03 Increasing
2001.xlsx 7 0 -1.52 -0.26 13.72 9.30 14.33 11.18 increasing 0.00 0.03 Increasing
2001.xlsx 8 0 -0.06 0.62 13.72 9.30 14.33 11.18 increasing 0.00 0.03 Increasing
2001.xlsx 9 0 7.33 3.91 13.72 9.30 14.33 11.18 increasing 0.00 0.03 Increasing
2001.xlsx 10 0 8.65 7.59 13.72 9.30 14.33 11.18 increasing 0.00 0.03 Increasing
2001.xlsx 11 0 6.78 7.45 13.72 9.30 14.33 11.18 increasing 0.00 0.03 Increasing
2001.xlsx 12 0 11.07 11.20 13.72 9.30 14.33 11.18 increasing 0.00 0.03 Increasing
2001.xlsx 13 0 16.29 17.25 13.72 9.30 14.33 11.18 increasing 0.00 0.03 Increasing
2001.xlsx 14 0 9.76 13.31 13.72 9.30 14.33 11.18 increasing 0.00 0.03 Increasing
2001.xlsx 15 0 12.15 15.36 13.72 9.30 14.33 11.18 increasing 0.00 0.03 Increasing
2001.xlsx 16 0 7.07 12.04 13.72 9.30 14.33 11.18 increasing 0.00 0.03 Increasing
2001.xlsx 17 0 4.79 10.27 13.72 9.30 14.33 11.18 increasing 0.00 0.03 Increasing
2001.xlsx 18 0 2.39 8.13 13.72 9.30 14.33 11.18 increasing 0.00 0.03 Increasing
2001.xlsx 19 0 -0.37 5.43 13.72 9.30 14.33 11.18 increasing 0.00 0.03 Increasing
2001.xlsx 20 0 2.86 6.73 13.72 9.30 14.33 11.18 increasing 0.00 0.03 Increasing
2001.xlsx 21 0 3.64 6.37 13.72 9.30 14.33 11.18 increasing 0.00 0.03 Increasing
2001.xlsx 22 0 4.28 6.02 13.72 9.30 14.33 11.18 increasing 0.00 0.03 Increasing
2001.xlsx 23 0 6.21 7.85 13.72 9.30 14.33 11.18 increasing 0.00 0.03 Increasing
2001.xlsx 24 0 6.40 7.92 13.72 9.30 14.33 11.18 increasing 0.00 0.03 Increasing
2001.xlsx 25 0 12.02 12.76 13.72 9.30 14.33 11.18 increasing 0.00 0.03 Increasing
2001.xlsx 26 0 8.07 10.48 13.72 9.30 14.33 11.18 increasing 0.00 0.03 Increasing
2001.xlsx 27 0 7.15 9.48 13.72 9.30 14.33 11.18 increasing 0.00 0.03 Increasing
2001.xlsx 28 0 20.67 21.60 13.72 9.30 14.33 11.18 increasing 0.00 0.03 Increasing
2001.xlsx 29 0 26.52 30.59 13.72 9.30 14.33 11.18 increasing 0.00 0.03 Increasing
2001.xlsx 30 0 13.74 21.66 13.72 9.30 14.33 11.18 increasing 0.00 0.03 Increasing
2001.xlsx 31 0 6.54 13.24 13.72 9.30 14.33 11.18 increasing 0.00 0.03 Increasing
2001.xlsx 32 0 6.68 11.79 13.72 9.30 14.33 11.18 increasing 0.00 0.03 Increasing
2001.xlsx 33 0 8.41 12.08 13.72 9.30 14.33 11.18 increasing 0.00 0.03 Increasing
2001.xlsx 34 0 7.86 11.31 13.72 9.30 14.33 11.18 increasing 0.00 0.03 Increasing
2001.xlsx 35 0 14.23 15.77 13.72 9.30 14.33 11.18 increasing 0.00 0.03 Increasing
2001.xlsx 36 0 6.61 9.84 13.72 9.30 14.33 11.18 increasing 0.00 0.03 Increasing
2001.xlsx 37 0 7.57 9.57 13.72 9.30 14.33 11.18 increasing 0.00 0.03 Increasing
2001.xlsx 38 0 14.03 15.35 13.72 9.30 14.33 11.18 increasing 0.00 0.03 Increasing
2001.xlsx 39 0 9.98 13.06 13.72 9.30 14.33 11.18 increasing 0.00 0.03 Increasing
2001.xlsx 40 0 7.67 11.47 13.72 9.30 14.33 11.18 increasing 0.00 0.03 Increasing
2001.xlsx 41 0 6.37 10.78 13.72 9.30 14.33 11.18 increasing 0.00 0.03 Increasing
2001.xlsx 42 0 3.58 9.01 13.72 9.30 14.33 11.18 increasing 0.00 0.03 Increasing
2001.xlsx 43 0 2.98 8.04 13.72 9.30 14.33 11.18 increasing 0.00 0.03 Increasing
2001.xlsx 44 0 2.22 7.08 13.72 9.30 14.33 11.18 increasing 0.00 0.03 Increasing
2001.xlsx 45 0 3.83 8.25 13.72 9.30 14.33 11.18 increasing 0.00 0.03 Increasing
2001.xlsx 46 0 3.54 8.34 13.72 9.30 14.33 11.18 increasing 0.00 0.03 Increasing
2001.xlsx 47 0 3.77 8.00 13.72 9.30 14.33 11.18 increasing 0.00 0.03 Increasing
2001.xlsx 48 0 6.22 8.52 13.72 9.30 14.33 11.18 increasing 0.00 0.03 Increasing
2001.xlsx 49 0 5.72 7.95 13.72 9.30 14.33 11.18 increasing 0.00 0.03 Increasing
2001.xlsx 50 0 7.02 7.96 13.72 9.30 14.33 11.18 increasing 0.00 0.03 Increasing
2001.xlsx 51 0 5.10 6.32 13.72 9.30 14.33 11.18 increasing 0.00 0.03 Increasing
2001.xlsx 52 0 5.15 5.86 13.72 9.30 14.33 11.18 increasing 0.00 0.03 Increasing
2001.xlsx 53 0 6.40 5.96 13.72 9.30 14.33 11.18 increasing 0.00 0.03 Increasing
2001.xlsx 54 0 12.64 10.57 13.72 9.30 14.33 11.18 increasing 0.00 0.03 Increasing
2001.xlsx 55 0 20.56 18.18 13.72 9.30 14.33 11.18 increasing 0.00 0.03 Increasing
2001.xlsx 56 0 10.99 11.40 13.72 9.30 14.33 11.18 increasing 0.00 0.03 Increasing
2001.xlsx 57 0 12.45 12.12 13.72 9.30 14.33 11.18 increasing 0.00 0.03 Increasing
2001.xlsx 58 0 23.07 22.86 13.72 9.30 14.33 11.18 increasing 0.00 0.03 Increasing
2001.xlsx 59 0 16.63 20.45 13.72 9.30 14.33 11.18 increasing 0.00 0.03 Increasing
2001.xlsx 60 0 9.89 13.60 13.72 9.30 14.33 11.18 increasing 0.00 0.03 Increasing
2001.xlsx 61 0 24.88 25.06 13.72 9.30 14.33 11.18 increasing 0.00 0.03 Increasing
2001.xlsx 62 0 18.54 22.46 13.72 9.30 14.33 11.18 increasing 0.00 0.03 Increasing
2001.xlsx 63 0 5.84 11.32 13.72 9.30 14.33 11.18 increasing 0.00 0.03 Increasing
2001.xlsx 64 0 2.82 6.30 13.72 9.30 14.33 11.18 increasing 0.00 0.03 Increasing
2001.xlsx 65 0 2.39 5.60 13.72 9.30 14.33 11.18 increasing 0.00 0.03 Increasing
2001.xlsx 66 0 3.97 6.57 13.72 9.30 14.33 11.18 increasing 0.00 0.03 Increasing
2001.xlsx 67 0 3.49 5.85 13.72 9.30 14.33 11.18 increasing 0.00 0.03 Increasing
2002.xlsx 1 0 -0.76 1.68 17.41 8.62 18.00 10.31 increasing 0.00 0.00 Increasing
2002.xlsx 2 5 2.42 3.78 17.41 8.62 18.00 10.31 increasing 0.00 0.00 Increasing
2002.xlsx 3 110 7.23 7.48 17.41 8.62 18.00 10.31 increasing 0.00 0.00 Increasing
2002.xlsx 4 231 9.50 9.90 17.41 8.62 18.00 10.31 increasing 0.00 0.00 Increasing
2002.xlsx 5 14 7.65 9.30 17.41 8.62 18.00 10.31 increasing 0.00 0.00 Increasing
2002.xlsx 6 0 8.86 10.48 17.41 8.62 18.00 10.31 increasing 0.00 0.00 Increasing
2002.xlsx 7 0 31.67 30.22 17.41 8.62 18.00 10.31 increasing 0.00 0.00 Increasing
2002.xlsx 8 0 29.18 31.75 17.41 8.62 18.00 10.31 increasing 0.00 0.00 Increasing
2002.xlsx 9 0 38.57 41.80 17.41 8.62 18.00 10.31 increasing 0.00 0.00 Increasing
2002.xlsx 10 0 17.38 26.77 17.41 8.62 18.00 10.31 increasing 0.00 0.00 Increasing
2002.xlsx 11 0 14.33 22.26 17.41 8.62 18.00 10.31 increasing 0.00 0.00 Increasing
2002.xlsx 12 0 11.25 17.04 17.41 8.62 18.00 10.31 increasing 0.00 0.00 Increasing
2002.xlsx 13 0 6.43 11.23 17.41 8.62 18.00 10.31 increasing 0.00 0.00 Increasing
2002.xlsx 14 0 11.62 14.08 17.41 8.62 18.00 10.31 increasing 0.00 0.00 Increasing
2002.xlsx 15 0.21 15.25 17.76 17.41 8.62 18.00 10.31 increasing 0.00 0.00 Increasing
2002.xlsx 16 0 9.59 14.46 17.41 8.62 18.00 10.31 increasing 0.00 0.00 Increasing
2002.xlsx 17 0 3.97 9.16 17.41 8.62 18.00 10.31 increasing 0.00 0.00 Increasing
2002.xlsx 18 0 0.74 5.15 17.41 8.62 18.00 10.31 increasing 0.00 0.00 Increasing
2002.xlsx 19 0 0.99 3.42 17.41 8.62 18.00 10.31 increasing 0.00 0.00 Increasing
2002.xlsx 20 0 4.12 5.17 17.41 8.62 18.00 10.31 increasing 0.00 0.00 Increasing
2002.xlsx 21 0 5.30 6.97 17.41 8.62 18.00 10.31 increasing 0.00 0.00 Increasing
2002.xlsx 22 0 6.28 9.62 17.41 8.62 18.00 10.31 increasing 0.00 0.00 Increasing
2002.xlsx 23 0 6.45 10.81 17.41 8.62 18.00 10.31 increasing 0.00 0.00 Increasing
2002.xlsx 24 0 5.49 9.92 17.41 8.62 18.00 10.31 increasing 0.00 0.00 Increasing
2002.xlsx 25 0 10.86 12.27 17.41 8.62 18.00 10.31 increasing 0.00 0.00 Increasing
2002.xlsx 26 0 9.23 11.58 17.41 8.62 18.00 10.31 increasing 0.00 0.00 Increasing
2002.xlsx 27 0 7.79 9.55 17.41 8.62 18.00 10.31 increasing 0.00 0.00 Increasing
2002.xlsx 28 0 6.33 7.31 17.41 8.62 18.00 10.31 increasing 0.00 0.00 Increasing
2002.xlsx 29 0 -0.68 1.54 17.41 8.62 18.00 10.31 increasing 0.00 0.00 Increasing
2002.xlsx 30 0 0.19 -0.10 17.41 8.62 18.00 10.31 increasing 0.00 0.00 Increasing
2002.xlsx 31 0 -1.50 -3.03 17.41 8.62 18.00 10.31 increasing 0.00 0.00 Increasing
2002.xlsx 32 0 -3.28 -6.47 17.41 8.62 18.00 10.31 increasing 0.00 0.00 Increasing
2002.xlsx 33 0 -0.37 -6.78 17.41 8.62 18.00 10.31 increasing 0.00 0.00 Increasing
2002.xlsx 34 0 2.04 -5.32 17.41 8.62 18.00 10.31 increasing 0.00 0.00 Increasing
2002.xlsx 35 0 3.53 -3.65 17.41 8.62 18.00 10.31 increasing 0.00 0.00 Increasing
2002.xlsx 36 0 2.98 -2.83 17.41 8.62 18.00 10.31 increasing 0.00 0.00 Increasing
2002.xlsx 37 0 1.55 -1.74 17.41 8.62 18.00 10.31 increasing 0.00 0.00 Increasing
2002.xlsx 38 0 2.49 0.37 17.41 8.62 18.00 10.31 increasing 0.00 0.00 Increasing
2002.xlsx 39 0 6.14 4.49 17.41 8.62 18.00 10.31 increasing 0.00 0.00 Increasing
2002.xlsx 40 0 10.37 8.42 17.41 8.62 18.00 10.31 increasing 0.00 0.00 Increasing
2002.xlsx 41 0 6.08 7.37 17.41 8.62 18.00 10.31 increasing 0.00 0.00 Increasing
2002.xlsx 42 0 8.24 7.81 17.41 8.62 18.00 10.31 increasing 0.00 0.00 Increasing
2002.xlsx 43 0 13.78 11.54 17.41 8.62 18.00 10.31 increasing 0.00 0.00 Increasing
2002.xlsx 44 0 36.40 33.55 17.41 8.62 18.00 10.31 increasing 0.00 0.00 Increasing
2002.xlsx 45 0 24.57 28.04 17.41 8.62 18.00 10.31 increasing 0.00 0.00 Increasing
2002.xlsx 46 0 8.65 14.97 17.41 8.62 18.00 10.31 increasing 0.00 0.00 Increasing
2002.xlsx 47 0 4.94 9.94 17.41 8.62 18.00 10.31 increasing 0.00 0.00 Increasing
2002.xlsx 48 0 2.78 7.13 17.41 8.62 18.00 10.31 increasing 0.00 0.00 Increasing
2002.xlsx 49 0 0.58 4.05 17.41 8.62 18.00 10.31 increasing 0.00 0.00 Increasing
2002.xlsx 50 0 -1.28 2.17 17.41 8.62 18.00 10.31 increasing 0.00 0.00 Increasing
2002.xlsx 51 0 1.66 3.59 17.41 8.62 18.00 10.31 increasing 0.00 0.00 Increasing
2002.xlsx 52 0 3.23 5.23 17.41 8.62 18.00 10.31 increasing 0.00 0.00 Increasing
2002.xlsx 53 0 5.98 7.09 17.41 8.62 18.00 10.31 increasing 0.00 0.00 Increasing
2002.xlsx 54 0 4.91 7.87 17.41 8.62 18.00 10.31 increasing 0.00 0.00 Increasing
2002.xlsx 55 0 4.69 8.31 17.41 8.62 18.00 10.31 increasing 0.00 0.00 Increasing
2002.xlsx 56 0 5.90 9.71 17.41 8.62 18.00 10.31 increasing 0.00 0.00 Increasing
2002.xlsx 57 0 5.35 9.90 17.41 8.62 18.00 10.31 increasing 0.00 0.00 Increasing
2002.xlsx 58 0 6.27 10.31 17.41 8.62 18.00 10.31 increasing 0.00 0.00 Increasing
2002.xlsx 59 0 6.66 10.85 17.41 8.62 18.00 10.31 increasing 0.00 0.00 Increasing
2002.xlsx 60 0 5.43 9.80 17.41 8.62 18.00 10.31 increasing 0.00 0.00 Increasing
2002.xlsx 61 0 5.14 8.97 17.41 8.62 18.00 10.31 increasing 0.00 0.00 Increasing
2002.xlsx 62 0 4.27 8.14 17.41 8.62 18.00 10.31 increasing 0.00 0.00 Increasing
2002.xlsx 63 0 4.06 7.44 17.41 8.62 18.00 10.31 increasing 0.00 0.00 Increasing
2002.xlsx 64 0 4.31 6.64 17.41 8.62 18.00 10.31 increasing 0.00 0.00 Increasing
2002.xlsx 65 0 3.32 5.03 17.41 8.62 18.00 10.31 increasing 0.00 0.00 Increasing
2002.xlsx 66 0 1.48 2.89 17.41 8.62 18.00 10.31 increasing 0.00 0.00 Increasing
2002.xlsx 67 0 1.78 2.11 17.41 8.62 18.00 10.31 increasing 0.00 0.00 Increasing
2003.xlsx 1 0 0.71 5.65 12.54 7.76 12.52 8.66 increasing 0.00 0.02 Increasing
2003.xlsx 2 0 -0.82 2.64 12.54 7.76 12.52 8.66 increasing 0.00 0.02 Increasing
2003.xlsx 3 0 0.61 2.90 12.54 7.76 12.52 8.66 increasing 0.00 0.02 Increasing
2003.xlsx 4 0 1.04 2.80 12.54 7.76 12.52 8.66 increasing 0.00 0.02 Increasing
2003.xlsx 5 0 1.87 3.38 12.54 7.76 12.52 8.66 increasing 0.00 0.02 Increasing
2003.xlsx 6 0 9.50 8.69 12.54 7.76 12.52 8.66 increasing 0.00 0.02 Increasing
2003.xlsx 7 0 11.46 14.23 12.54 7.76 12.52 8.66 increasing 0.00 0.02 Increasing
2003.xlsx 8 0 9.11 13.01 12.54 7.76 12.52 8.66 increasing 0.00 0.02 Increasing
2003.xlsx 9 0 7.27 11.40 12.54 7.76 12.52 8.66 increasing 0.00 0.02 Increasing
2003.xlsx 10 0 12.78 15.69 12.54 7.76 12.52 8.66 increasing 0.00 0.02 Increasing
2003.xlsx 11 0 6.34 12.05 12.54 7.76 12.52 8.66 increasing 0.00 0.02 Increasing
2003.xlsx 12 0 7.56 11.23 12.54 7.76 12.52 8.66 increasing 0.00 0.02 Increasing
2003.xlsx 13 0 17.92 19.60 12.54 7.76 12.52 8.66 increasing 0.00 0.02 Increasing
2003.xlsx 14 0 19.55 21.69 12.54 7.76 12.52 8.66 increasing 0.00 0.02 Increasing
2003.xlsx 15 0 16.56 20.51 12.54 7.76 12.52 8.66 increasing 0.00 0.02 Increasing
2003.xlsx 16 0 25.37 29.05 12.54 7.76 12.52 8.66 increasing 0.00 0.02 Increasing
2003.xlsx 17 0 9.80 18.19 12.54 7.76 12.52 8.66 increasing 0.00 0.02 Increasing
2003.xlsx 18 0 11.10 16.65 12.54 7.76 12.52 8.66 increasing 0.00 0.02 Increasing
2003.xlsx 19 0 4.60 11.27 12.54 7.76 12.52 8.66 increasing 0.00 0.02 Increasing
2003.xlsx 20 0 12.48 16.05 12.54 7.76 12.52 8.66 increasing 0.00 0.02 Increasing
2003.xlsx 21 0 15.12 19.10 12.54 7.76 12.52 8.66 increasing 0.00 0.02 Increasing
2003.xlsx 22 0 24.79 26.69 12.54 7.76 12.52 8.66 increasing 0.00 0.02 Increasing
2003.xlsx 23 0 15.82 21.66 12.54 7.76 12.52 8.66 increasing 0.00 0.02 Increasing
2003.xlsx 24 0 4.74 12.02 12.54 7.76 12.52 8.66 increasing 0.00 0.02 Increasing
2003.xlsx 25 0 1.73 7.82 12.54 7.76 12.52 8.66 increasing 0.00 0.02 Increasing
2003.xlsx 26 0 2.06 7.29 12.54 7.76 12.52 8.66 increasing 0.00 0.02 Increasing
2003.xlsx 27 0 4.10 7.77 12.54 7.76 12.52 8.66 increasing 0.00 0.02 Increasing
2003.xlsx 28 0 12.90 12.83 12.54 7.76 12.52 8.66 increasing 0.00 0.02 Increasing
2003.xlsx 29 0 19.88 20.48 12.54 7.76 12.52 8.66 increasing 0.00 0.02 Increasing
2003.xlsx 30 0 12.32 16.47 12.54 7.76 12.52 8.66 increasing 0.00 0.02 Increasing
2003.xlsx 31 0 2.88 8.88 12.54 7.76 12.52 8.66 increasing 0.00 0.02 Increasing
2003.xlsx 32 0 1.03 6.13 12.54 7.76 12.52 8.66 increasing 0.00 0.02 Increasing
2003.xlsx 33 0 2.43 5.87 12.54 7.76 12.52 8.66 increasing 0.00 0.02 Increasing
2003.xlsx 34 0 1.71 5.36 12.54 7.76 12.52 8.66 increasing 0.00 0.02 Increasing
2003.xlsx 35 0 22.92 21.46 12.54 7.76 12.52 8.66 increasing 0.00 0.02 Increasing
2003.xlsx 36 0 19.80 20.86 12.54 7.76 12.52 8.66 increasing 0.00 0.02 Increasing
2003.xlsx 37 0 22.78 23.51 12.54 7.76 12.52 8.66 increasing 0.00 0.02 Increasing
2003.xlsx 38 0 8.00 11.94 12.54 7.76 12.52 8.66 increasing 0.00 0.02 Increasing
2003.xlsx 39 0 1.38 4.59 12.54 7.76 12.52 8.66 increasing 0.00 0.02 Increasing
2003.xlsx 40 0 -0.47 1.42 12.54 7.76 12.52 8.66 increasing 0.00 0.02 Increasing
2003.xlsx 41 0 1.60 2.48 12.54 7.76 12.52 8.66 increasing 0.00 0.02 Increasing
2003.xlsx 42 0.80 3.11 3.40 12.54 7.76 12.52 8.66 increasing 0.00 0.02 Increasing
2003.xlsx 43 0.80 4.26 3.94 12.54 7.76 12.52 8.66 increasing 0.00 0.02 Increasing
2003.xlsx 44 0 4.76 3.16 12.54 7.76 12.52 8.66 increasing 0.00 0.02 Increasing
2003.xlsx 45 0 2.91 1.24 12.54 7.76 12.52 8.66 increasing 0.00 0.02 Increasing
2003.xlsx 46 0 2.22 0.07 12.54 7.76 12.52 8.66 increasing 0.00 0.02 Increasing
2003.xlsx 47 0 3.67 -0.13 12.54 7.76 12.52 8.66 increasing 0.00 0.02 Increasing
2003.xlsx 48 0 6.59 5.41 12.54 7.76 12.52 8.66 increasing 0.00 0.02 Increasing
2003.xlsx 49 0 8.19 6.94 12.54 7.76 12.52 8.66 increasing 0.00 0.02 Increasing
2003.xlsx 50 0 8.02 7.20 12.54 7.76 12.52 8.66 increasing 0.00 0.02 Increasing
2003.xlsx 51 0 5.32 6.26 12.54 7.76 12.52 8.66 increasing 0.00 0.02 Increasing
2003.xlsx 52 0 4.31 4.82 12.54 7.76 12.52 8.66 increasing 0.00 0.02 Increasing
2003.xlsx 53 0 2.55 1.90 12.54 7.76 12.52 8.66 increasing 0.00 0.02 Increasing
2003.xlsx 54 0 -1.58 -1.83 12.54 7.76 12.52 8.66 increasing 0.00 0.02 Increasing
2003.xlsx 55 0 0.73 -0.64 12.54 7.76 12.52 8.66 increasing 0.00 0.02 Increasing
2003.xlsx 56 0 2.33 2.04 12.54 7.76 12.52 8.66 increasing 0.00 0.02 Increasing
2003.xlsx 57 0 0.40 2.21 12.54 7.76 12.52 8.66 increasing 0.00 0.02 Increasing
2003.xlsx 58 0 -0.27 1.90 12.54 7.76 12.52 8.66 increasing 0.00 0.02 Increasing
2003.xlsx 59 0 1.37 2.27 12.54 7.76 12.52 8.66 increasing 0.00 0.02 Increasing
2003.xlsx 60 0 4.87 3.97 12.54 7.76 12.52 8.66 increasing 0.00 0.02 Increasing
2003.xlsx 61 0 6.77 4.93 12.54 7.76 12.52 8.66 increasing 0.00 0.02 Increasing
2003.xlsx 62 0 8.17 5.35 12.54 7.76 12.52 8.66 increasing 0.00 0.02 Increasing
2003.xlsx 63 0 8.39 5.99 12.54 7.76 12.52 8.66 increasing 0.00 0.02 Increasing
2003.xlsx 64 0 6.49 5.25 12.54 7.76 12.52 8.66 increasing 0.00 0.02 Increasing
2003.xlsx 65 0 4.69 5.04 12.54 7.76 12.52 8.66 increasing 0.00 0.02 Increasing
2003.xlsx 66 0 3.27 4.45 12.54 7.76 12.52 8.66 increasing 0.00 0.02 Increasing
2003.xlsx 67 0 2.96 5.34 12.54 7.76 12.52 8.66 increasing 0.00 0.02 Increasing
2004.xlsx 1 0 9.92 11.89 25.51 13.30 25.47 13.97 increasing 0.00 0.04 Increasing
2004.xlsx 2 0 13.30 15.10 25.51 13.30 25.47 13.97 increasing 0.00 0.04 Increasing
2004.xlsx 3 0 12.62 16.55 25.51 13.30 25.47 13.97 increasing 0.00 0.04 Increasing
2004.xlsx 4 0 12.81 16.05 25.51 13.30 25.47 13.97 increasing 0.00 0.04 Increasing
2004.xlsx 5 0 14.25 18.31 25.51 13.30 25.47 13.97 increasing 0.00 0.04 Increasing
2004.xlsx 6 0 41.39 44.28 25.51 13.30 25.47 13.97 increasing 0.00 0.04 Increasing
2004.xlsx 7 0 46.20 54.19 25.51 13.30 25.47 13.97 increasing 0.00 0.04 Increasing
2004.xlsx 8 0 56.20 65.50 25.51 13.30 25.47 13.97 increasing 0.00 0.04 Increasing
2004.xlsx 9 0 13.65 33.55 25.51 13.30 25.47 13.97 increasing 0.00 0.04 Increasing
2004.xlsx 10 0 5.10 17.97 25.51 13.30 25.47 13.97 increasing 0.00 0.04 Increasing
2004.xlsx 11 0 2.54 10.40 25.51 13.30 25.47 13.97 increasing 0.00 0.04 Increasing
2004.xlsx 12 0 2.27 7.71 25.51 13.30 25.47 13.97 increasing 0.00 0.04 Increasing
2004.xlsx 13 0 10.58 11.87 25.51 13.30 25.47 13.97 increasing 0.00 0.04 Increasing
2004.xlsx 14 0 27.84 26.32 25.51 13.30 25.47 13.97 increasing 0.00 0.04 Increasing
2004.xlsx 15 0 27.40 28.14 25.51 13.30 25.47 13.97 increasing 0.00 0.04 Increasing
2004.xlsx 16 0 35.46 36.77 25.51 13.30 25.47 13.97 increasing 0.00 0.04 Increasing
2004.xlsx 17 0 19.41 25.20 25.51 13.30 25.47 13.97 increasing 0.00 0.04 Increasing
2004.xlsx 18 0 8.70 14.05 25.51 13.30 25.47 13.97 increasing 0.00 0.04 Increasing
2004.xlsx 19 0 7.53 9.76 25.51 13.30 25.47 13.97 increasing 0.00 0.04 Increasing
2004.xlsx 20 0 7.66 7.12 25.51 13.30 25.47 13.97 increasing 0.00 0.04 Increasing
2004.xlsx 21 0 14.75 11.93 25.51 13.30 25.47 13.97 increasing 0.00 0.04 Increasing
2004.xlsx 22 0 6.67 5.98 25.51 13.30 25.47 13.97 increasing 0.00 0.04 Increasing
2004.xlsx 23 0 7.90 6.23 25.51 13.30 25.47 13.97 increasing 0.00 0.04 Increasing
2004.xlsx 24 0 5.45 6.69 25.51 13.30 25.47 13.97 increasing 0.00 0.04 Increasing
2004.xlsx 25 0 4.37 4.11 25.51 13.30 25.47 13.97 increasing 0.00 0.04 Increasing
2004.xlsx 26 0 4.36 3.12 25.51 13.30 25.47 13.97 increasing 0.00 0.04 Increasing
2004.xlsx 27 0 1.41 1.24 25.51 13.30 25.47 13.97 increasing 0.00 0.04 Increasing
2004.xlsx 28 0 5.09 2.99 25.51 13.30 25.47 13.97 increasing 0.00 0.04 Increasing
2004.xlsx 29 0 6.86 3.53 25.51 13.30 25.47 13.97 increasing 0.00 0.04 Increasing
2004.xlsx 30 0 5.89 1.89 25.51 13.30 25.47 13.97 increasing 0.00 0.04 Increasing
2004.xlsx 31 0 13.65 6.86 25.51 13.30 25.47 13.97 increasing 0.00 0.04 Increasing
2004.xlsx 32 0 10.31 5.42 25.51 13.30 25.47 13.97 increasing 0.00 0.04 Increasing
2004.xlsx 33 0 5.37 1.86 25.51 13.30 25.47 13.97 increasing 0.00 0.04 Increasing
2004.xlsx 34 0 12.14 6.46 25.51 13.30 25.47 13.97 increasing 0.00 0.04 Increasing
2004.xlsx 35 0 14.68 9.07 25.51 13.30 25.47 13.97 increasing 0.00 0.04 Increasing
2004.xlsx 36 0 4.74 4.05 25.51 13.30 25.47 13.97 increasing 0.00 0.04 Increasing
2004.xlsx 37 0 2.62 2.72 25.51 13.30 25.47 13.97 increasing 0.00 0.04 Increasing
2004.xlsx 38 0 2.89 3.50 25.51 13.30 25.47 13.97 increasing 0.00 0.04 Increasing
2004.xlsx 39 0.20 4.46 2.12 25.51 13.30 25.47 13.97 increasing 0.00 0.04 Increasing
2004.xlsx 40 1 8.71 3.29 25.51 13.30 25.47 13.97 increasing 0.00 0.04 Increasing
2004.xlsx 41 0 13.66 8.63 25.51 13.30 25.47 13.97 increasing 0.00 0.04 Increasing
2004.xlsx 42 0 5.83 4.62 25.51 13.30 25.47 13.97 increasing 0.00 0.04 Increasing
2004.xlsx 43 0 4.51 3.40 25.51 13.30 25.47 13.97 increasing 0.00 0.04 Increasing
2004.xlsx 44 0 1.75 2.23 25.51 13.30 25.47 13.97 increasing 0.00 0.04 Increasing
2004.xlsx 45 0 3.03 3.42 25.51 13.30 25.47 13.97 increasing 0.00 0.04 Increasing
2004.xlsx 46 0 8.07 7.91 25.51 13.30 25.47 13.97 increasing 0.00 0.04 Increasing
2004.xlsx 47 0 8.56 9.25 25.51 13.30 25.47 13.97 increasing 0.00 0.04 Increasing
2004.xlsx 48 0 4.79 7.40 25.51 13.30 25.47 13.97 increasing 0.00 0.04 Increasing
2004.xlsx 49 0 4.33 6.50 25.51 13.30 25.47 13.97 increasing 0.00 0.04 Increasing
2004.xlsx 50 0 7.20 8.32 25.51 13.30 25.47 13.97 increasing 0.00 0.04 Increasing
2004.xlsx 51 0 8.05 9.90 25.51 13.30 25.47 13.97 increasing 0.00 0.04 Increasing
2004.xlsx 52 0 10.23 10.76 25.51 13.30 25.47 13.97 increasing 0.00 0.04 Increasing
2004.xlsx 53 0 4.96 6.70 25.51 13.30 25.47 13.97 increasing 0.00 0.04 Increasing
2004.xlsx 54 0 3.90 4.61 25.51 13.30 25.47 13.97 increasing 0.00 0.04 Increasing
2004.xlsx 55 0 4.35 5.02 25.51 13.30 25.47 13.97 increasing 0.00 0.04 Increasing
2004.xlsx 56 0 2.84 4.32 25.51 13.30 25.47 13.97 increasing 0.00 0.04 Increasing
2004.xlsx 57 0 0.67 3.32 25.51 13.30 25.47 13.97 increasing 0.00 0.04 Increasing
2004.xlsx 58 0 -0.84 1.49 25.51 13.30 25.47 13.97 increasing 0.00 0.04 Increasing
2004.xlsx 59 0 0.85 1.23 25.51 13.30 25.47 13.97 increasing 0.00 0.04 Increasing
2004.xlsx 60 0 1.80 2.11 25.51 13.30 25.47 13.97 increasing 0.00 0.04 Increasing
2004.xlsx 61 0 4.03 3.12 25.51 13.30 25.47 13.97 increasing 0.00 0.04 Increasing
2004.xlsx 62 0 8.28 6.61 25.51 13.30 25.47 13.97 increasing 0.00 0.04 Increasing
2004.xlsx 63 0 5.46 6.09 25.51 13.30 25.47 13.97 increasing 0.00 0.04 Increasing
2004.xlsx 64 0 2.88 4.96 25.51 13.30 25.47 13.97 increasing 0.00 0.04 Increasing
2004.xlsx 65 0 8.86 8.14 25.51 13.30 25.47 13.97 increasing 0.00 0.04 Increasing
2004.xlsx 66 0 8.09 7.89 25.51 13.30 25.47 13.97 increasing 0.00 0.04 Increasing
2004.xlsx 67 0 1.84 3.84 25.51 13.30 25.47 13.97 increasing 0.00 0.04 Increasing
2004.xlsx 68 0 2.24 3.32 25.51 13.30 25.47 13.97 increasing 0.00 0.04 Increasing
2005.xlsx 1 0 24.89 21.87 37.31 16.60 37.43 17.61 increasing 0.00 0.05 Increasing
2005.xlsx 2 0 15.56 18.88 37.31 16.60 37.43 17.61 increasing 0.00 0.05 Increasing
2005.xlsx 3 14.30 13.79 18.47 37.31 16.60 37.43 17.61 increasing 0.00 0.05 Increasing
2005.xlsx 4 0 4.35 12.18 37.31 16.60 37.43 17.61 increasing 0.00 0.05 Increasing
2005.xlsx 5 0 0.45 8.08 37.31 16.60 37.43 17.61 increasing 0.00 0.05 Increasing
2005.xlsx 6 0 0.76 6.69 37.31 16.60 37.43 17.61 increasing 0.00 0.05 Increasing
2005.xlsx 7 0 3.51 7.88 37.31 16.60 37.43 17.61 increasing 0.00 0.05 Increasing
2005.xlsx 8 0 0.97 5.86 37.31 16.60 37.43 17.61 increasing 0.00 0.05 Increasing
2005.xlsx 9 0 4.08 7.37 37.31 16.60 37.43 17.61 increasing 0.00 0.05 Increasing
2005.xlsx 10 0 10.50 12.37 37.31 16.60 37.43 17.61 increasing 0.00 0.05 Increasing
2005.xlsx 11 0 13.31 15.10 37.31 16.60 37.43 17.61 increasing 0.00 0.05 Increasing
2005.xlsx 12 0 21.98 23.73 37.31 16.60 37.43 17.61 increasing 0.00 0.05 Increasing
2005.xlsx 13 0 54.99 54.11 37.31 16.60 37.43 17.61 increasing 0.00 0.05 Increasing
2005.xlsx 14 0 41.26 50.47 37.31 16.60 37.43 17.61 increasing 0.00 0.05 Increasing
2005.xlsx 15 0 76.45 80.86 37.31 16.60 37.43 17.61 increasing 0.00 0.05 Increasing
2005.xlsx 16 0 52.01 68.08 37.31 16.60 37.43 17.61 increasing 0.00 0.05 Increasing
2005.xlsx 17 0 21.26 39.44 37.31 16.60 37.43 17.61 increasing 0.00 0.05 Increasing
2005.xlsx 18 0 10.71 22.04 37.31 16.60 37.43 17.61 increasing 0.00 0.05 Increasing
2005.xlsx 19 0 8.44 13.96 37.31 16.60 37.43 17.61 increasing 0.00 0.05 Increasing
2005.xlsx 20 0 8.90 10.86 37.31 16.60 37.43 17.61 increasing 0.00 0.05 Increasing
2005.xlsx 21 0 5.52 7.02 37.31 16.60 37.43 17.61 increasing 0.00 0.05 Increasing
2005.xlsx 22 0 3.63 4.33 37.31 16.60 37.43 17.61 increasing 0.00 0.05 Increasing
2005.xlsx 23 0 2.62 4.45 37.31 16.60 37.43 17.61 increasing 0.00 0.05 Increasing
2005.xlsx 24 0 0.62 3.64 37.31 16.60 37.43 17.61 increasing 0.00 0.05 Increasing
2005.xlsx 25 0 1.03 4.69 37.31 16.60 37.43 17.61 increasing 0.00 0.05 Increasing
2005.xlsx 26 0 4.19 8.12 37.31 16.60 37.43 17.61 increasing 0.00 0.05 Increasing
2005.xlsx 27 0 10.13 12.44 37.31 16.60 37.43 17.61 increasing 0.00 0.05 Increasing
2005.xlsx 28 0 19.68 20.57 37.31 16.60 37.43 17.61 increasing 0.00 0.05 Increasing
2005.xlsx 29 0 50.33 48.95 37.31 16.60 37.43 17.61 increasing 0.00 0.05 Increasing
2005.xlsx 30 0 27.53 36.73 37.31 16.60 37.43 17.61 increasing 0.00 0.05 Increasing
2005.xlsx 31 0 36.56 44.02 37.31 16.60 37.43 17.61 increasing 0.00 0.05 Increasing
2005.xlsx 32 0 20.08 29.81 37.31 16.60 37.43 17.61 increasing 0.00 0.05 Increasing
2005.xlsx 33 0 15.75 21.73 37.31 16.60 37.43 17.61 increasing 0.00 0.05 Increasing
2005.xlsx 34 0 11.79 15.32 37.31 16.60 37.43 17.61 increasing 0.00 0.05 Increasing
2005.xlsx 35 0 5.60 6.60 37.31 16.60 37.43 17.61 increasing 0.00 0.05 Increasing
2005.xlsx 36 0 2.59 0.24 37.31 16.60 37.43 17.61 increasing 0.00 0.05 Increasing
2005.xlsx 37 0 -0.97 -5.47 37.31 16.60 37.43 17.61 increasing 0.00 0.05 Increasing
2005.xlsx 38 2.80 -4.49 -10.44 37.31 16.60 37.43 17.61 increasing 0.00 0.05 Increasing
2005.xlsx 39 12.60 -0.98 -10.50 37.31 16.60 37.43 17.61 increasing 0.00 0.05 Increasing
2005.xlsx 40 0 5.34 -7.77 37.31 16.60 37.43 17.61 increasing 0.00 0.05 Increasing
2005.xlsx 41 0 36.40 20.50 37.31 16.60 37.43 17.61 increasing 0.00 0.05 Increasing
2005.xlsx 42 0 11.10 5.26 37.31 16.60 37.43 17.61 increasing 0.00 0.05 Increasing
2005.xlsx 43 0 4.37 0.15 37.31 16.60 37.43 17.61 increasing 0.00 0.05 Increasing
2005.xlsx 44 0 2.07 -0.46 37.31 16.60 37.43 17.61 increasing 0.00 0.05 Increasing
2005.xlsx 45 0 0.57 2.80 37.31 16.60 37.43 17.61 increasing 0.00 0.05 Increasing
2005.xlsx 46 0 5.94 7.21 37.31 16.60 37.43 17.61 increasing 0.00 0.05 Increasing
2005.xlsx 47 0 28.83 26.38 37.31 16.60 37.43 17.61 increasing 0.00 0.05 Increasing
2005.xlsx 48 0 22.39 22.51 37.31 16.60 37.43 17.61 increasing 0.00 0.05 Increasing
2005.xlsx 49 0 18.82 19.42 37.31 16.60 37.43 17.61 increasing 0.00 0.05 Increasing
2005.xlsx 50 0 10.75 11.64 37.31 16.60 37.43 17.61 increasing 0.00 0.05 Increasing
2005.xlsx 51 0 7.53 6.65 37.31 16.60 37.43 17.61 increasing 0.00 0.05 Increasing
2005.xlsx 52 0 4.96 3.64 37.31 16.60 37.43 17.61 increasing 0.00 0.05 Increasing
2005.xlsx 53 0 4.42 2.16 37.31 16.60 37.43 17.61 increasing 0.00 0.05 Increasing
2005.xlsx 54 0 6.46 2.21 37.31 16.60 37.43 17.61 increasing 0.00 0.05 Increasing
2005.xlsx 55 0 11.19 5.04 37.31 16.60 37.43 17.61 increasing 0.00 0.05 Increasing
2005.xlsx 56 0 8.68 3.09 37.31 16.60 37.43 17.61 increasing 0.00 0.05 Increasing
2005.xlsx 57 0 3.54 -0.87 37.31 16.60 37.43 17.61 increasing 0.00 0.05 Increasing
2005.xlsx 58 0 2.22 -2.09 37.31 16.60 37.43 17.61 increasing 0.00 0.05 Increasing
2005.xlsx 59 0 3.34 2.05 37.31 16.60 37.43 17.61 increasing 0.00 0.05 Increasing
2005.xlsx 60 0 1.09 2.34 37.31 16.60 37.43 17.61 increasing 0.00 0.05 Increasing
2005.xlsx 61 0 1.76 4.62 37.31 16.60 37.43 17.61 increasing 0.00 0.05 Increasing
2005.xlsx 62 0 1.96 4.99 37.31 16.60 37.43 17.61 increasing 0.00 0.05 Increasing
2005.xlsx 63 51.80 1.82 5.14 37.31 16.60 37.43 17.61 increasing 0.00 0.05 Increasing
2005.xlsx 64 61.40 -0.20 4.11 37.31 16.60 37.43 17.61 increasing 0.00 0.05 Increasing
2005.xlsx 65 68.20 3.80 5.26 37.31 16.60 37.43 17.61 increasing 0.00 0.05 Increasing
2005.xlsx 66 54.40 3.28 3.86 37.31 16.60 37.43 17.61 increasing 0.00 0.05 Increasing
2005.xlsx 67 2.90 4.09 3.53 37.31 16.60 37.43 17.61 increasing 0.00 0.05 Increasing
2006.xlsx 1 0 10.34 16.27 29.48 16.11 29.63 16.49 increasing 0.00 0.04 Increasing
2006.xlsx 2 0 30.18 32.22 29.48 16.11 29.63 16.49 increasing 0.00 0.04 Increasing
2006.xlsx 3 0 45.51 49.68 29.48 16.11 29.63 16.49 increasing 0.00 0.04 Increasing
2006.xlsx 4 0 34.32 44.24 29.48 16.11 29.63 16.49 increasing 0.00 0.04 Increasing
2006.xlsx 5 0 27.09 38.03 29.48 16.11 29.63 16.49 increasing 0.00 0.04 Increasing
2006.xlsx 6 0 7.32 18.88 29.48 16.11 29.63 16.49 increasing 0.00 0.04 Increasing
2006.xlsx 7 0 0.51 8.36 29.48 16.11 29.63 16.49 increasing 0.00 0.04 Increasing
2006.xlsx 8 0 -0.73 3.33 29.48 16.11 29.63 16.49 increasing 0.00 0.04 Increasing
2006.xlsx 9 0 8.46 9.02 29.48 16.11 29.63 16.49 increasing 0.00 0.04 Increasing
2006.xlsx 10 0 12.27 12.60 29.48 16.11 29.63 16.49 increasing 0.00 0.04 Increasing
2006.xlsx 11 0 11.57 12.90 29.48 16.11 29.63 16.49 increasing 0.00 0.04 Increasing
2006.xlsx 12 0 8.63 10.82 29.48 16.11 29.63 16.49 increasing 0.00 0.04 Increasing
2006.xlsx 13 0 3.68 6.13 29.48 16.11 29.63 16.49 increasing 0.00 0.04 Increasing
2006.xlsx 14 0 11.58 11.97 29.48 16.11 29.63 16.49 increasing 0.00 0.04 Increasing
2006.xlsx 15 0 6.14 9.80 29.48 16.11 29.63 16.49 increasing 0.00 0.04 Increasing
2006.xlsx 16 0 6.14 8.96 29.48 16.11 29.63 16.49 increasing 0.00 0.04 Increasing
2006.xlsx 17 0 4.64 7.78 29.48 16.11 29.63 16.49 increasing 0.00 0.04 Increasing
2006.xlsx 18 0 11.16 13.23 29.48 16.11 29.63 16.49 increasing 0.00 0.04 Increasing
2006.xlsx 19 0 12.55 13.80 29.48 16.11 29.63 16.49 increasing 0.00 0.04 Increasing
2006.xlsx 20 0 38.02 35.53 29.48 16.11 29.63 16.49 increasing 0.00 0.04 Increasing
2006.xlsx 21 0 42.59 44.05 29.48 16.11 29.63 16.49 increasing 0.00 0.04 Increasing
2006.xlsx 22 0 16.51 23.38 29.48 16.11 29.63 16.49 increasing 0.00 0.04 Increasing
2006.xlsx 23 0 16.13 18.85 29.48 16.11 29.63 16.49 increasing 0.00 0.04 Increasing
2006.xlsx 24 0 10.83 10.88 29.48 16.11 29.63 16.49 increasing 0.00 0.04 Increasing
2006.xlsx 25 0 14.44 11.47 29.48 16.11 29.63 16.49 increasing 0.00 0.04 Increasing
2006.xlsx 26 0 7.42 4.05 29.48 16.11 29.63 16.49 increasing 0.00 0.04 Increasing
2006.xlsx 27 0 4.02 -0.71 29.48 16.11 29.63 16.49 increasing 0.00 0.04 Increasing
2006.xlsx 28 0 34.44 24.93 29.48 16.11 29.63 16.49 increasing 0.00 0.04 Increasing
2006.xlsx 29 0 12.56 10.36 29.48 16.11 29.63 16.49 increasing 0.00 0.04 Increasing
2006.xlsx 30 0 3.37 1.19 29.48 16.11 29.63 16.49 increasing 0.00 0.04 Increasing
2006.xlsx 31 0 2.07 -1.89 29.48 16.11 29.63 16.49 increasing 0.00 0.04 Increasing
2006.xlsx 32 0 4.39 0.66 29.48 16.11 29.63 16.49 increasing 0.00 0.04 Increasing
2006.xlsx 33 0 5.31 3.84 29.48 16.11 29.63 16.49 increasing 0.00 0.04 Increasing
2006.xlsx 34 3.20 7.67 6.86 29.48 16.11 29.63 16.49 increasing 0.00 0.04 Increasing
2006.xlsx 35 0 6.02 7.94 29.48 16.11 29.63 16.49 increasing 0.00 0.04 Increasing
2006.xlsx 36 0 5.13 6.59 29.48 16.11 29.63 16.49 increasing 0.00 0.04 Increasing
2006.xlsx 37 0 5.96 6.59 29.48 16.11 29.63 16.49 increasing 0.00 0.04 Increasing
2006.xlsx 38 0 4.54 6.19 29.48 16.11 29.63 16.49 increasing 0.00 0.04 Increasing
2006.xlsx 39 0 4.47 6.64 29.48 16.11 29.63 16.49 increasing 0.00 0.04 Increasing
2006.xlsx 40 0 5.06 6.46 29.48 16.11 29.63 16.49 increasing 0.00 0.04 Increasing
2006.xlsx 41 16.80 3.54 3.38 29.48 16.11 29.63 16.49 increasing 0.00 0.04 Increasing
2006.xlsx 42 0 3.72 1.62 29.48 16.11 29.63 16.49 increasing 0.00 0.04 Increasing
2006.xlsx 43 0 2.58 0.81 29.48 16.11 29.63 16.49 increasing 0.00 0.04 Increasing
2006.xlsx 44 0 2.38 -0.42 29.48 16.11 29.63 16.49 increasing 0.00 0.04 Increasing
2006.xlsx 45 0 4.43 -0.53 29.48 16.11 29.63 16.49 increasing 0.00 0.04 Increasing
2006.xlsx 46 0 3.73 -1.02 29.48 16.11 29.63 16.49 increasing 0.00 0.04 Increasing
2006.xlsx 47 0 25.70 17.71 29.48 16.11 29.63 16.49 increasing 0.00 0.04 Increasing
2006.xlsx 48 0 24.93 19.38 29.48 16.11 29.63 16.49 increasing 0.00 0.04 Increasing
2006.xlsx 49 0 35.03 30.70 29.48 16.11 29.63 16.49 increasing 0.00 0.04 Increasing
2006.xlsx 50 0 12.22 15.42 29.48 16.11 29.63 16.49 increasing 0.00 0.04 Increasing
2006.xlsx 51 0 4.12 7.70 29.48 16.11 29.63 16.49 increasing 0.00 0.04 Increasing
2006.xlsx 52 0 2.38 4.10 29.48 16.11 29.63 16.49 increasing 0.00 0.04 Increasing
2006.xlsx 53 0 2.67 3.62 29.48 16.11 29.63 16.49 increasing 0.00 0.04 Increasing
2006.xlsx 54 0 1.78 2.76 29.48 16.11 29.63 16.49 increasing 0.00 0.04 Increasing
2006.xlsx 55 0 3.82 4.65 29.48 16.11 29.63 16.49 increasing 0.00 0.04 Increasing
2006.xlsx 56 0 5.75 6.25 29.48 16.11 29.63 16.49 increasing 0.00 0.04 Increasing
2006.xlsx 57 0 5.22 6.43 29.48 16.11 29.63 16.49 increasing 0.00 0.04 Increasing
2006.xlsx 58 0 6.30 8.33 29.48 16.11 29.63 16.49 increasing 0.00 0.04 Increasing
2006.xlsx 59 0 6.44 7.77 29.48 16.11 29.63 16.49 increasing 0.00 0.04 Increasing
2006.xlsx 60 0 6.38 7.10 29.48 16.11 29.63 16.49 increasing 0.00 0.04 Increasing
2006.xlsx 61 0 2.36 4.41 29.48 16.11 29.63 16.49 increasing 0.00 0.04 Increasing
2006.xlsx 62 0 1.83 3.99 29.48 16.11 29.63 16.49 increasing 0.00 0.04 Increasing
2006.xlsx 63 0 -0.30 2.85 29.48 16.11 29.63 16.49 increasing 0.00 0.04 Increasing
2006.xlsx 64 0 -0.13 2.79 29.48 16.11 29.63 16.49 increasing 0.00 0.04 Increasing
2006.xlsx 65 0 -0.08 2.43 29.48 16.11 29.63 16.49 increasing 0.00 0.04 Increasing
2006.xlsx 66 0 0.21 2.19 29.48 16.11 29.63 16.49 increasing 0.00 0.04 Increasing
2006.xlsx 67 0 -1.51 0.91 29.48 16.11 29.63 16.49 increasing 0.00 0.04 Increasing
2007.xlsx 1 0 79.59 82.58 20.68 10.49 21.09 12.66 increasing 0.00 0.04 Increasing
2007.xlsx 2 0 32.53 53.31 20.68 10.49 21.09 12.66 increasing 0.00 0.04 Increasing
2007.xlsx 3 0 25.78 41.04 20.68 10.49 21.09 12.66 increasing 0.00 0.04 Increasing
2007.xlsx 4 0 23.55 33.45 20.68 10.49 21.09 12.66 increasing 0.00 0.04 Increasing
2007.xlsx 5 0 6.55 17.37 20.68 10.49 21.09 12.66 increasing 0.00 0.04 Increasing
2007.xlsx 6 0 2.24 8.78 20.68 10.49 21.09 12.66 increasing 0.00 0.04 Increasing
2007.xlsx 7 0 5.18 7.87 20.68 10.49 21.09 12.66 increasing 0.00 0.04 Increasing
2007.xlsx 8 0 8.43 10.32 20.68 10.49 21.09 12.66 increasing 0.00 0.04 Increasing
2007.xlsx 9 0 7.98 9.80 20.68 10.49 21.09 12.66 increasing 0.00 0.04 Increasing
2007.xlsx 10 0 6.63 8.85 20.68 10.49 21.09 12.66 increasing 0.00 0.04 Increasing
2007.xlsx 11 0 19.07 20.08 20.68 10.49 21.09 12.66 increasing 0.00 0.04 Increasing
2007.xlsx 12 2 19.17 23.24 20.68 10.49 21.09 12.66 increasing 0.00 0.04 Increasing
2007.xlsx 13 6 7.97 14.78 20.68 10.49 21.09 12.66 increasing 0.00 0.04 Increasing
2007.xlsx 14 0 4.41 10.41 20.68 10.49 21.09 12.66 increasing 0.00 0.04 Increasing
2007.xlsx 15 0 3.93 8.59 20.68 10.49 21.09 12.66 increasing 0.00 0.04 Increasing
2007.xlsx 16 0 2.50 6.51 20.68 10.49 21.09 12.66 increasing 0.00 0.04 Increasing
2007.xlsx 17 0 0.91 4.45 20.68 10.49 21.09 12.66 increasing 0.00 0.04 Increasing
2007.xlsx 18 0 3.22 4.70 20.68 10.49 21.09 12.66 increasing 0.00 0.04 Increasing
2007.xlsx 19 23.60 4.90 4.69 20.68 10.49 21.09 12.66 increasing 0.00 0.04 Increasing
2007.xlsx 20 0 4.59 3.07 20.68 10.49 21.09 12.66 increasing 0.00 0.04 Increasing
2007.xlsx 21 0 0.95 -0.50 20.68 10.49 21.09 12.66 increasing 0.00 0.04 Increasing
2007.xlsx 22 0 -1.27 -1.03 20.68 10.49 21.09 12.66 increasing 0.00 0.04 Increasing
2007.xlsx 23 0 -0.32 -2.76 20.68 10.49 21.09 12.66 increasing 0.00 0.04 Increasing
2007.xlsx 24 0 2.06 -3.42 20.68 10.49 21.09 12.66 increasing 0.00 0.04 Increasing
2007.xlsx 25 0 6.22 -1.54 20.68 10.49 21.09 12.66 increasing 0.00 0.04 Increasing
2007.xlsx 26 0 17.61 5.63 20.68 10.49 21.09 12.66 increasing 0.00 0.04 Increasing
2007.xlsx 27 0 19.77 8.48 20.68 10.49 21.09 12.66 increasing 0.00 0.04 Increasing
2007.xlsx 28 0 16.58 8.20 20.68 10.49 21.09 12.66 increasing 0.00 0.04 Increasing
2007.xlsx 29 0 6.87 2.18 20.68 10.49 21.09 12.66 increasing 0.00 0.04 Increasing
2007.xlsx 30 0 2.46 2.18 20.68 10.49 21.09 12.66 increasing 0.00 0.04 Increasing
2007.xlsx 31 0 0.56 4.78 20.68 10.49 21.09 12.66 increasing 0.00 0.04 Increasing
2007.xlsx 32 0 -0.20 4.98 20.68 10.49 21.09 12.66 increasing 0.00 0.04 Increasing
2007.xlsx 33 0 -0.06 5.05 20.68 10.49 21.09 12.66 increasing 0.00 0.04 Increasing
2007.xlsx 34 0 4.66 6.90 20.68 10.49 21.09 12.66 increasing 0.00 0.04 Increasing
2007.xlsx 35 0 6.41 8.44 20.68 10.49 21.09 12.66 increasing 0.00 0.04 Increasing
2007.xlsx 36 0 12.64 13.64 20.68 10.49 21.09 12.66 increasing 0.00 0.04 Increasing
2007.xlsx 37 0 6.37 10.12 20.68 10.49 21.09 12.66 increasing 0.00 0.04 Increasing
2007.xlsx 38 0 5.25 8.74 20.68 10.49 21.09 12.66 increasing 0.00 0.04 Increasing
2007.xlsx 39 0 5.38 9.45 20.68 10.49 21.09 12.66 increasing 0.00 0.04 Increasing
2007.xlsx 40 0 7.80 12.12 20.68 10.49 21.09 12.66 increasing 0.00 0.04 Increasing
2007.xlsx 41 0 6.77 11.98 20.68 10.49 21.09 12.66 increasing 0.00 0.04 Increasing
2007.xlsx 42 0 7.86 12.82 20.68 10.49 21.09 12.66 increasing 0.00 0.04 Increasing
2007.xlsx 43 0 8.26 13.16 20.68 10.49 21.09 12.66 increasing 0.00 0.04 Increasing
2007.xlsx 44 0 9.58 14.95 20.68 10.49 21.09 12.66 increasing 0.00 0.04 Increasing
2007.xlsx 45 0 4.16 11.01 20.68 10.49 21.09 12.66 increasing 0.00 0.04 Increasing
2007.xlsx 46 0 3.90 10.17 20.68 10.49 21.09 12.66 increasing 0.00 0.04 Increasing
2007.xlsx 47 0 2.95 8.83 20.68 10.49 21.09 12.66 increasing 0.00 0.04 Increasing
2007.xlsx 48 0 3.12 8.87 20.68 10.49 21.09 12.66 increasing 0.00 0.04 Increasing
2007.xlsx 49 0 6.47 9.77 20.68 10.49 21.09 12.66 increasing 0.00 0.04 Increasing
2007.xlsx 50 0 11.32 11.95 20.68 10.49 21.09 12.66 increasing 0.00 0.04 Increasing
2007.xlsx 51 0 41.08 38.06 20.68 10.49 21.09 12.66 increasing 0.00 0.04 Increasing
2007.xlsx 52 0 15.82 22.61 20.68 10.49 21.09 12.66 increasing 0.00 0.04 Increasing
2007.xlsx 53 0 5.65 12.36 20.68 10.49 21.09 12.66 increasing 0.00 0.04 Increasing
2007.xlsx 54 0 2.97 8.50 20.68 10.49 21.09 12.66 increasing 0.00 0.04 Increasing
2007.xlsx 55 0 33.40 33.82 20.68 10.49 21.09 12.66 increasing 0.00 0.04 Increasing
2007.xlsx 56 0 36.97 40.77 20.68 10.49 21.09 12.66 increasing 0.00 0.04 Increasing
2007.xlsx 57 0 14.88 24.27 20.68 10.49 21.09 12.66 increasing 0.00 0.04 Increasing
2007.xlsx 58 0 8.21 15.14 20.68 10.49 21.09 12.66 increasing 0.00 0.04 Increasing
2007.xlsx 59 0 3.14 8.63 20.68 10.49 21.09 12.66 increasing 0.00 0.04 Increasing
2007.xlsx 60 0 -0.49 4.41 20.68 10.49 21.09 12.66 increasing 0.00 0.04 Increasing
2007.xlsx 61 0 -1.35 2.75 20.68 10.49 21.09 12.66 increasing 0.00 0.04 Increasing
2007.xlsx 62 0 1.13 2.76 20.68 10.49 21.09 12.66 increasing 0.00 0.04 Increasing
2007.xlsx 63 0 1.19 3.77 20.68 10.49 21.09 12.66 increasing 0.00 0.04 Increasing
2007.xlsx 64 0 3.66 5.56 20.68 10.49 21.09 12.66 increasing 0.00 0.04 Increasing
2007.xlsx 65 0 2.62 4.97 20.68 10.49 21.09 12.66 increasing 0.00 0.04 Increasing
2007.xlsx 66 0 3.63 5.19 20.68 10.49 21.09 12.66 increasing 0.00 0.04 Increasing
2007.xlsx 67 0 3.60 4.87 20.68 10.49 21.09 12.66 increasing 0.00 0.04 Increasing
2008.xlsx 1 0 8.38 17.83 36.27 14.37 35.96 17.05 increasing 0.00 0.03 Increasing
2008.xlsx 2 0 4.78 13.70 36.27 14.37 35.96 17.05 increasing 0.00 0.03 Increasing
2008.xlsx 3 0 6.32 13.43 36.27 14.37 35.96 17.05 increasing 0.00 0.03 Increasing
2008.xlsx 4 0 3.31 10.94 36.27 14.37 35.96 17.05 increasing 0.00 0.03 Increasing
2008.xlsx 5 0 -2.05 7.00 36.27 14.37 35.96 17.05 increasing 0.00 0.03 Increasing
2008.xlsx 6 0 -1.88 5.43 36.27 14.37 35.96 17.05 increasing 0.00 0.03 Increasing
2008.xlsx 7 0 1.90 6.57 36.27 14.37 35.96 17.05 increasing 0.00 0.03 Increasing
2008.xlsx 8 0 -0.14 5.63 36.27 14.37 35.96 17.05 increasing 0.00 0.03 Increasing
2008.xlsx 9 0 -0.41 4.53 36.27 14.37 35.96 17.05 increasing 0.00 0.03 Increasing
2008.xlsx 10 1.50 1.04 4.61 36.27 14.37 35.96 17.05 increasing 0.00 0.03 Increasing
2008.xlsx 11 32.20 -0.88 2.86 36.27 14.37 35.96 17.05 increasing 0.00 0.03 Increasing
2008.xlsx 12 3.40 -1.18 1.05 36.27 14.37 35.96 17.05 increasing 0.00 0.03 Increasing
2008.xlsx 13 0 3.10 2.60 36.27 14.37 35.96 17.05 increasing 0.00 0.03 Increasing
2008.xlsx 14 0 3.86 2.77 36.27 14.37 35.96 17.05 increasing 0.00 0.03 Increasing
2008.xlsx 15 0 3.09 1.73 36.27 14.37 35.96 17.05 increasing 0.00 0.03 Increasing
2008.xlsx 16 0 4.88 1.86 36.27 14.37 35.96 17.05 increasing 0.00 0.03 Increasing
2008.xlsx 17 0 3.59 0.77 36.27 14.37 35.96 17.05 increasing 0.00 0.03 Increasing
2008.xlsx 18 0 6.05 1.86 36.27 14.37 35.96 17.05 increasing 0.00 0.03 Increasing
2008.xlsx 19 0 4.35 0.96 36.27 14.37 35.96 17.05 increasing 0.00 0.03 Increasing
2008.xlsx 20 0 4.16 1.80 36.27 14.37 35.96 17.05 increasing 0.00 0.03 Increasing
2008.xlsx 21 0 5.35 3.06 36.27 14.37 35.96 17.05 increasing 0.00 0.03 Increasing
2008.xlsx 22 0 2.00 1.25 36.27 14.37 35.96 17.05 increasing 0.00 0.03 Increasing
2008.xlsx 23 0 -0.05 -0.89 36.27 14.37 35.96 17.05 increasing 0.00 0.03 Increasing
2008.xlsx 24 0 0.51 -1.57 36.27 14.37 35.96 17.05 increasing 0.00 0.03 Increasing
2008.xlsx 25 0 5.26 1.52 36.27 14.37 35.96 17.05 increasing 0.00 0.03 Increasing
2008.xlsx 26 0 5.02 3.29 36.27 14.37 35.96 17.05 increasing 0.00 0.03 Increasing
2008.xlsx 27 0 15.38 12.03 36.27 14.37 35.96 17.05 increasing 0.00 0.03 Increasing
2008.xlsx 28 0 16.43 18.69 36.27 14.37 35.96 17.05 increasing 0.00 0.03 Increasing
2008.xlsx 29 0 10.61 16.36 36.27 14.37 35.96 17.05 increasing 0.00 0.03 Increasing
2008.xlsx 30 0 34.94 38.00 36.27 14.37 35.96 17.05 increasing 0.00 0.03 Increasing
2008.xlsx 31 101.20 21.76 32.31 36.27 14.37 35.96 17.05 increasing 0.00 0.03 Increasing
2008.xlsx 32 13.60 36.76 44.95 36.27 14.37 35.96 17.05 increasing 0.00 0.03 Increasing
2008.xlsx 33 0 52.83 61.19 36.27 14.37 35.96 17.05 increasing 0.00 0.03 Increasing
2008.xlsx 34 0 93.42 98.25 36.27 14.37 35.96 17.05 increasing 0.00 0.03 Increasing
2008.xlsx 35 0 49.43 75.25 36.27 14.37 35.96 17.05 increasing 0.00 0.03 Increasing
2008.xlsx 36 0 25.56 49.20 36.27 14.37 35.96 17.05 increasing 0.00 0.03 Increasing
2008.xlsx 37 0 9.84 26.69 36.27 14.37 35.96 17.05 increasing 0.00 0.03 Increasing
2008.xlsx 38 0 10.84 18.71 36.27 14.37 35.96 17.05 increasing 0.00 0.03 Increasing
2008.xlsx 39 0 11.71 15.05 36.27 14.37 35.96 17.05 increasing 0.00 0.03 Increasing
2008.xlsx 40 0 12.95 15.37 36.27 14.37 35.96 17.05 increasing 0.00 0.03 Increasing
2008.xlsx 41 0.80 6.51 10.76 36.27 14.37 35.96 17.05 increasing 0.00 0.03 Increasing
2008.xlsx 42 114.40 1.48 7.07 36.27 14.37 35.96 17.05 increasing 0.00 0.03 Increasing
2008.xlsx 43 195.20 4.75 8.13 36.27 14.37 35.96 17.05 increasing 0.00 0.03 Increasing
2008.xlsx 44 10 5.76 9.24 36.27 14.37 35.96 17.05 increasing 0.00 0.03 Increasing
2008.xlsx 45 7.60 4.52 9.14 36.27 14.37 35.96 17.05 increasing 0.00 0.03 Increasing
2008.xlsx 46 1 10.89 13.52 36.27 14.37 35.96 17.05 increasing 0.00 0.03 Increasing
2008.xlsx 47 4.20 16.58 19.58 36.27 14.37 35.96 17.05 increasing 0.00 0.03 Increasing
2008.xlsx 48 0 21.70 27.24 36.27 14.37 35.96 17.05 increasing 0.00 0.03 Increasing
2008.xlsx 49 0.40 6.55 16.31 36.27 14.37 35.96 17.05 increasing 0.00 0.03 Increasing
2008.xlsx 50 11.60 3.96 10.23 36.27 14.37 35.96 17.05 increasing 0.00 0.03 Increasing
2008.xlsx 51 18.80 5.08 7.56 36.27 14.37 35.96 17.05 increasing 0.00 0.03 Increasing
2008.xlsx 52 54.60 6.30 6.24 36.27 14.37 35.96 17.05 increasing 0.00 0.03 Increasing
2008.xlsx 53 3.60 39.76 33.32 36.27 14.37 35.96 17.05 increasing 0.00 0.03 Increasing
2008.xlsx 54 0.60 15.57 17.15 36.27 14.37 35.96 17.05 increasing 0.00 0.03 Increasing
2008.xlsx 55 0.40 7.29 4.63 36.27 14.37 35.96 17.05 increasing 0.00 0.03 Increasing
2008.xlsx 56 0 5.99 -1.83 36.27 14.37 35.96 17.05 increasing 0.00 0.03 Increasing
2008.xlsx 57 0 4.87 -6.44 36.27 14.37 35.96 17.05 increasing 0.00 0.03 Increasing
2008.xlsx 58 0 2.45 -10.32 36.27 14.37 35.96 17.05 increasing 0.00 0.03 Increasing
2008.xlsx 59 0 3.18 -12.20 36.27 14.37 35.96 17.05 increasing 0.00 0.03 Increasing
2008.xlsx 60 0 3.20 -11.95 36.27 14.37 35.96 17.05 increasing 0.00 0.03 Increasing
2008.xlsx 61 0 1.55 -12.96 36.27 14.37 35.96 17.05 increasing 0.00 0.03 Increasing
2008.xlsx 62 0 2.95 -10.77 36.27 14.37 35.96 17.05 increasing 0.00 0.03 Increasing
2008.xlsx 63 0 8.45 -3.35 36.27 14.37 35.96 17.05 increasing 0.00 0.03 Increasing
2008.xlsx 64 0 4.00 1.06 36.27 14.37 35.96 17.05 increasing 0.00 0.03 Increasing
2008.xlsx 65 0 1.13 3.32 36.27 14.37 35.96 17.05 increasing 0.00 0.03 Increasing
2008.xlsx 66 0 0.12 3.81 36.27 14.37 35.96 17.05 increasing 0.00 0.03 Increasing
2008.xlsx 67 0 1.70 4.27 36.27 14.37 35.96 17.05 increasing 0.00 0.03 Increasing
2008.xlsx 68 0 1.20 3.15 36.27 14.37 35.96 17.05 increasing 0.00 0.03 Increasing
2009.xlsx 1 0 -2.03 -1.72 28.10 13.47 27.94 15.36 increasing 0.00 0.03 Increasing
2009.xlsx 2 0 -0.38 -0.91 28.10 13.47 27.94 15.36 increasing 0.00 0.03 Increasing
2009.xlsx 3 0 0.83 -0.30 28.10 13.47 27.94 15.36 increasing 0.00 0.03 Increasing
2009.xlsx 4 0 10.40 7.03 28.10 13.47 27.94 15.36 increasing 0.00 0.03 Increasing
2009.xlsx 5 0 18.86 17.68 28.10 13.47 27.94 15.36 increasing 0.00 0.03 Increasing
2009.xlsx 6 0 15.95 18.55 28.10 13.47 27.94 15.36 increasing 0.00 0.03 Increasing
2009.xlsx 7 0 12.51 14.87 28.10 13.47 27.94 15.36 increasing 0.00 0.03 Increasing
2009.xlsx 8 0 8.82 12.03 28.10 13.47 27.94 15.36 increasing 0.00 0.03 Increasing
2009.xlsx 9 0 9.55 13.61 28.10 13.47 27.94 15.36 increasing 0.00 0.03 Increasing
2009.xlsx 10 0 5.81 10.56 28.10 13.47 27.94 15.36 increasing 0.00 0.03 Increasing
2009.xlsx 11 0 15.05 16.77 28.10 13.47 27.94 15.36 increasing 0.00 0.03 Increasing
2009.xlsx 12 0 44.31 44.15 28.10 13.47 27.94 15.36 increasing 0.00 0.03 Increasing
2009.xlsx 13 0 20.96 31.30 28.10 13.47 27.94 15.36 increasing 0.00 0.03 Increasing
2009.xlsx 14 0 31.20 38.53 28.10 13.47 27.94 15.36 increasing 0.00 0.03 Increasing
2009.xlsx 15 0 58.10 63.32 28.10 13.47 27.94 15.36 increasing 0.00 0.03 Increasing
2009.xlsx 16 0 31.33 46.82 28.10 13.47 27.94 15.36 increasing 0.00 0.03 Increasing
2009.xlsx 17 0 20.46 34.87 28.10 13.47 27.94 15.36 increasing 0.00 0.03 Increasing
2009.xlsx 18 0 9.00 22.22 28.10 13.47 27.94 15.36 increasing 0.00 0.03 Increasing
2009.xlsx 19 0 4.19 14.00 28.10 13.47 27.94 15.36 increasing 0.00 0.03 Increasing
2009.xlsx 20 0 3.45 10.71 28.10 13.47 27.94 15.36 increasing 0.00 0.03 Increasing
2009.xlsx 21 0 7.39 12.38 28.10 13.47 27.94 15.36 increasing 0.00 0.03 Increasing
2009.xlsx 22 0 9.98 14.53 28.10 13.47 27.94 15.36 increasing 0.00 0.03 Increasing
2009.xlsx 23 0 7.86 13.50 28.10 13.47 27.94 15.36 increasing 0.00 0.03 Increasing
2009.xlsx 24 0 5.74 11.63 28.10 13.47 27.94 15.36 increasing 0.00 0.03 Increasing
2009.xlsx 25 0 4.10 9.91 28.10 13.47 27.94 15.36 increasing 0.00 0.03 Increasing
2009.xlsx 26 0 3.24 9.38 28.10 13.47 27.94 15.36 increasing 0.00 0.03 Increasing
2009.xlsx 27 0 2.25 8.35 28.10 13.47 27.94 15.36 increasing 0.00 0.03 Increasing
2009.xlsx 28 0 3.00 7.92 28.10 13.47 27.94 15.36 increasing 0.00 0.03 Increasing
2009.xlsx 29 0 4.95 7.88 28.10 13.47 27.94 15.36 increasing 0.00 0.03 Increasing
2009.xlsx 30 0 6.25 7.17 28.10 13.47 27.94 15.36 increasing 0.00 0.03 Increasing
2009.xlsx 31 0 9.19 7.58 28.10 13.47 27.94 15.36 increasing 0.00 0.03 Increasing
2009.xlsx 32 0 5.31 4.29 28.10 13.47 27.94 15.36 increasing 0.00 0.03 Increasing
2009.xlsx 33 0 1.75 0.56 28.10 13.47 27.94 15.36 increasing 0.00 0.03 Increasing
2009.xlsx 34 0 1.56 -0.88 28.10 13.47 27.94 15.36 increasing 0.00 0.03 Increasing
2009.xlsx 35 0 1.80 -1.19 28.10 13.47 27.94 15.36 increasing 0.00 0.03 Increasing
2009.xlsx 36 0 9.00 2.59 28.10 13.47 27.94 15.36 increasing 0.00 0.03 Increasing
2009.xlsx 37 0 8.58 1.92 28.10 13.47 27.94 15.36 increasing 0.00 0.03 Increasing
2009.xlsx 38 0 9.96 2.03 28.10 13.47 27.94 15.36 increasing 0.00 0.03 Increasing
2009.xlsx 39 7.60 16.67 7.71 28.10 13.47 27.94 15.36 increasing 0.00 0.03 Increasing
2009.xlsx 40 95.60 8.00 2.41 28.10 13.47 27.94 15.36 increasing 0.00 0.03 Increasing
2009.xlsx 41 0.40 2.79 -2.40 28.10 13.47 27.94 15.36 increasing 0.00 0.03 Increasing
2009.xlsx 42 0 3.83 0.31 28.10 13.47 27.94 15.36 increasing 0.00 0.03 Increasing
2009.xlsx 43 0 -1.82 -3.08 28.10 13.47 27.94 15.36 increasing 0.00 0.03 Increasing
2009.xlsx 44 0 -3.23 -3.63 28.10 13.47 27.94 15.36 increasing 0.00 0.03 Increasing
2009.xlsx 45 0 -2.11 -0.47 28.10 13.47 27.94 15.36 increasing 0.00 0.03 Increasing
2009.xlsx 46 0 0.57 2.05 28.10 13.47 27.94 15.36 increasing 0.00 0.03 Increasing
2009.xlsx 47 0 0.63 2.84 28.10 13.47 27.94 15.36 increasing 0.00 0.03 Increasing
2009.xlsx 48 0 3.23 5.03 28.10 13.47 27.94 15.36 increasing 0.00 0.03 Increasing
2009.xlsx 49 0 5.78 7.58 28.10 13.47 27.94 15.36 increasing 0.00 0.03 Increasing
2009.xlsx 50 0 28.12 27.25 28.10 13.47 27.94 15.36 increasing 0.00 0.03 Increasing
2009.xlsx 51 0 19.51 24.40 28.10 13.47 27.94 15.36 increasing 0.00 0.03 Increasing
2009.xlsx 52 0 35.24 37.83 28.10 13.47 27.94 15.36 increasing 0.00 0.03 Increasing
2009.xlsx 53 0 40.78 45.26 28.10 13.47 27.94 15.36 increasing 0.00 0.03 Increasing
2009.xlsx 54 0 22.97 32.02 28.10 13.47 27.94 15.36 increasing 0.00 0.03 Increasing
2009.xlsx 55 0 6.33 16.53 28.10 13.47 27.94 15.36 increasing 0.00 0.03 Increasing
2009.xlsx 56 0 1.15 8.33 28.10 13.47 27.94 15.36 increasing 0.00 0.03 Increasing
2009.xlsx 57 0 2.96 6.89 28.10 13.47 27.94 15.36 increasing 0.00 0.03 Increasing
2009.xlsx 58 0 7.94 9.18 28.10 13.47 27.94 15.36 increasing 0.00 0.03 Increasing
2009.xlsx 59 0 9.08 11.45 28.10 13.47 27.94 15.36 increasing 0.00 0.03 Increasing
2009.xlsx 60 0 8.53 11.70 28.10 13.47 27.94 15.36 increasing 0.00 0.03 Increasing
2009.xlsx 61 0 4.59 7.91 28.10 13.47 27.94 15.36 increasing 0.00 0.03 Increasing
2009.xlsx 62 0 4.45 6.35 28.10 13.47 27.94 15.36 increasing 0.00 0.03 Increasing
2009.xlsx 63 0 4.11 5.45 28.10 13.47 27.94 15.36 increasing 0.00 0.03 Increasing
2009.xlsx 64 0 3.40 5.82 28.10 13.47 27.94 15.36 increasing 0.00 0.03 Increasing
2009.xlsx 65 0 3.19 6.55 28.10 13.47 27.94 15.36 increasing 0.00 0.03 Increasing
2009.xlsx 66 0 3.57 7.60 28.10 13.47 27.94 15.36 increasing 0.00 0.03 Increasing
2009.xlsx 67 0 4.11 8.16 28.10 13.47 27.94 15.36 increasing 0.00 0.03 Increasing
2010.xlsx 1 0 2.69 3.13 27.18 13.01 26.98 13.51 increasing 0 0.04 Increasing
2010.xlsx 2 0 5.25 4.43 27.18 13.01 26.98 13.51 increasing 0 0.04 Increasing
2010.xlsx 3 0 12.79 10.64 27.18 13.01 26.98 13.51 increasing 0 0.04 Increasing
2010.xlsx 4 0 10.18 10.91 27.18 13.01 26.98 13.51 increasing 0 0.04 Increasing
2010.xlsx 5 0 18.16 18.88 27.18 13.01 26.98 13.51 increasing 0 0.04 Increasing
2010.xlsx 6 0 23.64 25.69 27.18 13.01 26.98 13.51 increasing 0 0.04 Increasing
2010.xlsx 7 0 8.95 15.74 27.18 13.01 26.98 13.51 increasing 0 0.04 Increasing
2010.xlsx 8 0 7.62 13.89 27.18 13.01 26.98 13.51 increasing 0 0.04 Increasing
2010.xlsx 9 0 3.86 9.59 27.18 13.01 26.98 13.51 increasing 0 0.04 Increasing
2010.xlsx 10 0 5.05 9.61 27.18 13.01 26.98 13.51 increasing 0 0.04 Increasing
2010.xlsx 11 0 2.30 7.02 27.18 13.01 26.98 13.51 increasing 0 0.04 Increasing
2010.xlsx 12 0 2.77 7.25 27.18 13.01 26.98 13.51 increasing 0 0.04 Increasing
2010.xlsx 13 0 3.54 7.72 27.18 13.01 26.98 13.51 increasing 0 0.04 Increasing
2010.xlsx 14 0 12.82 15.09 27.18 13.01 26.98 13.51 increasing 0 0.04 Increasing
2010.xlsx 15 0 12.95 18.48 27.18 13.01 26.98 13.51 increasing 0 0.04 Increasing
2010.xlsx 16 0 5.48 12.22 27.18 13.01 26.98 13.51 increasing 0 0.04 Increasing
2010.xlsx 17 0 8.23 13.93 27.18 13.01 26.98 13.51 increasing 0 0.04 Increasing
2010.xlsx 18 0 6.27 12.41 27.18 13.01 26.98 13.51 increasing 0 0.04 Increasing
2010.xlsx 19 0 3.92 10.29 27.18 13.01 26.98 13.51 increasing 0 0.04 Increasing
2010.xlsx 20 0 2.53 8.06 27.18 13.01 26.98 13.51 increasing 0 0.04 Increasing
2010.xlsx 21 0 2.86 7.48 27.18 13.01 26.98 13.51 increasing 0 0.04 Increasing
2010.xlsx 22 0 5.92 9.33 27.18 13.01 26.98 13.51 increasing 0 0.04 Increasing
2010.xlsx 23 0 9.80 11.57 27.18 13.01 26.98 13.51 increasing 0 0.04 Increasing
2010.xlsx 24 0 10.96 12.63 27.18 13.01 26.98 13.51 increasing 0 0.04 Increasing
2010.xlsx 25 0 13.42 14.33 27.18 13.01 26.98 13.51 increasing 0 0.04 Increasing
2010.xlsx 26 0 15.37 17.11 27.18 13.01 26.98 13.51 increasing 0 0.04 Increasing
2010.xlsx 27 0 18.58 20.93 27.18 13.01 26.98 13.51 increasing 0 0.04 Increasing
2010.xlsx 28 0 14.45 18.53 27.18 13.01 26.98 13.51 increasing 0 0.04 Increasing
2010.xlsx 29 0 6.26 10.70 27.18 13.01 26.98 13.51 increasing 0 0.04 Increasing
2010.xlsx 30 0 5.04 7.72 27.18 13.01 26.98 13.51 increasing 0 0.04 Increasing
2010.xlsx 31 0 16.14 17.41 27.18 13.01 26.98 13.51 increasing 0 0.04 Increasing
2010.xlsx 32 0 14.29 15.79 27.18 13.01 26.98 13.51 increasing 0 0.04 Increasing
2010.xlsx 33 0 19.97 20.53 27.18 13.01 26.98 13.51 increasing 0 0.04 Increasing
2010.xlsx 34 0 57.74 55.05 27.18 13.01 26.98 13.51 increasing 0 0.04 Increasing
2010.xlsx 35 0 21.05 32.34 27.18 13.01 26.98 13.51 increasing 0 0.04 Increasing
2010.xlsx 36 0 11.97 21.77 27.18 13.01 26.98 13.51 increasing 0 0.04 Increasing
2010.xlsx 37 0 0.35 9.46 27.18 13.01 26.98 13.51 increasing 0 0.04 Increasing
2010.xlsx 38 0 29.71 29.77 27.18 13.01 26.98 13.51 increasing 0 0.04 Increasing
2010.xlsx 39 0 31.68 33.39 27.18 13.01 26.98 13.51 increasing 0 0.04 Increasing
2010.xlsx 40 0 18.95 24.30 27.18 13.01 26.98 13.51 increasing 0 0.04 Increasing
2010.xlsx 41 0 16.85 20.88 27.18 13.01 26.98 13.51 increasing 0 0.04 Increasing
2010.xlsx 42 0 12.14 16.65 27.18 13.01 26.98 13.51 increasing 0 0.04 Increasing
2010.xlsx 43 0 16.58 19.46 27.18 13.01 26.98 13.51 increasing 0 0.04 Increasing
2010.xlsx 44 0 0.90 7.07 27.18 13.01 26.98 13.51 increasing 0 0.04 Increasing
2010.xlsx 45 0 -1.96 2.13 27.18 13.01 26.98 13.51 increasing 0 0.04 Increasing
2010.xlsx 46 0 -3.34 -1.34 27.18 13.01 26.98 13.51 increasing 0 0.04 Increasing
2010.xlsx 47 0 -2.94 -2.76 27.18 13.01 26.98 13.51 increasing 0 0.04 Increasing
2010.xlsx 48 0 -0.28 -2.22 27.18 13.01 26.98 13.51 increasing 0 0.04 Increasing
2010.xlsx 49 0 0.84 -1.49 27.18 13.01 26.98 13.51 increasing 0 0.04 Increasing
2010.xlsx 50 0 1.15 -1.33 27.18 13.01 26.98 13.51 increasing 0 0.04 Increasing
2010.xlsx 51 0 1.05 -1.10 27.18 13.01 26.98 13.51 increasing 0 0.04 Increasing
2010.xlsx 52 0 3.02 -0.10 27.18 13.01 26.98 13.51 increasing 0 0.04 Increasing
2010.xlsx 53 0 4.28 0.81 27.18 13.01 26.98 13.51 increasing 0 0.04 Increasing
2010.xlsx 54 0 6.77 3.12 27.18 13.01 26.98 13.51 increasing 0 0.04 Increasing
2010.xlsx 55 0 5.21 1.33 27.18 13.01 26.98 13.51 increasing 0 0.04 Increasing
2010.xlsx 56 0 5.35 0.55 27.18 13.01 26.98 13.51 increasing 0 0.04 Increasing
2010.xlsx 57 0 12.86 5.74 27.18 13.01 26.98 13.51 increasing 0 0.04 Increasing
2010.xlsx 58 0 16.60 10.00 27.18 13.01 26.98 13.51 increasing 0 0.04 Increasing
2010.xlsx 59 0 2.57 0.55 27.18 13.01 26.98 13.51 increasing 0 0.04 Increasing
2010.xlsx 60 0 1.75 -2.57 27.18 13.01 26.98 13.51 increasing 0 0.04 Increasing
2010.xlsx 61 0 4.20 -2.13 27.18 13.01 26.98 13.51 increasing 0 0.04 Increasing
2010.xlsx 62 0 5.11 -2.78 27.18 13.01 26.98 13.51 increasing 0 0.04 Increasing
2010.xlsx 63 0 4.41 -3.33 27.18 13.01 26.98 13.51 increasing 0 0.04 Increasing
2010.xlsx 64 0 4.94 -0.56 27.18 13.01 26.98 13.51 increasing 0 0.04 Increasing
2010.xlsx 65 0 12.95 5.05 27.18 13.01 26.98 13.51 increasing 0 0.04 Increasing
2010.xlsx 66 0 17.65 11.82 27.18 13.01 26.98 13.51 increasing 0 0.04 Increasing
2010.xlsx 67 0 8.92 7.27 27.18 13.01 26.98 13.51 increasing 0 0.04 Increasing
2011.xlsx 1 0 9.13 9.65 24.48 13.08 24.67 13.92 increasing 0.00 0.04 Increasing
2011.xlsx 2 0 17.12 17.09 24.48 13.08 24.67 13.92 increasing 0.00 0.04 Increasing
2011.xlsx 3 0 28.10 28.00 24.48 13.08 24.67 13.92 increasing 0.00 0.04 Increasing
2011.xlsx 4 0 18.27 23.18 24.48 13.08 24.67 13.92 increasing 0.00 0.04 Increasing
2011.xlsx 5 0 25.70 29.61 24.48 13.08 24.67 13.92 increasing 0.00 0.04 Increasing
2011.xlsx 6 0 20.39 26.38 24.48 13.08 24.67 13.92 increasing 0.00 0.04 Increasing
2011.xlsx 7 0 17.62 24.23 24.48 13.08 24.67 13.92 increasing 0.00 0.04 Increasing
2011.xlsx 8 0 21.47 26.03 24.48 13.08 24.67 13.92 increasing 0.00 0.04 Increasing
2011.xlsx 9 0 15.80 21.87 24.48 13.08 24.67 13.92 increasing 0.00 0.04 Increasing
2011.xlsx 10 0 8.83 16.18 24.48 13.08 24.67 13.92 increasing 0.00 0.04 Increasing
2011.xlsx 11 0 15.09 20.36 24.48 13.08 24.67 13.92 increasing 0.00 0.04 Increasing
2011.xlsx 12 0 8.39 15.46 24.48 13.08 24.67 13.92 increasing 0.00 0.04 Increasing
2011.xlsx 13 0 1.99 9.73 24.48 13.08 24.67 13.92 increasing 0.00 0.04 Increasing
2011.xlsx 14 0 26.65 30.53 24.48 13.08 24.67 13.92 increasing 0.00 0.04 Increasing
2011.xlsx 15 0 4.75 17.59 24.48 13.08 24.67 13.92 increasing 0.00 0.04 Increasing
2011.xlsx 16 0 -1.27 9.58 24.48 13.08 24.67 13.92 increasing 0.00 0.04 Increasing
2011.xlsx 17 0 0.37 7.56 24.48 13.08 24.67 13.92 increasing 0.00 0.04 Increasing
2011.xlsx 18 0 4.66 8.57 24.48 13.08 24.67 13.92 increasing 0.00 0.04 Increasing
2011.xlsx 19 0 6.78 9.39 24.48 13.08 24.67 13.92 increasing 0.00 0.04 Increasing
2011.xlsx 20 0 7.49 9.01 24.48 13.08 24.67 13.92 increasing 0.00 0.04 Increasing
2011.xlsx 21 0 13.62 12.37 24.48 13.08 24.67 13.92 increasing 0.00 0.04 Increasing
2011.xlsx 22 0 12.37 12.83 24.48 13.08 24.67 13.92 increasing 0.00 0.04 Increasing
2011.xlsx 23 0 7.18 9.22 24.48 13.08 24.67 13.92 increasing 0.00 0.04 Increasing
2011.xlsx 24 18.20 12.18 11.53 24.48 13.08 24.67 13.92 increasing 0.00 0.04 Increasing
2011.xlsx 25 0 16.80 15.55 24.48 13.08 24.67 13.92 increasing 0.00 0.04 Increasing
2011.xlsx 26 8.60 6.10 8.19 24.48 13.08 24.67 13.92 increasing 0.00 0.04 Increasing
2011.xlsx 27 0 -0.51 1.88 24.48 13.08 24.67 13.92 increasing 0.00 0.04 Increasing
2011.xlsx 28 0 0.47 0.06 24.48 13.08 24.67 13.92 increasing 0.00 0.04 Increasing
2011.xlsx 29 0 1.94 -0.50 24.48 13.08 24.67 13.92 increasing 0.00 0.04 Increasing
2011.xlsx 30 0 16.22 10.07 24.48 13.08 24.67 13.92 increasing 0.00 0.04 Increasing
2011.xlsx 31 0 24.65 19.73 24.48 13.08 24.67 13.92 increasing 0.00 0.04 Increasing
2011.xlsx 32 0 50.38 44.78 24.48 13.08 24.67 13.92 increasing 0.00 0.04 Increasing
2011.xlsx 33 0 33.90 37.93 24.48 13.08 24.67 13.92 increasing 0.00 0.04 Increasing
2011.xlsx 34 0 12.42 19.92 24.48 13.08 24.67 13.92 increasing 0.00 0.04 Increasing
2011.xlsx 35 0 7.04 11.77 24.48 13.08 24.67 13.92 increasing 0.00 0.04 Increasing
2011.xlsx 36 0 7.48 9.15 24.48 13.08 24.67 13.92 increasing 0.00 0.04 Increasing
2011.xlsx 37 0 4.22 5.09 24.48 13.08 24.67 13.92 increasing 0.00 0.04 Increasing
2011.xlsx 38 0 5.36 5.83 24.48 13.08 24.67 13.92 increasing 0.00 0.04 Increasing
2011.xlsx 39 0 -1.91 -0.22 24.48 13.08 24.67 13.92 increasing 0.00 0.04 Increasing
2011.xlsx 40 0 -3.92 -3.26 24.48 13.08 24.67 13.92 increasing 0.00 0.04 Increasing
2011.xlsx 41 0 -2.02 -2.89 24.48 13.08 24.67 13.92 increasing 0.00 0.04 Increasing
2011.xlsx 42 0 -1.89 -3.18 24.48 13.08 24.67 13.92 increasing 0.00 0.04 Increasing
2011.xlsx 43 0 -1.82 -3.36 24.48 13.08 24.67 13.92 increasing 0.00 0.04 Increasing
2011.xlsx 44 0 -1.42 -1.54 24.48 13.08 24.67 13.92 increasing 0.00 0.04 Increasing
2011.xlsx 45 0 0.83 0.53 24.48 13.08 24.67 13.92 increasing 0.00 0.04 Increasing
2011.xlsx 46 0 2.43 2.31 24.48 13.08 24.67 13.92 increasing 0.00 0.04 Increasing
2011.xlsx 47 0 10.77 8.80 24.48 13.08 24.67 13.92 increasing 0.00 0.04 Increasing
2011.xlsx 48 0 7.88 7.47 24.48 13.08 24.67 13.92 increasing 0.00 0.04 Increasing
2011.xlsx 49 0 5.49 6.37 24.48 13.08 24.67 13.92 increasing 0.00 0.04 Increasing
2011.xlsx 50 0 8.40 7.01 24.48 13.08 24.67 13.92 increasing 0.00 0.04 Increasing
2011.xlsx 51 0 14.66 9.84 24.48 13.08 24.67 13.92 increasing 0.00 0.04 Increasing
2011.xlsx 52 0 19.55 14.32 24.48 13.08 24.67 13.92 increasing 0.00 0.04 Increasing
2011.xlsx 53 0 15.10 12.65 24.48 13.08 24.67 13.92 increasing 0.00 0.04 Increasing
2011.xlsx 54 0 5.31 4.40 24.48 13.08 24.67 13.92 increasing 0.00 0.04 Increasing
2011.xlsx 55 0 4.59 1.25 24.48 13.08 24.67 13.92 increasing 0.00 0.04 Increasing
2011.xlsx 56 0 6.35 1.07 24.48 13.08 24.67 13.92 increasing 0.00 0.04 Increasing
2011.xlsx 57 0 5.55 0.16 24.48 13.08 24.67 13.92 increasing 0.00 0.04 Increasing
2011.xlsx 58 0 1.91 -2.84 24.48 13.08 24.67 13.92 increasing 0.00 0.04 Increasing
2011.xlsx 59 0 1.49 -3.05 24.48 13.08 24.67 13.92 increasing 0.00 0.04 Increasing
2011.xlsx 60 0 4.88 0.43 24.48 13.08 24.67 13.92 increasing 0.00 0.04 Increasing
2011.xlsx 61 0 4.55 2.18 24.48 13.08 24.67 13.92 increasing 0.00 0.04 Increasing
2011.xlsx 62 0 0.90 2.90 24.48 13.08 24.67 13.92 increasing 0.00 0.04 Increasing
2011.xlsx 63 0 -1.46 2.69 24.48 13.08 24.67 13.92 increasing 0.00 0.04 Increasing
2011.xlsx 64 0 0.98 4.64 24.48 13.08 24.67 13.92 increasing 0.00 0.04 Increasing
2011.xlsx 65 0 4.76 7.49 24.48 13.08 24.67 13.92 increasing 0.00 0.04 Increasing
2011.xlsx 66 0 4.06 7.24 24.48 13.08 24.67 13.92 increasing 0.00 0.04 Increasing
2011.xlsx 67 0 22.00 25.18 24.48 13.08 24.67 13.92 increasing 0.00 0.04 Increasing
2012.xlsx 1 0 32.33 30.33 29.59 20.79 28.12 20.28 increasing 0 0.12 Increasing
2012.xlsx 2 11.70 9.80 15.41 29.59 20.79 28.12 20.28 increasing 0 0.12 Increasing
2012.xlsx 3 0 3.49 6.82 29.59 20.79 28.12 20.28 increasing 0 0.12 Increasing
2012.xlsx 4 0 2.30 4.24 29.59 20.79 28.12 20.28 increasing 0 0.12 Increasing
2012.xlsx 5 0 14.09 11.87 29.59 20.79 28.12 20.28 increasing 0 0.12 Increasing
2012.xlsx 6 0 19.53 22.08 29.59 20.79 28.12 20.28 increasing 0 0.12 Increasing
2012.xlsx 7 0 44.04 44.30 29.59 20.79 28.12 20.28 increasing 0 0.12 Increasing
2012.xlsx 8 0 36.57 42.10 29.59 20.79 28.12 20.28 increasing 0 0.12 Increasing
2012.xlsx 9 0 33.68 41.99 29.59 20.79 28.12 20.28 increasing 0 0.12 Increasing
2012.xlsx 10 0 28.34 38.99 29.59 20.79 28.12 20.28 increasing 0 0.12 Increasing
2012.xlsx 11 0 25.32 36.55 29.59 20.79 28.12 20.28 increasing 0 0.12 Increasing
2012.xlsx 12 0 25.54 35.69 29.59 20.79 28.12 20.28 increasing 0 0.12 Increasing
2012.xlsx 13 0 26.15 35.02 29.59 20.79 28.12 20.28 increasing 0 0.12 Increasing
2012.xlsx 14 0 30.45 36.03 29.59 20.79 28.12 20.28 increasing 0 0.12 Increasing
2012.xlsx 15 0 33.03 36.41 29.59 20.79 28.12 20.28 increasing 0 0.12 Increasing
2012.xlsx 16 0 35.02 37.01 29.59 20.79 28.12 20.28 increasing 0 0.12 Increasing
2012.xlsx 17 0 34.47 40.10 29.59 20.79 28.12 20.28 increasing 0 0.12 Increasing
2012.xlsx 18 0 36.93 40.36 29.59 20.79 28.12 20.28 increasing 0 0.12 Increasing
2012.xlsx 19 0 36.39 39.31 29.59 20.79 28.12 20.28 increasing 0 0.12 Increasing
2012.xlsx 20 0 36.28 38.52 29.59 20.79 28.12 20.28 increasing 0 0.12 Increasing
2012.xlsx 21 0 36.09 37.63 29.59 20.79 28.12 20.28 increasing 0 0.12 Increasing
2012.xlsx 22 0 37.56 36.94 29.59 20.79 28.12 20.28 increasing 0 0.12 Increasing
2012.xlsx 23 0 35.21 35.08 29.59 20.79 28.12 20.28 increasing 0 0.12 Increasing
2012.xlsx 24 0 35.36 33.87 29.59 20.79 28.12 20.28 increasing 0 0.12 Increasing
2012.xlsx 25 0 35.77 34.42 29.59 20.79 28.12 20.28 increasing 0 0.12 Increasing
2012.xlsx 26 0 33.87 33.71 29.59 20.79 28.12 20.28 increasing 0 0.12 Increasing
2012.xlsx 27 0 35.34 34.90 29.59 20.79 28.12 20.28 increasing 0 0.12 Increasing
2012.xlsx 28 0 35.57 33.41 29.59 20.79 28.12 20.28 increasing 0 0.12 Increasing
2012.xlsx 29 0 34.78 31.65 29.59 20.79 28.12 20.28 increasing 0 0.12 Increasing
2012.xlsx 30 0 36.45 32.51 29.59 20.79 28.12 20.28 increasing 0 0.12 Increasing
2012.xlsx 31 0 35.08 32.37 29.59 20.79 28.12 20.28 increasing 0 0.12 Increasing
2012.xlsx 32 0 16.58 16.42 29.59 20.79 28.12 20.28 increasing 0 0.12 Increasing
2012.xlsx 33 0 13.60 9.78 29.59 20.79 28.12 20.28 increasing 0 0.12 Increasing
2012.xlsx 34 0 12.97 7.21 29.59 20.79 28.12 20.28 increasing 0 0.12 Increasing
2012.xlsx 35 0 9.84 3.88 29.59 20.79 28.12 20.28 increasing 0 0.12 Increasing
2012.xlsx 36 0 8.56 1.64 29.59 20.79 28.12 20.28 increasing 0 0.12 Increasing
2012.xlsx 37 0 11.90 3.55 29.59 20.79 28.12 20.28 increasing 0 0.12 Increasing
2012.xlsx 38 0 10.85 3.50 29.59 20.79 28.12 20.28 increasing 0 0.12 Increasing
2012.xlsx 39 0 6.73 0.05 29.59 20.79 28.12 20.28 increasing 0 0.12 Increasing
2012.xlsx 40 0 4.92 -2.73 29.59 20.79 28.12 20.28 increasing 0 0.12 Increasing
2012.xlsx 41 0 8.01 -1.83 29.59 20.79 28.12 20.28 increasing 0 0.12 Increasing
2012.xlsx 42 0 10.08 -1.52 29.59 20.79 28.12 20.28 increasing 0 0.12 Increasing
2012.xlsx 43 0 4.85 -4.93 29.59 20.79 28.12 20.28 increasing 0 0.12 Increasing
2012.xlsx 44 5.20 4.61 -5.84 29.59 20.79 28.12 20.28 increasing 0 0.12 Increasing
2012.xlsx 45 2.80 3.68 -6.18 29.59 20.79 28.12 20.28 increasing 0 0.12 Increasing
2012.xlsx 46 2 2.65 -6.55 29.59 20.79 28.12 20.28 increasing 0 0.12 Increasing
2012.xlsx 47 0 1.99 -7.34 29.59 20.79 28.12 20.28 increasing 0 0.12 Increasing
2012.xlsx 48 0 1.10 -8.14 29.59 20.79 28.12 20.28 increasing 0 0.12 Increasing
2012.xlsx 49 0 2.95 -7.60 29.59 20.79 28.12 20.28 increasing 0 0.12 Increasing
2012.xlsx 50 0 2.69 -7.65 29.59 20.79 28.12 20.28 increasing 0 0.12 Increasing
2012.xlsx 51 0 0.45 -8.93 29.59 20.79 28.12 20.28 increasing 0 0.12 Increasing
2012.xlsx 52 0 2.63 -7.09 29.59 20.79 28.12 20.28 increasing 0 0.12 Increasing
2012.xlsx 53 0 5.17 -3.99 29.59 20.79 28.12 20.28 increasing 0 0.12 Increasing
2012.xlsx 54 0 6.94 -0.78 29.59 20.79 28.12 20.28 increasing 0 0.12 Increasing
2012.xlsx 55 0 7.73 1.26 29.59 20.79 28.12 20.28 increasing 0 0.12 Increasing
2012.xlsx 56 0 6.28 1.41 29.59 20.79 28.12 20.28 increasing 0 0.12 Increasing
2012.xlsx 57 0 5.31 1.06 29.59 20.79 28.12 20.28 increasing 0 0.12 Increasing
2012.xlsx 58 0 1.88 -0.79 29.59 20.79 28.12 20.28 increasing 0 0.12 Increasing
2012.xlsx 59 0 -0.73 -2.03 29.59 20.79 28.12 20.28 increasing 0 0.12 Increasing
2012.xlsx 60 0 -0.04 -1.46 29.59 20.79 28.12 20.28 increasing 0 0.12 Increasing
2012.xlsx 61 0 -0.89 -1.04 29.59 20.79 28.12 20.28 increasing 0 0.12 Increasing
2012.xlsx 62 0 0.07 -0.59 29.59 20.79 28.12 20.28 increasing 0 0.12 Increasing
2012.xlsx 63 0 -4.00 -3.28 29.59 20.79 28.12 20.28 increasing 0 0.12 Increasing
2012.xlsx 64 0 5.82 2.27 29.59 20.79 28.12 20.28 increasing 0 0.12 Increasing
2012.xlsx 65 0 7.22 3.44 29.59 20.79 28.12 20.28 increasing 0 0.12 Increasing
2012.xlsx 66 0 12.75 7.82 29.59 20.79 28.12 20.28 increasing 0 0.12 Increasing
2012.xlsx 67 0 15.81 14.32 29.59 20.79 28.12 20.28 increasing 0 0.12 Increasing
2012.xlsx 68 0 7.29 11.62 29.59 20.79 28.12 20.28 increasing 0 0.12 Increasing
2013.xlsx 1 0 -0.10 3.46 113.81 26.68 112.96 28.95 increasing 0.00 0.05 Increasing
2013.xlsx 2 0 -1.11 3.01 113.81 26.68 112.96 28.95 increasing 0.00 0.05 Increasing
2013.xlsx 3 0 -1.45 3.24 113.81 26.68 112.96 28.95 increasing 0.00 0.05 Increasing
2013.xlsx 4 0 -1.59 3.23 113.81 26.68 112.96 28.95 increasing 0.00 0.05 Increasing
2013.xlsx 5 0 4.47 7.24 113.81 26.68 112.96 28.95 increasing 0.00 0.05 Increasing
2013.xlsx 6 0 4.31 7.86 113.81 26.68 112.96 28.95 increasing 0.00 0.05 Increasing
2013.xlsx 7 0 5.46 8.78 113.81 26.68 112.96 28.95 increasing 0.00 0.05 Increasing
2013.xlsx 8 0 6.52 9.91 113.81 26.68 112.96 28.95 increasing 0.00 0.05 Increasing
2013.xlsx 9 0 7.55 11.08 113.81 26.68 112.96 28.95 increasing 0.00 0.05 Increasing
2013.xlsx 10 0 12.53 16.02 113.81 26.68 112.96 28.95 increasing 0.00 0.05 Increasing
2013.xlsx 11 0 17.81 20.90 113.81 26.68 112.96 28.95 increasing 0.00 0.05 Increasing
2013.xlsx 12 0 27.40 29.82 113.81 26.68 112.96 28.95 increasing 0.00 0.05 Increasing
2013.xlsx 13 0 17.75 23.92 113.81 26.68 112.96 28.95 increasing 0.00 0.05 Increasing
2013.xlsx 14 0 11.73 18.01 113.81 26.68 112.96 28.95 increasing 0.00 0.05 Increasing
2013.xlsx 15 0 3.19 9.88 113.81 26.68 112.96 28.95 increasing 0.00 0.05 Increasing
2013.xlsx 16 60.10 1.58 5.53 113.81 26.68 112.96 28.95 increasing 0.00 0.05 Increasing
2013.xlsx 17 0 1.70 4.20 113.81 26.68 112.96 28.95 increasing 0.00 0.05 Increasing
2013.xlsx 18 0 4.64 5.50 113.81 26.68 112.96 28.95 increasing 0.00 0.05 Increasing
2013.xlsx 19 0 6.15 6.87 113.81 26.68 112.96 28.95 increasing 0.00 0.05 Increasing
2013.xlsx 20 0 4.01 6.83 113.81 26.68 112.96 28.95 increasing 0.00 0.05 Increasing
2013.xlsx 21 0 3.70 7.32 113.81 26.68 112.96 28.95 increasing 0.00 0.05 Increasing
2013.xlsx 22 0 5.60 8.92 113.81 26.68 112.96 28.95 increasing 0.00 0.05 Increasing
2013.xlsx 23 0 33.82 33.42 113.81 26.68 112.96 28.95 increasing 0.00 0.05 Increasing
2013.xlsx 24 0 22.05 28.64 113.81 26.68 112.96 28.95 increasing 0.00 0.05 Increasing
2013.xlsx 25 0 12.38 20.48 113.81 26.68 112.96 28.95 increasing 0.00 0.05 Increasing
2013.xlsx 26 0 190.44 168.44 113.81 26.68 112.96 28.95 increasing 0.00 0.05 Increasing
2013.xlsx 27 0 23.41 84.14 113.81 26.68 112.96 28.95 increasing 0.00 0.05 Increasing
2013.xlsx 28 0 17.61 42.08 113.81 26.68 112.96 28.95 increasing 0.00 0.05 Increasing
2013.xlsx 29 0 11.52 20.56 113.81 26.68 112.96 28.95 increasing 0.00 0.05 Increasing
2013.xlsx 30 0 11.43 10.80 113.81 26.68 112.96 28.95 increasing 0.00 0.05 Increasing
2013.xlsx 31 0 25.36 17.10 113.81 26.68 112.96 28.95 increasing 0.00 0.05 Increasing
2013.xlsx 32 0 27.67 21.83 113.81 26.68 112.96 28.95 increasing 0.00 0.05 Increasing
2013.xlsx 33 0 12.40 11.97 113.81 26.68 112.96 28.95 increasing 0.00 0.05 Increasing
2013.xlsx 34 0 8.11 7.43 113.81 26.68 112.96 28.95 increasing 0.00 0.05 Increasing
2013.xlsx 35 5.60 5.83 5.13 113.81 26.68 112.96 28.95 increasing 0.00 0.05 Increasing
2013.xlsx 36 25 6.77 4.63 113.81 26.68 112.96 28.95 increasing 0.00 0.05 Increasing
2013.xlsx 37 0 9.59 6.78 113.81 26.68 112.96 28.95 increasing 0.00 0.05 Increasing
2013.xlsx 38 0 18.19 15.22 113.81 26.68 112.96 28.95 increasing 0.00 0.05 Increasing
2013.xlsx 39 0 16.81 15.54 113.81 26.68 112.96 28.95 increasing 0.00 0.05 Increasing
2013.xlsx 40 0 39.00 38.24 113.81 26.68 112.96 28.95 increasing 0.00 0.05 Increasing
2013.xlsx 41 0 16.59 23.70 113.81 26.68 112.96 28.95 increasing 0.00 0.05 Increasing
2013.xlsx 42 0 16.90 23.37 113.81 26.68 112.96 28.95 increasing 0.00 0.05 Increasing
2013.xlsx 43 0 1.04 8.91 113.81 26.68 112.96 28.95 increasing 0.00 0.05 Increasing
2013.xlsx 44 0 -0.46 2.37 113.81 26.68 112.96 28.95 increasing 0.00 0.05 Increasing
2013.xlsx 45 0 -2.65 -3.08 113.81 26.68 112.96 28.95 increasing 0.00 0.05 Increasing
2013.xlsx 46 0 -1.76 -5.40 113.81 26.68 112.96 28.95 increasing 0.00 0.05 Increasing
2013.xlsx 47 0 -3.62 -9.35 113.81 26.68 112.96 28.95 increasing 0.00 0.05 Increasing
2013.xlsx 48 0 -3.36 -12.55 113.81 26.68 112.96 28.95 increasing 0.00 0.05 Increasing
2013.xlsx 49 0 6.91 -8.07 113.81 26.68 112.96 28.95 increasing 0.00 0.05 Increasing
2013.xlsx 50 0 15.24 -0.68 113.81 26.68 112.96 28.95 increasing 0.00 0.05 Increasing
2013.xlsx 51 0 6.54 -6.14 113.81 26.68 112.96 28.95 increasing 0.00 0.05 Increasing
2013.xlsx 52 0 3.80 -9.03 113.81 26.68 112.96 28.95 increasing 0.00 0.05 Increasing
2013.xlsx 53 0 1.18 -9.98 113.81 26.68 112.96 28.95 increasing 0.00 0.05 Increasing
2013.xlsx 54 0 2.53 -8.93 113.81 26.68 112.96 28.95 increasing 0.00 0.05 Increasing
2013.xlsx 55 0 4.36 -5.33 113.81 26.68 112.96 28.95 increasing 0.00 0.05 Increasing
2013.xlsx 56 0 4.09 5.63 113.81 26.68 112.96 28.95 increasing 0.00 0.05 Increasing
2013.xlsx 57 0 3.58 4.81 113.81 26.68 112.96 28.95 increasing 0.00 0.05 Increasing
2013.xlsx 58 0 2.74 3.60 113.81 26.68 112.96 28.95 increasing 0.00 0.05 Increasing
2013.xlsx 59 0 4.07 3.67 113.81 26.68 112.96 28.95 increasing 0.00 0.05 Increasing
2013.xlsx 60 0 5.87 4.69 113.81 26.68 112.96 28.95 increasing 0.00 0.05 Increasing
2013.xlsx 61 0 8.56 6.42 113.81 26.68 112.96 28.95 increasing 0.00 0.05 Increasing
2013.xlsx 62 0 6.43 6.03 113.81 26.68 112.96 28.95 increasing 0.00 0.05 Increasing
2013.xlsx 63 0 7.68 6.97 113.81 26.68 112.96 28.95 increasing 0.00 0.05 Increasing
2013.xlsx 64 0 6.88 5.57 113.81 26.68 112.96 28.95 increasing 0.00 0.05 Increasing
2013.xlsx 65 0 3.22 2.22 113.81 26.68 112.96 28.95 increasing 0.00 0.05 Increasing
2013.xlsx 66 0 2.09 1.10 113.81 26.68 112.96 28.95 increasing 0.00 0.05 Increasing
2013.xlsx 67 0 1.95 1.19 113.81 26.68 112.96 28.95 increasing 0.00 0.05 Increasing
2014.xlsx 1 0 4.99 12.36 16.54 10.67 17.82 11.91 increasing 0.00 0.03 Increasing
2014.xlsx 2 0.80 6.05 11.51 16.54 10.67 17.82 11.91 increasing 0.00 0.03 Increasing
2014.xlsx 3 0 7.32 12.20 16.54 10.67 17.82 11.91 increasing 0.00 0.03 Increasing
2014.xlsx 4 0 2.95 8.15 16.54 10.67 17.82 11.91 increasing 0.00 0.03 Increasing
2014.xlsx 5 0 11.72 15.09 16.54 10.67 17.82 11.91 increasing 0.00 0.03 Increasing
2014.xlsx 6 0 4.00 10.59 16.54 10.67 17.82 11.91 increasing 0.00 0.03 Increasing
2014.xlsx 7 0 4.52 9.79 16.54 10.67 17.82 11.91 increasing 0.00 0.03 Increasing
2014.xlsx 8 0 6.00 9.98 16.54 10.67 17.82 11.91 increasing 0.00 0.03 Increasing
2014.xlsx 9 0 23.15 24.21 16.54 10.67 17.82 11.91 increasing 0.00 0.03 Increasing
2014.xlsx 10 0 15.78 19.71 16.54 10.67 17.82 11.91 increasing 0.00 0.03 Increasing
2014.xlsx 11 0 10.28 14.64 16.54 10.67 17.82 11.91 increasing 0.00 0.03 Increasing
2014.xlsx 12 0 1.19 6.50 16.54 10.67 17.82 11.91 increasing 0.00 0.03 Increasing
2014.xlsx 13 0 -5.83 -1.14 16.54 10.67 17.82 11.91 increasing 0.00 0.03 Increasing
2014.xlsx 14 0 -3.80 -3.43 16.54 10.67 17.82 11.91 increasing 0.00 0.03 Increasing
2014.xlsx 15 0 -2.45 -4.55 16.54 10.67 17.82 11.91 increasing 0.00 0.03 Increasing
2014.xlsx 16 0 0.40 -4.50 16.54 10.67 17.82 11.91 increasing 0.00 0.03 Increasing
2014.xlsx 17 0 4.37 -3.58 16.54 10.67 17.82 11.91 increasing 0.00 0.03 Increasing
2014.xlsx 18 0 5.95 -3.53 16.54 10.67 17.82 11.91 increasing 0.00 0.03 Increasing
2014.xlsx 19 0 12.26 1.57 16.54 10.67 17.82 11.91 increasing 0.00 0.03 Increasing
2014.xlsx 20 0.40 27.69 16.32 16.54 10.67 17.82 11.91 increasing 0.00 0.03 Increasing
2014.xlsx 21 0 28.21 20.27 16.54 10.67 17.82 11.91 increasing 0.00 0.03 Increasing
2014.xlsx 22 0 12.64 10.46 16.54 10.67 17.82 11.91 increasing 0.00 0.03 Increasing
2014.xlsx 23 0 6.95 6.63 16.54 10.67 17.82 11.91 increasing 0.00 0.03 Increasing
2014.xlsx 24 0 4.06 3.61 16.54 10.67 17.82 11.91 increasing 0.00 0.03 Increasing
2014.xlsx 25 17.80 5.62 4.63 16.54 10.67 17.82 11.91 increasing 0.00 0.03 Increasing
2014.xlsx 26 6.80 22.27 19.23 16.54 10.67 17.82 11.91 increasing 0.00 0.03 Increasing
2014.xlsx 27 0 10.60 13.37 16.54 10.67 17.82 11.91 increasing 0.00 0.03 Increasing
2014.xlsx 28 0 11.16 12.36 16.54 10.67 17.82 11.91 increasing 0.00 0.03 Increasing
2014.xlsx 29 0 7.98 9.53 16.54 10.67 17.82 11.91 increasing 0.00 0.03 Increasing
2014.xlsx 30 0 7.31 7.96 16.54 10.67 17.82 11.91 increasing 0.00 0.03 Increasing
2014.xlsx 31 0 3.47 4.57 16.54 10.67 17.82 11.91 increasing 0.00 0.03 Increasing
2014.xlsx 32 0 2.34 3.27 16.54 10.67 17.82 11.91 increasing 0.00 0.03 Increasing
2014.xlsx 33 0 3.78 4.31 16.54 10.67 17.82 11.91 increasing 0.00 0.03 Increasing
2014.xlsx 34 0 5.72 5.65 16.54 10.67 17.82 11.91 increasing 0.00 0.03 Increasing
2014.xlsx 35 0 10.22 9.38 16.54 10.67 17.82 11.91 increasing 0.00 0.03 Increasing
2014.xlsx 36 0 18.67 18.75 16.54 10.67 17.82 11.91 increasing 0.00 0.03 Increasing
2014.xlsx 37 0 18.06 21.70 16.54 10.67 17.82 11.91 increasing 0.00 0.03 Increasing
2014.xlsx 38 0 6.91 14.84 16.54 10.67 17.82 11.91 increasing 0.00 0.03 Increasing
2014.xlsx 39 0 1.78 9.81 16.54 10.67 17.82 11.91 increasing 0.00 0.03 Increasing
2014.xlsx 40 0 -1.79 5.30 16.54 10.67 17.82 11.91 increasing 0.00 0.03 Increasing
2014.xlsx 41 0 -1.12 4.04 16.54 10.67 17.82 11.91 increasing 0.00 0.03 Increasing
2014.xlsx 42 0 -0.26 3.34 16.54 10.67 17.82 11.91 increasing 0.00 0.03 Increasing
2014.xlsx 43 0 1.64 3.18 16.54 10.67 17.82 11.91 increasing 0.00 0.03 Increasing
2014.xlsx 44 0 2.29 2.68 16.54 10.67 17.82 11.91 increasing 0.00 0.03 Increasing
2014.xlsx 45 0 4.64 3.50 16.54 10.67 17.82 11.91 increasing 0.00 0.03 Increasing
2014.xlsx 46 0 5.94 3.48 16.54 10.67 17.82 11.91 increasing 0.00 0.03 Increasing
2014.xlsx 47 0 5.77 2.24 16.54 10.67 17.82 11.91 increasing 0.00 0.03 Increasing
2014.xlsx 48 0 4.03 0.84 16.54 10.67 17.82 11.91 increasing 0.00 0.03 Increasing
2014.xlsx 49 0 8.66 4.89 16.54 10.67 17.82 11.91 increasing 0.00 0.03 Increasing
2014.xlsx 50 0 13.66 10.01 16.54 10.67 17.82 11.91 increasing 0.00 0.03 Increasing
2014.xlsx 51 0 15.88 13.73 16.54 10.67 17.82 11.91 increasing 0.00 0.03 Increasing
2014.xlsx 52 0 5.04 6.63 16.54 10.67 17.82 11.91 increasing 0.00 0.03 Increasing
2014.xlsx 53 0 12.19 11.77 16.54 10.67 17.82 11.91 increasing 0.00 0.03 Increasing
2014.xlsx 54 0 31.09 29.13 16.54 10.67 17.82 11.91 increasing 0.00 0.03 Increasing
2014.xlsx 55 0 25.11 27.60 16.54 10.67 17.82 11.91 increasing 0.00 0.03 Increasing
2014.xlsx 56 0 11.27 16.31 16.54 10.67 17.82 11.91 increasing 0.00 0.03 Increasing
2014.xlsx 57 0 2.46 7.35 16.54 10.67 17.82 11.91 increasing 0.00 0.03 Increasing
2014.xlsx 58 0 1.80 3.66 16.54 10.67 17.82 11.91 increasing 0.00 0.03 Increasing
2014.xlsx 59 0 1.27 0.88 16.54 10.67 17.82 11.91 increasing 0.00 0.03 Increasing
2014.xlsx 60 0 0.62 -1.11 16.54 10.67 17.82 11.91 increasing 0.00 0.03 Increasing
2014.xlsx 61 0 0.03 -2.17 16.54 10.67 17.82 11.91 increasing 0.00 0.03 Increasing
2014.xlsx 62 0 1.51 -1.21 16.54 10.67 17.82 11.91 increasing 0.00 0.03 Increasing
2014.xlsx 63 0 1.99 0.30 16.54 10.67 17.82 11.91 increasing 0.00 0.03 Increasing
2014.xlsx 64 0 3.51 1.95 16.54 10.67 17.82 11.91 increasing 0.00 0.03 Increasing
2014.xlsx 65 0 9.18 6.22 16.54 10.67 17.82 11.91 increasing 0.00 0.03 Increasing
2014.xlsx 66 0 17.68 14.87 16.54 10.67 17.82 11.91 increasing 0.00 0.03 Increasing
2014.xlsx 67 0 9.51 12.25 16.54 10.67 17.82 11.91 increasing 0.00 0.03 Increasing
2015.xlsx 1 0 5.17 8.69 40.11 19.66 40.38 20.62 increasing 0.00 0.05 Increasing
2015.xlsx 2 0 5.19 8.16 40.11 19.66 40.38 20.62 increasing 0.00 0.05 Increasing
2015.xlsx 3 0 4.03 7.45 40.11 19.66 40.38 20.62 increasing 0.00 0.05 Increasing
2015.xlsx 4 0 3.24 6.96 40.11 19.66 40.38 20.62 increasing 0.00 0.05 Increasing
2015.xlsx 5 0 5.15 7.40 40.11 19.66 40.38 20.62 increasing 0.00 0.05 Increasing
2015.xlsx 6 0 4.59 7.28 40.11 19.66 40.38 20.62 increasing 0.00 0.05 Increasing
2015.xlsx 7 0 11.74 13.38 40.11 19.66 40.38 20.62 increasing 0.00 0.05 Increasing
2015.xlsx 8 0 9.17 13.35 40.11 19.66 40.38 20.62 increasing 0.00 0.05 Increasing
2015.xlsx 9 0 1.97 9.18 40.11 19.66 40.38 20.62 increasing 0.00 0.05 Increasing
2015.xlsx 10 0 3.25 7.83 40.11 19.66 40.38 20.62 increasing 0.00 0.05 Increasing
2015.xlsx 11 0 8.13 10.84 40.11 19.66 40.38 20.62 increasing 0.00 0.05 Increasing
2015.xlsx 12 0 8.64 12.71 40.11 19.66 40.38 20.62 increasing 0.00 0.05 Increasing
2015.xlsx 13 0 4.93 10.27 40.11 19.66 40.38 20.62 increasing 0.00 0.05 Increasing
2015.xlsx 14 0 35.52 36.36 40.11 19.66 40.38 20.62 increasing 0.00 0.05 Increasing
2015.xlsx 15 0 20.29 28.76 40.11 19.66 40.38 20.62 increasing 0.00 0.05 Increasing
2015.xlsx 16 0 60.18 61.04 40.11 19.66 40.38 20.62 increasing 0.00 0.05 Increasing
2015.xlsx 17 0 87.70 89.53 40.11 19.66 40.38 20.62 increasing 0.00 0.05 Increasing
2015.xlsx 18 0 24.28 46.16 40.11 19.66 40.38 20.62 increasing 0.00 0.05 Increasing
2015.xlsx 19 0 6.81 20.92 40.11 19.66 40.38 20.62 increasing 0.00 0.05 Increasing
2015.xlsx 20 0 2.83 8.91 40.11 19.66 40.38 20.62 increasing 0.00 0.05 Increasing
2015.xlsx 21 0 15.29 14.41 40.11 19.66 40.38 20.62 increasing 0.00 0.05 Increasing
2015.xlsx 22 0 35.04 32.15 40.11 19.66 40.38 20.62 increasing 0.00 0.05 Increasing
2015.xlsx 23 0 26.33 29.47 40.11 19.66 40.38 20.62 increasing 0.00 0.05 Increasing
2015.xlsx 24 0 9.42 16.62 40.11 19.66 40.38 20.62 increasing 0.00 0.05 Increasing
2015.xlsx 25 0 4.92 9.78 40.11 19.66 40.38 20.62 increasing 0.00 0.05 Increasing
2015.xlsx 26 0 3.74 7.20 40.11 19.66 40.38 20.62 increasing 0.00 0.05 Increasing
2015.xlsx 27 0 4.20 7.17 40.11 19.66 40.38 20.62 increasing 0.00 0.05 Increasing
2015.xlsx 28 0 8.60 11.81 40.11 19.66 40.38 20.62 increasing 0.00 0.05 Increasing
2015.xlsx 29 0 14.33 17.44 40.11 19.66 40.38 20.62 increasing 0.00 0.05 Increasing
2015.xlsx 30 0 27.23 31.06 40.11 19.66 40.38 20.62 increasing 0.00 0.05 Increasing
2015.xlsx 31 0 10.75 19.94 40.11 19.66 40.38 20.62 increasing 0.00 0.05 Increasing
2015.xlsx 32 0 2.04 9.65 40.11 19.66 40.38 20.62 increasing 0.00 0.05 Increasing
2015.xlsx 33 0 3.20 6.70 40.11 19.66 40.38 20.62 increasing 0.00 0.05 Increasing
2015.xlsx 34 0 6.43 8.04 40.11 19.66 40.38 20.62 increasing 0.00 0.05 Increasing
2015.xlsx 35 0 3.56 4.47 40.11 19.66 40.38 20.62 increasing 0.00 0.05 Increasing
2015.xlsx 36 0 6.61 3.98 40.11 19.66 40.38 20.62 increasing 0.00 0.05 Increasing
2015.xlsx 37 0 13.62 8.99 40.11 19.66 40.38 20.62 increasing 0.00 0.05 Increasing
2015.xlsx 38 0 37.15 28.17 40.11 19.66 40.38 20.62 increasing 0.00 0.05 Increasing
2015.xlsx 39 0 27.59 22.08 40.11 19.66 40.38 20.62 increasing 0.00 0.05 Increasing
2015.xlsx 40 0 32.49 24.67 40.11 19.66 40.38 20.62 increasing 0.00 0.05 Increasing
2015.xlsx 41 0 30.80 23.06 40.11 19.66 40.38 20.62 increasing 0.00 0.05 Increasing
2015.xlsx 42 0 22.94 16.56 40.11 19.66 40.38 20.62 increasing 0.00 0.05 Increasing
2015.xlsx 43 0 23.36 16.52 40.11 19.66 40.38 20.62 increasing 0.00 0.05 Increasing
2015.xlsx 44 0 12.94 7.76 40.11 19.66 40.38 20.62 increasing 0.00 0.05 Increasing
2015.xlsx 45 0 13.24 6.01 40.11 19.66 40.38 20.62 increasing 0.00 0.05 Increasing
2015.xlsx 46 0 10.16 5.35 40.11 19.66 40.38 20.62 increasing 0.00 0.05 Increasing
2015.xlsx 47 0 7.79 7.64 40.11 19.66 40.38 20.62 increasing 0.00 0.05 Increasing
2015.xlsx 48 0 4.01 2.88 40.11 19.66 40.38 20.62 increasing 0.00 0.05 Increasing
2015.xlsx 49 0 4.17 2.19 40.11 19.66 40.38 20.62 increasing 0.00 0.05 Increasing
2015.xlsx 50 0 0.33 -0.98 40.11 19.66 40.38 20.62 increasing 0.00 0.05 Increasing
2015.xlsx 51 0 4.95 1.77 40.11 19.66 40.38 20.62 increasing 0.00 0.05 Increasing
2015.xlsx 52 0 5.06 3.97 40.11 19.66 40.38 20.62 increasing 0.00 0.05 Increasing
2015.xlsx 53 0 4.71 4.66 40.11 19.66 40.38 20.62 increasing 0.00 0.05 Increasing
2015.xlsx 54 0 5.29 4.71 40.11 19.66 40.38 20.62 increasing 0.00 0.05 Increasing
2015.xlsx 55 0 5.84 4.15 40.11 19.66 40.38 20.62 increasing 0.00 0.05 Increasing
2015.xlsx 56 0 5.01 3.31 40.11 19.66 40.38 20.62 increasing 0.00 0.05 Increasing
2015.xlsx 57 0 6.01 3.79 40.11 19.66 40.38 20.62 increasing 0.00 0.05 Increasing
2015.xlsx 58 0 3.79 3.48 40.11 19.66 40.38 20.62 increasing 0.00 0.05 Increasing
2015.xlsx 59 0 2.20 1.91 40.11 19.66 40.38 20.62 increasing 0.00 0.05 Increasing
2015.xlsx 60 0 4.71 3.20 40.11 19.66 40.38 20.62 increasing 0.00 0.05 Increasing
2015.xlsx 61 0 7.11 3.43 40.11 19.66 40.38 20.62 increasing 0.00 0.05 Increasing
2015.xlsx 62 0 7.34 2.93 40.11 19.66 40.38 20.62 increasing 0.00 0.05 Increasing
2015.xlsx 63 0 7.31 2.85 40.11 19.66 40.38 20.62 increasing 0.00 0.05 Increasing
2015.xlsx 64 0 6.27 2.09 40.11 19.66 40.38 20.62 increasing 0.00 0.05 Increasing
2015.xlsx 65 0 8.13 2.15 40.11 19.66 40.38 20.62 increasing 0.00 0.05 Increasing
2015.xlsx 66 0 7.55 1.52 40.11 19.66 40.38 20.62 increasing 0.00 0.05 Increasing
2015.xlsx 67 0 6.07 0.62 40.11 19.66 40.38 20.62 increasing 0.00 0.05 Increasing
2016.xlsx 1 0 0.71 2.26 5.64 4.05 7.76 6.16 increasing 0.00 0.01 Increasing
2016.xlsx 2 0 -2.29 0.30 5.64 4.05 7.76 6.16 increasing 0.00 0.01 Increasing
2016.xlsx 3 0 -5.11 -1.34 5.64 4.05 7.76 6.16 increasing 0.00 0.01 Increasing
2016.xlsx 4 0 -4.39 -1.18 5.64 4.05 7.76 6.16 increasing 0.00 0.01 Increasing
2016.xlsx 5 0 -1.35 -0.04 5.64 4.05 7.76 6.16 increasing 0.00 0.01 Increasing
2016.xlsx 6 0 2.26 2.27 5.64 4.05 7.76 6.16 increasing 0.00 0.01 Increasing
2016.xlsx 7 0 14.53 13.51 5.64 4.05 7.76 6.16 increasing 0.00 0.01 Increasing
2016.xlsx 8 0 15.21 15.67 5.64 4.05 7.76 6.16 increasing 0.00 0.01 Increasing
2016.xlsx 9 0 9.65 14.08 5.64 4.05 7.76 6.16 increasing 0.00 0.01 Increasing
2016.xlsx 10 0 10.71 15.32 5.64 4.05 7.76 6.16 increasing 0.00 0.01 Increasing
2016.xlsx 11 0 10.27 15.51 5.64 4.05 7.76 6.16 increasing 0.00 0.01 Increasing
2016.xlsx 12 0 1.96 8.64 5.64 4.05 7.76 6.16 increasing 0.00 0.01 Increasing
2016.xlsx 13 0 1.61 6.15 5.64 4.05 7.76 6.16 increasing 0.00 0.01 Increasing
2016.xlsx 14 0 0.15 4.35 5.64 4.05 7.76 6.16 increasing 0.00 0.01 Increasing
2016.xlsx 15 0 2.10 5.38 5.64 4.05 7.76 6.16 increasing 0.00 0.01 Increasing
2016.xlsx 16 0 3.19 6.19 5.64 4.05 7.76 6.16 increasing 0.00 0.01 Increasing
2016.xlsx 17 0 2.55 6.41 5.64 4.05 7.76 6.16 increasing 0.00 0.01 Increasing
2016.xlsx 18 0 1.34 5.77 5.64 4.05 7.76 6.16 increasing 0.00 0.01 Increasing
2016.xlsx 19 0 0.74 5.87 5.64 4.05 7.76 6.16 increasing 0.00 0.01 Increasing
2016.xlsx 20 0 3.99 8.09 5.64 4.05 7.76 6.16 increasing 0.00 0.01 Increasing
2016.xlsx 21 0 7.78 11.42 5.64 4.05 7.76 6.16 increasing 0.00 0.01 Increasing
2016.xlsx 22 0 13.35 16.72 5.64 4.05 7.76 6.16 increasing 0.00 0.01 Increasing
2016.xlsx 23 0 8.77 14.97 5.64 4.05 7.76 6.16 increasing 0.00 0.01 Increasing
2016.xlsx 24 0 8.26 14.32 5.64 4.05 7.76 6.16 increasing 0.00 0.01 Increasing
2016.xlsx 25 0 9.32 14.60 5.64 4.05 7.76 6.16 increasing 0.00 0.01 Increasing
2016.xlsx 26 0 6.40 14.24 5.64 4.05 7.76 6.16 increasing 0.00 0.01 Increasing
2016.xlsx 27 0 4.94 13.26 5.64 4.05 7.76 6.16 increasing 0.00 0.01 Increasing
2016.xlsx 28 0 4.39 11.37 5.64 4.05 7.76 6.16 increasing 0.00 0.01 Increasing
2016.xlsx 29 0 3.80 9.06 5.64 4.05 7.76 6.16 increasing 0.00 0.01 Increasing
2016.xlsx 30 0 2.12 6.36 5.64 4.05 7.76 6.16 increasing 0.00 0.01 Increasing
2016.xlsx 31 0 3.04 6.10 5.64 4.05 7.76 6.16 increasing 0.00 0.01 Increasing
2016.xlsx 32 0 1.33 4.97 5.64 4.05 7.76 6.16 increasing 0.00 0.01 Increasing
2016.xlsx 33 0 0.74 4.64 5.64 4.05 7.76 6.16 increasing 0.00 0.01 Increasing
2016.xlsx 34 0 2.36 5.48 5.64 4.05 7.76 6.16 increasing 0.00 0.01 Increasing
2016.xlsx 35 0 3.23 5.88 5.64 4.05 7.76 6.16 increasing 0.00 0.01 Increasing
2016.xlsx 36 0 2.04 5.43 5.64 4.05 7.76 6.16 increasing 0.00 0.01 Increasing
2016.xlsx 37 0 3.52 5.64 5.64 4.05 7.76 6.16 increasing 0.00 0.01 Increasing
2016.xlsx 38 0 3.90 5.80 5.64 4.05 7.76 6.16 increasing 0.00 0.01 Increasing
2016.xlsx 39 0 15.52 15.29 5.64 4.05 7.76 6.16 increasing 0.00 0.01 Increasing
2016.xlsx 40 0 14.68 17.52 5.64 4.05 7.76 6.16 increasing 0.00 0.01 Increasing
2016.xlsx 41 0 5.67 11.33 5.64 4.05 7.76 6.16 increasing 0.00 0.01 Increasing
2016.xlsx 42 0 3.94 8.96 5.64 4.05 7.76 6.16 increasing 0.00 0.01 Increasing
2016.xlsx 43 0 4.58 9.96 5.64 4.05 7.76 6.16 increasing 0.00 0.01 Increasing
2016.xlsx 44 0 1.61 7.77 5.64 4.05 7.76 6.16 increasing 0.00 0.01 Increasing
2016.xlsx 45 0 6.02 9.39 5.64 4.05 7.76 6.16 increasing 0.00 0.01 Increasing
2016.xlsx 46 0 5.79 7.80 5.64 4.05 7.76 6.16 increasing 0.00 0.01 Increasing
2016.xlsx 47 0 1.03 3.84 5.64 4.05 7.76 6.16 increasing 0.00 0.01 Increasing
2016.xlsx 48 0 -0.60 1.69 5.64 4.05 7.76 6.16 increasing 0.00 0.01 Increasing
2016.xlsx 49 0 -3.16 -0.80 5.64 4.05 7.76 6.16 increasing 0.00 0.01 Increasing
2016.xlsx 50 0 -0.18 -1.04 5.64 4.05 7.76 6.16 increasing 0.00 0.01 Increasing
2016.xlsx 51 0 -0.69 -1.79 5.64 4.05 7.76 6.16 increasing 0.00 0.01 Increasing
2016.xlsx 52 0 1.31 -0.92 5.64 4.05 7.76 6.16 increasing 0.00 0.01 Increasing
2016.xlsx 53 0 2.17 0.55 5.64 4.05 7.76 6.16 increasing 0.00 0.01 Increasing
2016.xlsx 54 0 1.11 1.00 5.64 4.05 7.76 6.16 increasing 0.00 0.01 Increasing
2016.xlsx 55 0 2.30 3.07 5.64 4.05 7.76 6.16 increasing 0.00 0.01 Increasing
2016.xlsx 56 0 2.20 3.65 5.64 4.05 7.76 6.16 increasing 0.00 0.01 Increasing
2016.xlsx 57 0 1.69 3.60 5.64 4.05 7.76 6.16 increasing 0.00 0.01 Increasing
2016.xlsx 58 0 6.28 6.10 5.64 4.05 7.76 6.16 increasing 0.00 0.01 Increasing
2016.xlsx 59 0 6.52 6.30 5.64 4.05 7.76 6.16 increasing 0.00 0.01 Increasing
2016.xlsx 60 0 4.93 4.68 5.64 4.05 7.76 6.16 increasing 0.00 0.01 Increasing
2016.xlsx 61 0 0.32 2.34 5.64 4.05 7.76 6.16 increasing 0.00 0.01 Increasing
2016.xlsx 62 0 1.46 2.59 5.64 4.05 7.76 6.16 increasing 0.00 0.01 Increasing
2016.xlsx 63 0 1.79 2.86 5.64 4.05 7.76 6.16 increasing 0.00 0.01 Increasing
2016.xlsx 64 0 4.03 4.06 5.64 4.05 7.76 6.16 increasing 0.00 0.01 Increasing
2016.xlsx 65 0 8.32 7.21 5.64 4.05 7.76 6.16 increasing 0.00 0.01 Increasing
2016.xlsx 66 0 11.05 9.91 5.64 4.05 7.76 6.16 increasing 0.00 0.01 Increasing
2016.xlsx 67 0 6.62 6.86 5.64 4.05 7.76 6.16 increasing 0.00 0.01 Increasing
2016.xlsx 68 0 1.65 3.63 5.64 4.05 7.76 6.16 increasing 0.00 0.01 Increasing


#8 Inferences and Agri Action oriented Decisions

 Below is a complete, clean, single-file Streamlit app that: Loads a model output Excel (or multiple files) which contains model output...